aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php50
1 files changed, 26 insertions, 24 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index c4afb39ff0..8bf42aa36e 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -24,9 +24,9 @@ if (!defined('IN_PHPBB'))
*/
function adm_page_header($page_title)
{
- global $config, $db, $user, $template;
+ global $config, $user, $template;
global $phpbb_root_path, $phpbb_admin_path, $phpEx, $SID, $_SID;
- global $phpbb_dispatcher;
+ global $phpbb_dispatcher, $phpbb_container;
if (defined('HEADER_INC'))
{
@@ -88,6 +88,7 @@ function adm_page_header($page_title)
'T_ICONS_PATH' => "{$phpbb_root_path}{$config['icons_path']}/",
'T_RANKS_PATH' => "{$phpbb_root_path}{$config['ranks_path']}/",
'T_UPLOAD_PATH' => "{$phpbb_root_path}{$config['upload_path']}/",
+ 'T_FONT_AWESOME_LINK' => !empty($config['allow_cdn']) && !empty($config['load_font_awesome_url']) ? $config['load_font_awesome_url'] : "{$phpbb_root_path}assets/css/font-awesome.min.css?assets_version=" . $config['assets_version'],
'T_ASSETS_VERSION' => $config['assets_version'],
@@ -107,6 +108,8 @@ function adm_page_header($page_title)
'S_CONTENT_ENCODING' => 'UTF-8',
'S_CONTENT_FLOW_BEGIN' => ($user->lang['DIRECTION'] == 'ltr') ? 'left' : 'right',
'S_CONTENT_FLOW_END' => ($user->lang['DIRECTION'] == 'ltr') ? 'right' : 'left',
+
+ 'CONTAINER_EXCEPTION' => $phpbb_container->hasParameter('container_exception') ? $phpbb_container->getParameter('container_exception') : false,
));
// An array of http headers that phpbb will set. The following event may override these.
@@ -142,8 +145,8 @@ function adm_page_header($page_title)
*/
function adm_page_footer($copyright_html = true)
{
- global $db, $config, $template, $user, $auth, $cache;
- global $starttime, $phpbb_root_path, $phpbb_admin_path, $phpEx;
+ global $db, $config, $template, $user, $auth;
+ global $phpbb_root_path;
global $request, $phpbb_dispatcher;
// A listener can set this variable to `true` when it overrides this function
@@ -232,7 +235,7 @@ function h_radio($name, $input_ary, $input_default = false, $id = false, $key =
/**
* Build configuration template for acp configuration pages
*/
-function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
+function build_cfg_template($tpl_type, $key, &$new_ary, $config_key, $vars)
{
global $user, $module, $phpbb_dispatcher;
@@ -240,18 +243,18 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$name = 'config[' . $config_key . ']';
// Make sure there is no notice printed out for non-existent config options (we simply set them)
- if (!isset($new[$config_key]))
+ if (!isset($new_ary[$config_key]))
{
- $new[$config_key] = '';
+ $new_ary[$config_key] = '';
}
switch ($tpl_type[0])
{
case 'password':
- if ($new[$config_key] !== '')
+ if ($new_ary[$config_key] !== '')
{
// replace passwords with asterixes
- $new[$config_key] = '********';
+ $new_ary[$config_key] = '********';
}
case 'text':
case 'url':
@@ -263,7 +266,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$size = (int) $tpl_type[1];
$maxlength = (int) $tpl_type[2];
- $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $new[$config_key] . '"' . (($tpl_type[0] === 'password') ? ' autocomplete="off"' : '') . ' />';
+ $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (($size) ? ' size="' . $size . '"' : '') . ' maxlength="' . (($maxlength) ? $maxlength : 255) . '" name="' . $name . '" value="' . $new_ary[$config_key] . '"' . (($tpl_type[0] === 'password') ? ' autocomplete="off"' : '') . ' />';
break;
case 'color':
@@ -271,7 +274,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
case 'datetime-local':
case 'month':
case 'week':
- $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '" name="' . $name . '" value="' . $new[$config_key] . '" />';
+ $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '" name="' . $name . '" value="' . $new_ary[$config_key] . '" />';
break;
case 'date':
@@ -285,7 +288,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$max = (int) $tpl_type[2];
}
- $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (( $min != '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="' . $name . '" value="' . $new[$config_key] . '" />';
+ $tpl = '<input id="' . $key . '" type="' . $tpl_type[0] . '"' . (( $min != '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="' . $name . '" value="' . $new_ary[$config_key] . '" />';
break;
case 'dimension':
@@ -298,19 +301,19 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$max = (int) $tpl_type[2];
}
- $tpl = '<input id="' . $key . '" type="number"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_width]" value="' . $new[$config_key . '_width'] . '" /> x <input type="number"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_height]" value="' . $new[$config_key . '_height'] . '" />';
+ $tpl = '<input id="' . $key . '" type="number"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_width]" value="' . $new_ary[$config_key . '_width'] . '" /> x <input type="number"' . (( $min !== '' ) ? ' min="' . $min . '"' : '') . (( $max != '' ) ? ' max="' . $max . '"' : '') . ' name="config[' . $config_key . '_height]" value="' . $new_ary[$config_key . '_height'] . '" />';
break;
case 'textarea':
$rows = (int) $tpl_type[1];
$cols = (int) $tpl_type[2];
- $tpl = '<textarea id="' . $key . '" name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '">' . $new[$config_key] . '</textarea>';
+ $tpl = '<textarea id="' . $key . '" name="' . $name . '" rows="' . $rows . '" cols="' . $cols . '">' . $new_ary[$config_key] . '</textarea>';
break;
case 'radio':
- $key_yes = ($new[$config_key]) ? ' checked="checked"' : '';
- $key_no = (!$new[$config_key]) ? ' checked="checked"' : '';
+ $key_yes = ($new_ary[$config_key]) ? ' checked="checked"' : '';
+ $key_no = (!$new_ary[$config_key]) ? ' checked="checked"' : '';
$tpl_type_cond = explode('_', $tpl_type[1]);
$type_no = ($tpl_type_cond[0] == 'disabled' || $tpl_type_cond[0] == 'enabled') ? false : true;
@@ -324,8 +327,6 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
case 'select':
case 'custom':
- $return = '';
-
if (isset($vars['method']))
{
$call = array($module->module, $vars['method']);
@@ -347,7 +348,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
switch ($value)
{
case '{CONFIG_VALUE}':
- $value = $new[$config_key];
+ $value = $new_ary[$config_key];
break;
case '{KEY}':
@@ -360,7 +361,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
}
else
{
- $args = array($new[$config_key], $key);
+ $args = array($new_ary[$config_key], $key);
}
$return = call_user_func_array($call, $args);
@@ -388,6 +389,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$tpl .= $vars['append'];
}
+ $new = $new_ary;
/**
* Overwrite the html code we display for the config value
*
@@ -405,6 +407,8 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
*/
$vars = array('tpl_type', 'key', 'new', 'name', 'vars', 'tpl');
extract($phpbb_dispatcher->trigger_event('core.build_config_template', compact($vars)));
+ $new_ary = $new;
+ unset($new);
return $tpl;
}
@@ -415,7 +419,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
*/
function validate_config_vars($config_vars, &$cfg_array, &$error)
{
- global $phpbb_root_path, $user, $phpbb_dispatcher;
+ global $phpbb_root_path, $user, $phpbb_dispatcher, $phpbb_filesystem;
$type = 0;
$min = 1;
@@ -596,7 +600,7 @@ function validate_config_vars($config_vars, &$cfg_array, &$error)
// Check if the path is writable
if ($config_definition['validate'] == 'wpath' || $config_definition['validate'] == 'rwpath' || $config_definition['validate'] === 'absolute_path_writable')
{
- if (file_exists($path) && !phpbb_is_writable($path))
+ if (file_exists($path) && !$phpbb_filesystem->is_writable($path))
{
$error[] = sprintf($user->lang['DIRECTORY_NOT_WRITABLE'], $cfg_array[$config_name]);
}
@@ -652,8 +656,6 @@ function validate_range($value_ary, &$error)
foreach ($value_ary as $value)
{
$column = explode(':', $value['column_type']);
- $max = $min = 0;
- $type = 0;
if (!isset($column_types[$column[0]]))
{
continue;
yle='width: 52.8%;'/> -rw-r--r--perl-install/share/po/nl.po6464
-rw-r--r--perl-install/share/po/no.po740
-rw-r--r--perl-install/share/po/pl.po6527
-rw-r--r--perl-install/share/po/pt.po5912
-rw-r--r--perl-install/share/po/ro.po6036
-rw-r--r--perl-install/share/po/ru.po6533
-rw-r--r--perl-install/share/po/sk.po5959
-rw-r--r--perl-install/share/po/sl.po6149
-rw-r--r--perl-install/share/po/sp.po687
-rw-r--r--perl-install/share/po/sr.po6271
-rw-r--r--perl-install/share/po/th.po5829
-rw-r--r--perl-install/share/po/tr.po6035
-rw-r--r--perl-install/share/po/uk.po6206
-rw-r--r--perl-install/share/po/wa.po6250
37 files changed, 146057 insertions, 70214 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index bb832b366..c2e65c829 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,61 +1,112 @@
# KTranslator Generated File
-# KTranslator Generated File
-# SOME DESCRIPTIVE TITLE.
-# Copyright (c) 1999 MandrakeSoft
-# FIRST AUTHOR <EMAIL@ADDRESS>, 1999.
+# Copyright (c) 1999-2000 MandrakeSoft
+# Schalk. W. CronjИ <schalkc@ntaba.co.za>, 2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-04 18:38+0200\n"
-"PO-Revision-Date: 2000-05-17 16:26+0100\n"
-"Last-Translator: Schalk. W. CronjИ <schalkc@ntaba.co.za>\n"
-"Language-Team: Afrikaans <mandrake@af.org.za>\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: Tue Sep 26 2000 08:03:14+0200\n"
+"Last-Translator: Schalk W. CronjИ <schalkc@ntaba.co.za>\n"
+"Language-Team: Afrikaans <lia@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KTranslator v 0.4.0\n"
+"Content-Transfer-Encoding:8bit\n"
+"X-Generator: KTranslator v 0.6.0\n"
-#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:236
-msgid "Generic"
-msgstr "Generies"
-
-#
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Videokaart"
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Selekteer 'n videokaart"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Kies 'n X-bediener"
-#
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfigurator.pm_.c:198
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
+"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
+"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:225
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Selekteer opsies vir bediener"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:239
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -77,41 +128,40 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:285
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../Xconfigurator.pm_.c:288
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Grafikakaart is nog nie konfigureer nie"
-#: ../../Xconfigurator.pm_.c:291
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Resolusie is nog nie gekies nie"
-#: ../../Xconfigurator.pm_.c:304
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfigurator.pm_.c:308
-msgid "Warning: testing is dangerous on this graphic card"
+#
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#
-#: ../../Xconfigurator.pm_.c:311
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Toets konfigurasie"
-#
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -119,189 +169,172 @@ msgstr ""
"\n"
"probeer van die parameters verander"
-#
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Daar was 'n fout:"
-#: ../../Xconfigurator.pm_.c:373
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "uitgang binne %ds"
-#
-#: ../../Xconfigurator.pm_.c:377
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Is dit korrek?"
-#
-#: ../../Xconfigurator.pm_.c:385
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Hier is fout, probeer van die parameters verander"
-#: ../../Xconfigurator.pm_.c:393 ../../Xconfigurator.pm_.c:574
-msgid "Automatic resolutions"
-msgstr "Outomatiese resolusies"
-
-#: ../../Xconfigurator.pm_.c:394
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-"Die skerm sal 'n paar maal flits...\n"
-"U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#: ../../Xconfigurator.pm_.c:452 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Resolusie"
-#
-#: ../../Xconfigurator.pm_.c:487
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:489
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 bediener: %s"
-#: ../../Xconfigurator.pm_.c:499
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Vertoon almal"
-#
-#: ../../Xconfigurator.pm_.c:523
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:575
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-"Soms kan die rekenaar ophang.\n"
-"Wil u probeer?"
-
-#: ../../Xconfigurator.pm_.c:580
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Geen geldige modes was gevind nie\n"
-"Probeer 'n ander videokaart of monitor"
-
-#: ../../Xconfigurator.pm_.c:920
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Kleurdiepte: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Resolusie: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:943
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86-drywer: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "X-Window konfigurasie word opgestel"
-#: ../../Xconfigurator.pm_.c:957
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Verander monitor"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Verander videokaart"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Verander bedienerinstellings"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Verander resolusie"
-#: ../../Xconfigurator.pm_.c:961
-msgid "Automatical resolutions search"
-msgstr "Outomatiese resolusie soektog"
-
-#: ../../Xconfigurator.pm_.c:965
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Vertoon inligting"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Toets weer"
-#: ../../Xconfigurator.pm_.c:967 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Verlaat"
-#: ../../Xconfigurator.pm_.c:971 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Wat wil u doen?"
-#: ../../Xconfigurator.pm_.c:978
-msgid "Forget the changes?"
-msgstr "Vergeet van die veranderinge?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:996
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../Xconfigurator.pm_.c:1012
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../Xconfigurator.pm_.c:1015
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -309,235 +342,223 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Outointeken"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
+"Kliek op kanselleer indien u nie hierdie funksionaliteit verlang nie."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Kies die verstek gebruiker:"
+
+#
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Kies die vensterbestuurder om te loop:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 kleure (8 bis)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32-duisend kleure (15 bis)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65-duisend kleure (16 bis)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16-miljoen kleure (24 bis)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16MB of meer"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 teen 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "krul"
-
-#
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "Verstek"
-
-#
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "das"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunette"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "meisie"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondine"
-
-#
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "outowonder"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub installasie"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO installasie"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub installasie"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Niks"
-#
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Watter herlaaistelsel(s) wil u gebruik?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Herlaaiprogram installasie"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS nie)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Wagperiode voro verstekstelsel gelaai word"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Wagperiode voro verstekstelsel gelaai word"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "beperk"
-#
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -545,169 +566,352 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Watter tipe inskrywing wil u byvoeg?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Ander bedryfstelsel (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Watter tipe inskrywing wil u byvoeg?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "OK"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "LeК etiket word nie toegelaat nie"
-#
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Het %s %s koppelvlakke gevind"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Beskik u oor nog?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Het u enige %s koppelvlakke?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nee"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Sien hardeware inligting"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Drywer vir %s kaart %s in installasieproses"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(module %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Watter %s drywer meot ek probeer?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
+"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
+"rekenaar self daarvoor aftas. IN uitsonderlike gevalle mag die rekenaar\n"
+"ophang, maar dit sal nie skade veroorsaak nie."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Aftas"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Spesifieer opsies"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "U kan die opsies vir module %s hier intik."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ukan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Module opsies:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Laai van module %s het gefaal.\n"
+"Wil u ander parameters probeer?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Welkom by %s die bedryfstelselkeuseprogram!\n"
+"\n"
+"Om die moontlikehede te vertoon, druk <TAB>.\n"
+"\n"
+"Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
+"%ds en die verstek bedryfstelsel sal laai.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
+"word."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nie genoeg spasie in /boot nie"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Werkskerm"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Beginkieskaart"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minute"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minuut"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekondes"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Uitwis"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Hegpunt"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Skryf /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Herstel vanaf lOer"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Stoor in lOer"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Assistent"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Herstel vanaf floppie"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formatteer almal"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Alle primOre partisies is gebruik"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -715,60 +919,63 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Herlaai"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "teruglus"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Leeg"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Ander"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Ruilarea"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Leeg"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Ander"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detail"
-#
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -780,17 +987,17 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van diИ partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lees noukeurig!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -799,77 +1006,77 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Fout"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Grootte: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Teruglus lЙer(s): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -877,80 +1084,79 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lЙernaam: %s"
-#
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Grootte: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktief"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -963,7 +1169,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -976,26 +1182,26 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"U het 'n sagteware RAID-partisie as wortel (/).\n"
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
-"Onthou om 'n /boot by te voeg indien u LILO of grub gebruik."
+"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1003,37 +1209,43 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Verander partisietipe"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Watter partisietipe verlang u?"
+#
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../diskdrake.pm_.c:483
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslЙer %s heg?"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1041,39 +1253,38 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake.pm_.c:508
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake.pm_.c:510
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "TerugluslЙer %s word geformateer"
-#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Na formatering van alle partisies"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "alle data om hierdie partisies sal verloor word"
-#: ../../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Skuif"
-#
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
@@ -1081,7 +1292,6 @@ msgstr "Na watter skyf wil u skuif?"
msgid "Sector"
msgstr "Sektor"
-#
#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
@@ -1103,81 +1313,83 @@ msgstr "Partisietabel van skyf %s gaan opdateer word!"
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#
-#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "FAT lЙerstelselgrense word bereken"
-#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Grootteverandering"
-#
-#: ../../diskdrake.pm_.c:585
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Watter partisie se grootte wil u verander?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake.pm_.c:597
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:652
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake.pm_.c:682
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake.pm_.c:739
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake.pm_.c:749
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Teruglus lЙernaam:"
-#: ../../diskdrake.pm_.c:775
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "LЙer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#
-#: ../../diskdrake.pm_.c:776
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "LЙer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake.pm_.c:807
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1185,11 +1397,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake.pm_.c:815
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1197,77 +1409,77 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake.pm_.c:830
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake.pm_.c:841
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "toestel"
-#: ../../diskdrake.pm_.c:842
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "vlak"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake.pm_.c:855
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nuut"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "NFS heg het gefaal"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "SirkulЙre heg %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Hierdie lЙergids moet altyd in die wortellЙerstelsel bly"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr "U benodig 'n ware lЙerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1275,75 +1487,81 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lOerstelsels op "
"teskep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Kies voorkeurtaal vir installasie en stelselgebruik"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Kies die sleutelborduitleg uit die bostaande lys"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Kies \"Installeer\" indien daar geen vorige weergawe van Linux\n"
-"op is nie, of indien u 'n multidistribusie wil realiseer.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Kies \"Opgradeer\" indien u 'n vorige weergawe van Mandrake\n"
-"Linux wil opgradeer:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"of 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Selekteer:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Outomaties (aanbevole): Indien u nooit Llinux vantevore installeerhet "
-"nie,kies hierdie een. LW:\n"
-" netwerk sal nie opgestel word. Gebruik \"LinuxConf\" na installasie om "
-"die netwerk op te stel.\n"
"\n"
-" - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die primЙre\n"
-" gebruik van u rekenaar kies. Sien onder vir details.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-"installasie wil\n"
-" doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-" MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE.\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1351,12 +1569,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Selekteer:\n"
"\n"
@@ -1366,33 +1585,31 @@ msgstr ""
" - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
"installasie wil\n"
" doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-" MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE.\n"
+" MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet\" \n"
"of \"Kundige\" sou kies) is die volgende:\n"
@@ -1409,160 +1626,366 @@ msgstr ""
" SMB, drukkerbediening, NIS magtiging ens.\n"
" Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
+msgstr ""
+"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
+"Indien DrakX 'n SCSI-kaart bespeur en weet watter drywer omte gebruik sal "
+"dit outomaties installeer word.\n"
+"\n"
+"Indien u nie oor 'n SCSI-kaart, beskik nie of oor 'n ISA SCSI-kaart of 'n "
+"PCI SCSI-kaart beskik wat DrakX nie kan herken nie, sal u gevra word of daar "
+"enige SCSI-kaarte in diestelsel is. Indien daar geen is nie kliek op 'Nee', "
+"andersins op 'Ja'. U sal dan uit'n drywerlys kan kies.\n"
+"\n"
+"\n"
+"Indien u self 'n drywer moes spesifiseer, sal DrakX u ook vra vir enige "
+"spesifiekeopsies.\n"
+"U kan egter DrakX toelaat om self die hardeware te ondervra. DIt werk "
+"gewoonlik die beste.\n"
+"\n"
+"Lees die installasie inligting hoe om hierdie tipe inligting m.b.v. die "
+"Windows-bedryfstelsel te bekom.\n"
+"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
-"SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-"bekend is, sal dit outomaties bygevoeg word.\n"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-"geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-"Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-"\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
"\n"
-"Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-"dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
"\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
-"Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-"enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-"opsies wat u die drywer moet verskaf."
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
-#
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:218
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-"U kan nou kies watter partisie(s) gebruik kan word om Linux-Mandrake\n"
-"op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-"installasie,\n"
-"of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-"geskep\n"
-"word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-"in\n"
-"aparte bruikbare areas\n"
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
"\n"
-"Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om outomaties\n"
-"partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-"deur\n"
-"op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-"\"sda\"\n"
-"vir die eerste SCSI skyf ens.\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-"van die lЙergidsstelsel, en /boot, wat die nodige lЙers bevat om die\n"
-"bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-"baie\n"
-"intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-"diИ\n"
-"proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-"voortgaan.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-"diepartisies met\n"
-"Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c om 'n partisie te skep (wanneer 'n leК partisie gekies is)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d om 'n partisie uit te vee\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m om 'n partisie te heg\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Enige partisies wat nuut geskep is, moet eers formateer word voor gebruik.\n"
-"(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om ook\n"
-"bestaande partisies te herformateer en die data daarop te vernietig.\n"
-"NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-"veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
"\n"
@@ -1574,132 +1997,153 @@ msgstr ""
"pakketkeuses\"\n"
"kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
"Indien u geen het nie, kliek Kanselleer.\n"
"Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-"sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-"nog langer neem voordat die opgradering begin."
-#
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-"wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-"word.\n"
-"\n"
-"\n"
-"Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-"verlang deur op die kierkaart links te kliek. Andersins kies\n"
-"'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-"muis wat u het.\n"
-"\n"
-"In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-"gee."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"Kies asb. die korrekte poort. ONthou dat COM1 onder MS Windows \n"
-"ttyS0 onder Linux is."
+"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
+"ttyS0 onder GNU/Linux is."
-#
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-"of 'n modem.\n"
-"\n"
-"Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-"te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-"inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-"vertoon word waaruit u dan u kaart moet selekteer.\n"
-"\n"
-"\n"
-"indien u Linux-Mandrake installeer op 'n stelsel wat deel is van 'n\n"
-"bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-"nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-"Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-"adresse kies.\n"
-"\n"
-"\n"
-"Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-"sal opgestel word. DrakX sal u modem probeer bepaal. Indien diИ faal\n"
-"sal u die modem en korrekte seriaalpoort moet selekteer."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"U kan nou die opbelopsie invul. Indien u\n"
+"twyfel kry die korrekte inligting van u ISP."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Sleutel in:\n"
"\n"
@@ -1717,7 +2161,22 @@ msgstr ""
"Indien u\n"
" twyfel, vra die netwerkadministrateur of ISP.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
+"die netwerkadministrateur."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1725,7 +2184,7 @@ msgstr ""
"U kan nou die opbelopsie invul. Indien u\n"
"twyfel kry die korrekte inligting van u ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1734,13 +2193,15 @@ msgstr ""
"vra\n"
"die netwerkadministrateur of ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1752,30 +2213,42 @@ msgstr ""
"\n"
"Let wel: U moet 'n spieКl en pakkette selekteer n.a.l plaaslike wetgewing."
-#
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"U kan u u tydsone kies.\n"
+"U kan nou u tydsone kies.\n"
"\n"
"\n"
-"Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
+"GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
"in u lokale tyd volgends die gekose tydsone."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"U kan nou dienste kies wat by herlaaityd moet afskop.\n"
"Wanneer u die muis oor 'n item beweeg, sal 'n klein ballon opspring\n"
@@ -1784,74 +2257,159 @@ msgstr ""
"Wees versigtig met hierdie stap. Indien u beplan om diИ rekenaar as 'n\n"
"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-#
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-"verlang 'n ander opstelling.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-"\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-"en die gepaslike filter selekteer.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-"\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-"op die ander rekenaar ken.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-"moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook die\n"
-"IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en die\n"
-"drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat u\n"
-"die werkgroep hoef te voorsien nie."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"U kan nou die 'root' wagwoord voorsien vir u Linux-Mandrake stelsel.\n"
"Die wagworod moet twee keer ingevoer word en te verfiКer dat dit\n"
@@ -1866,7 +2424,7 @@ msgstr ""
"lank. MOENIE die wagwoord Йrens neerskryf nie. Moet dit nie te lank of te\n"
"ingwikkeld maak nie, u moet dit met min moeite onthou."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1874,7 +2432,7 @@ msgstr ""
"Om 'n veiliger stelsel te bou, moet u \"Gebruik skadulЙer\" \n"
"en \"Gebruik MD5 wagwoorde\" kies."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1882,8 +2440,7 @@ msgstr ""
"Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
"die netwerkadministrateur."
-#
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1923,35 +2480,29 @@ msgstr ""
"Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en 'root'\n"
"net vir admintratiewe doeleindes gebruik."
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-"herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-"herlaaiskyf\n"
-"gemaak het nie, sal u nie weer in Linux kan inkom nie."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"U moet aandui waar u die informasie om Linux te laai, wil plaas.\n"
+"U moet aandui waar u die informasie om Linux te herlaai, wil plaas.\n"
"\n"
"\n"
-"Behalwe as u werklik weet wat u doen moet u MBR kies."
+"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
+"kies."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1959,10 +2510,10 @@ msgstr ""
"Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
"(primЙre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1972,8 +2523,8 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan Linux of enige "
-"ander\n"
+"LILO (Die LInux LOader) en Grub is herlaaistelsels. Beide kan GNU/Linux of "
+"enige ander\n"
"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
"beryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing maak\n"
"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
@@ -1984,7 +2535,8 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2001,7 +2553,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO en Grub hoof opsies is:\n"
@@ -2023,10 +2577,62 @@ msgstr ""
" * normaal: selekteer normale 80x25 mode.\n"
" * syfer: die ooreenstemmende teksmode."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
+"bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word hierdie\n"
+"bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
+"maak\n"
+"op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
+"\n"
+"\n"
+"U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
+"nodige\n"
+"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
+"betrokke bedryfstelsels te laai."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILO hoofkeuses is:\n"
+" - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? Die "
+"beste is\n"
+"gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
+"\n"
+"\n"
+" - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
+" tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
+" Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na die\n"
+" sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
+"die\n"
+" wagperiode nul is."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2038,7 +2644,8 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-"die Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n videokaart\n"
+"die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
+"videokaart\n"
"en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
"verifiКer of dit korrek is.\n"
"\n"
@@ -2047,7 +2654,7 @@ msgstr ""
"aansЙ. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
"keer soos nodig."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2055,7 +2662,7 @@ msgstr ""
"Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
"die X-vensterstelsel reg op te stel."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2063,42 +2670,47 @@ msgstr ""
"Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", andersins "
"\"Nee\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
"\n"
@@ -2132,9 +2744,9 @@ msgstr ""
"\n"
" - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
"opsie. Dit sal\n"
-" nier noodwendig NumLock onder X aansit nie."
+" nie noodwendig NumLock onder X aansit nie."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2147,193 +2759,134 @@ msgstr ""
"U nuwe Linux-Mandrake stelsel sal outomaties laai. Indien u 'n ander\n"
" bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Kies u taal"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Kies installasieklas"
-#
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Hardeskyfdeteksie."
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Stel muistoestel op"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Kies u sleutelbord"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "ArbitrЙre items"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Stel lЙerstelsels op"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formateer partisies"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Kies pakkette om te installeer"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Installeer stelsel"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Stel netwerk op"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kriptografie"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Stel tydsone op"
-#
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Konfigureer dienste"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Stel drukker op"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Voeg 'n gebruiker by"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Maar 'n herlaaiskyf"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Installeer herlaaistelsel"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Stel X op"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Outoinstalleer floppie"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../install2.pm_.c:337
-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 ""
-"U moet 'n wortelpartisie definieer.\n"
-"Skep 'n partisie of kliek op 'n bestaande een.\n"
-"Kies dan Hegpunt en stel dit dan '/'."
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
-"Ek sal die nodige partisies skoonmak."
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Fout met lees van lЙer $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
-"Gaan aan op u eie risiko!"
+#
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Toets asb. die muis"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Deursoek wortellЙerstelsel"
+#
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Toets asb. die muis"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Inligting"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Hierdie is nie 'n wortellЙerstelsel nie, kies asb. 'n ander een."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Geen basislЙerstelsel gevind nie"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Fout met lees van lЙer $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
-"nie. Gaan op u eie risiko voort."
-
-#: ../../install_steps.pm_.c:174
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duplikaat hegpunt %s"
+"Sekere hardeware op u rekenaar benodig geslote drywers.\n"
+" U kan inligting hieroorvind by %s"
-#: ../../install_steps.pm_.c:321
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
-"Sekere belangrike pakkette het nie korrek geОnstalleer nie.\n"
-"сf die CDROM-aandrywer Сf die CD is foutief.\n"
-"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:388
-#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom by %s"
-
-#: ../../install_steps.pm_.c:740
-msgid "No floppy drive available"
-msgstr "Geen sagteskyaandrywer beskikbaar nie"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Gaan stap '%s' binne\n"
+"U moet 'n wortelpartisie definieer.\n"
+"Skep 'n partisie of kliek op 'n bestaande een.\n"
+"Kies dan Hegpunt en stel dit dan '/'."
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2343,100 +2896,73 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Kies die grootte van die installasie"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Gebruik beskikbare spasie"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Totale grootte: "
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Weergawe: %s\n"
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Gebruik bestaande partisies"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Groote: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Kies die pakkette wat u wil installeer"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "In watter partisie wil u Linux4Win plaas?"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Installasie"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Kies die groottes"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Besig met installasie"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Basispartisiegrootte in MB:"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Wag asb.,"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Tyd oor "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Totale tyd "
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Berei installasie voor"
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "WindowslЙerstelselgrense word bereken"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Installeer pakket %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Gaan steeds voort?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Daar was 'n fout met pakkette:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Kies asb. een van die volgende installasieklasse:"
-
-#
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "U het geen Windowspartisies nie!"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
+"Fout: %s"
-#
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "U het nie genoeg plek vir Lnx4win nie"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2452,37 +2978,158 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Outomatiese grootteverandering het gefaal"
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Watter grootte wil u vir Windows behou?"
-#
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "In watter partisie wil u Linux4Win plaas?"
+#: ../../install_interactive.pm_.c:123
+#, c-format
+msgid "partition %s"
+msgstr "partisie %s"
-#
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Kies die groottes"
+#: ../../install_interactive.pm_.c:129
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "FAT-grootteverandering het gefaal: %s"
-#
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Basispartisiegrootte in MB:"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
+"spasie nie) te gebruik nie"
-#
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Ruilpartisiegrootte in MB: "
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Wis hele skyf"
+
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Verwyder Windows(TM)"
+
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
+
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Kundige modus"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Gebruik diskdrake"
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Gebruik fdisk"
+
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"U het nou partisie %s partisioneer.\n"
+"Wanneer u klaar is, stoor u veranderinge met 'w'."
+
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Ek kan nie meer partisies byvoeg nie"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
+
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partisionering het misluk: %s"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Netwerk op pad op"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Netwerk op pad af"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
+"nie. Gaan op u eie risiko voort."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duplikaat hegpunt %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Sekere belangrike pakkette het nie korrek geОnstalleer nie.\n"
+"сf die CDROM-aandrywer Сf die CD is foutief.\n"
+"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Welkom by %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Gaan stap '%s' binne\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"U stelsel het min hulpbronne beskikbaar. U mag dalk probleme ondervind met "
+"die installering\n"
+"van Linux-Mandrake. In so 'n geval probeer eerder die teksinstallasie. "
+"Daarvoor moet u\n"
+"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
+"instruksielyn intik."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2496,7 +3143,7 @@ msgstr ""
"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
"'n persentasie van 100% sal alles gekose pakkette installeer."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2511,62 +3158,102 @@ msgstr ""
"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Persentasie pakkette om te installeer"
-#
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Installasie"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Outomatiese afhanklikhede"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Weergawe: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Groote: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
+"beskikbaar is nie"
+
+#
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Die volgende pakkette gaan installeer word"
+
+#
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Dei volgende pakkette gaan verwyder word"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geОnstalleer"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2574,46 +3261,89 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"U kan nie hierdie pakket selekteer nie, omdat daar nie meer spasie "
-"beskikbaar is nie"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Dei volgende pakkette gaan installeer/verwyder word"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Wag asb.,"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tyd oor "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Totale tyd "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Kanselleer"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Berei installasie voor"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Installeer pakket %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:596
+#
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Aanvaar "
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2629,190 +3359,388 @@ msgstr ""
"hieroor beskik nie, druk Kanselleer om installasies vanaf diИ CDROM te vermy."
#
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Weier"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Gaan steeds voort?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Daar was 'n fout met pakkette:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "'n Fout het voorgekom"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Sleutelbord"
-#
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Basispartisie"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Alles"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Wat is die basispartisie (/) van u stelsel?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Installasieklas"
-#
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "Is hierdie 'n installasie or opgradering?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "Is hierdie 'n installasie of reddingspoging?"
-#
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Outomaties"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Aangepaste"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-"Is u 'n kundige? U sal sal teogelaat word om kragtige, maar\n"
-"gevaarlike keuses uit te oefen."
+"Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
+"gevaarlike keuses uit te oefen\n"
+"\n"
+"U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
+"Is u reg vir sulke vrae?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normaal"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Werkstasie"
-#
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Ontwikkeling"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Bediener"
-#
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
msgstr "Wat is die gebruik van u stelsel?"
-#
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Muispoort"
-#
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Stel PCMCIA op..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Watter partisie moet u wortelpartisie wees?"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+"Ek sal die nodige partisies skoonmaak, maar alle data sal vernietig word.\n"
+"Die ander opsie is om DrakX te belet om die partisietabel te verander.\n"
+"(fout is %s)\n"
+"\n"
+"Will u al die partisies verwyder?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
+"Gaan aan op u eie risiko!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Basispartisie"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Wat is die basispartisie (/) van u stelsel?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "LЙer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "U stelsel het nie genoeg plek vir 'n installasie of opgradering nie"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Klaar (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimum (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Aanbevole (%dMB)"
+
+#
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Aangepaste"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Kies die grootte van die installasie"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2822,12 +3750,12 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2835,178 +3763,11 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Behou die huidige IP konfigurasie"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Herkonfigureer netwerk nou"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Moenie netwerk opstel nie"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Plaaslike netwerk is opsgestel: Wil u?"
-
-#
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "geen netwerkkaart gevind nie"
-
-#
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modemkonfigurasie"
-
-#
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Wil u 'n opbelkonneksie (modem) vir u stelsel opstel?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigureer netwerktoestel %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
-"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
-"(1.2.3.4) gegee word."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Outomatiese IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP adres:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmasker:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Stel netwerk op"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Tik asb die rekenaarnaam in.\n"
-"Dit moet 'n volle gekwalifiseerde naam wees,\n"
-"bv. ``myne.mywerk.co.za''.\n"
-"U mag ook die netwerkhek byvoeg indien daar een is"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS bediener:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Netwerkhektoestel:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Netwerkhek:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Rekenaarnaam:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Soekj vir 'n modem?"
-
-#
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Op watter seriaalpoort is u modem gekoppel?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Opbelopsies"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Konneksienaam"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefoonnommer"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Aantekenkode"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Magtiging"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Skriptipe"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminaaltipe"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domeinnaam"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Eerste DNS bediener"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Tweede DNS bediener"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3076,90 +3837,94 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieКl waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "SpieКl word gekontak vir die lys van pakkette"
-#
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Wat isu tydsone?"
+msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Is die hardewareklok gestel vir GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Gebruik skadulЙer"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "skadu's"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "gebruik MD5 wagwoorde"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Gebruik NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "geel bladsye"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS-bemagtiging"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3169,64 +3934,88 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Regte naam"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Dop"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikoon"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"'n Spesiale herlaaiskyf voorsien ;n metode waarby u Linux kan laai sonder\n"
+"die gebruik van 'n normale herlaaistelsel. Dit is veral bruikbaar wanneer\n"
+"u nie SILO op u stelsel wil installeer nie, 'n ander bedryfstelsel SILO\n"
+"verwyder of SILO nie met u stelsel werk nie. Hierdie herlaaiskyf kan ook\n"
+"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
+"ernstige stelselfalings te herstel.\n"
+"\n"
+"Indien u 'n herlaaiskyf wil maak,\n"
+"plaas 'n skyf in die aandrywer en druk \"OK\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Mis hierdie stap"
-#
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3247,69 +4036,32 @@ msgstr ""
"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO installasie het gefaal a.g.v. hierdie fout: "
-
-#
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Wil u SILO gebruik?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO hoofopsies"
-
-#
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hier is die huidige inskrywings in SILO.\n"
-"U kan byvoeg or verwyder soos nodig."
-
-#
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partisie"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Hierdie etiket is alreeds in gebruik"
-
-#
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Herlaaistelsel word voorberei"
-#
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
-msgstr "Wil u 'aboot' gebruik?"
+msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3317,129 +4069,120 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Instaanbedinerkonfigurasie"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP instaanbediener"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP instaanbediener"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Instaanbediener moet begin met http://"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Swak"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Laag"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Medium"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Hoog"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanoОes"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Diverse vrae"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(kan data korrupteer)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Gebruik skyfoptimisasie?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Outohegting van verwyderbare media"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Ontsper multiprofiele"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Aansit van NumLock met herlaai"
-#
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr ""
"Superhegting (supermount) kan nie met 'n hoК sekuriteitsvlak gebruik word nie"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX sal konfigurasielЙers maak vir beide XFree 3.3 en XFree 4.0.\n"
-"By verstek sal die 3.3 bediener gebruik word omdat dit meer videokaarte "
-"ondersteun.\n"
-"\n"
-"Wil u XFree 4.0 probeer?"
+"Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE AANTEKEN "
+"nie.\n"
+"OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan "
+"'su'.Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Soek vir PCI-toestelle?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
+"karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Gebruik bestaande konfigurasie vir X11?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leК floppie in aandrywer %s"
-#
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3449,7 +4192,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3469,153 +4212,18 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die OffisiКle Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Stelselafsluiting"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Drywer vir %s kaart %s in installasieproses"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Watter %s drywer meot ek probeer?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"In sekere gevalle sal die %s drywer ekstra inligting benodig, alhoewel in\n"
-"meeste gevalle dit nie nodig wees nie. Wil u ekstra opsies voorsien od moet\n"
-"rekenaar self daarvoor aftas. IN uitsonderlike gevalle mag die rekenaar\n"
-"ophang, maar dit sal nie skade veroorsaak nie."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Aftas"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Spesifieer opsies"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "U kan die opsies vir module %s hier intik."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ukan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Laai van module %s het gefaal.\n"
-"Wil u ander parameters probeer?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Wil u PCMCIA-kaarte soek?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Stel PCMCIA op..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Soek vir %s-toestelle?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Het %s %s koppelvlakke gevind"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Beskik u oor nog?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Het u enige %s koppelvlakke?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nee"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Sien hardeware inligting"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Netwerk op pad op"
-
-#
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Netwerk op pad af"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Installasie %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"U het nou die %s hardeskyf partisioneer.\n"
-"Wanneer u klaar is, stoor u veranderinge met 'w'."
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Wag asb."
@@ -3625,7 +4233,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Vaagheid (%s). Wees meer presies\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
@@ -3639,465 +4247,962 @@ msgstr " ? (verstek %s) "
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tseggies"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidjani (latyns)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "Azerbaidjani (kirillies)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgaars"
-#
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "Bulgaars"
+msgstr "Belarussies"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (VSA)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norweegs)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iranies"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japanees 106 sleutels"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Nederlands"
-#
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovaaks"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "ViКtnamees \"nommerry\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslaavs (latynse uitleg)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Muis"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Standaard"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Generies"
+
#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Wiel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seriaal"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Generiese 2-knop muis"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Generiese 3-knop muis"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Reeks (seriaal)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Muis (seriaal, ou C7 tipe)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Geen muis"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 knoppies"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 knoppies"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "niks"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Geen muis"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "Volgende ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Is dit korrek?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internetkonfigurasie"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Wil u nou aan die internet konnekteer?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Konfigureer internetkonneksie"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Hoe wil u aan die internet konnekteer?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Konnekteer aan die internet / Konfigureer LAN"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN Konfigurasie"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Kies u internetdiensvoorsiener.\n"
+"Indien nie in die lys nie kies Ongelys"
+
+#
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Konneksiekonfigurasie"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Vul asb. die velde hieronder in"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Kaart IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Kaart I/O"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Kaart IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Kaart IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "U persoonlike telefoonnommer"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Voorsienernaam (bv voorsiener.co.za)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Voorsiener se telefoonnommer"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Voorsiener DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Voorsiener DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Belmetode"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Gebruikerskode"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Wagwoord"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Bevestig wagwoord"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Res van die wЙreld"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Res vd wЙreld - geen D-Kanaal (bruikhuurlyne)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Watter protokol verlang u?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Ek weet nie"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Oor watter tipe kaart beskik u?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Gaan voort"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Aborteer"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
"\n"
+"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
+"wees.\n"
+"\n"
+"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Wat is u ISDN-kaart?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Ek het 'n ISDN-kaart gevind\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-"Welkom by LILO die bedryfstelselkeuseprogram!\n"
+"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
+"PCI-kaart op die volgende skerm."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
+"hardewarekonfigurasieprogram."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Kies die netwerkkoppelvlak"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet.\n"
+"Indien u nie weet nie, kies eth0.\n"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "Netwerkkoppelvlak"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"Om die moontlikehede te vertoon, druk <TAB>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL konfigurasie"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Wil u die konneksie by herlaaityd aanskakel?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Soekj vir 'n modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Op watter seriaalpoort is u modem gekoppel?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Opbelopsies"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Konneksienaam"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefoonnommer"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Aantekenkode"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Magtiging"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Skriptipe"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminaaltipe"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domeinnaam"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Eerste DNS bediener"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Tweede DNS bediener"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-"%ds en dit verstek bedryfstelsel sal laai.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Konnekteer aan die internet / Konfigureer LAN"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
+"You can reconfigure your connection."
+msgstr "Konfigureer internetkonneksie"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
-"word."
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "Konnekteer aan die internet"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "Diskonnekteer van die internet"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "nie genoeg spasie in /boot nie"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Konfigureer internetkonneksie"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Werkskerm"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internetkonneksie en konfigurasie"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Beginkieskaart"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+#, fuzzy
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
-#
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Muis"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Konfigureer internetkonneksie"
-#
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB-muis"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Konfigureer internetkonneksie"
-#
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB-muis (2 knoppe)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Interne ISDN-kaart"
-#
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB-muis (3+ knoppe)"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "Eksterne ISDN-kaart"
-#
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB-muis"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Konnekteer aan die internet"
-#
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB-muis (2 knoppe)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Konfigureer internetkonneksie"
+
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Frankryk"
+
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Ander lande"
#
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB-muis (3+ knoppe)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "In watter land is u?"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Generiese Muis (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Generiese 3-knop muis (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "gebruik pppoe"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "moenie pppoe gebruik nie"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Die mees algemene metode vir ADSL is om DHCP + pppoe te gebruik.\n"
+"Daar is wel sekere konneksie wat net DHCP gebruik. Indien u nie weet nie,\n"
+"kies 'gebruik pppoe'"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Konfigureer internetkonneksie"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Watter DCHP-kliКnt wil u gebruik?\n"
+"Verstek is dhcpd"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Konfigureer internetkonneksie"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Stel plaaslike netwerk op"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Busmuis"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Busmuis"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "Sper netwerkstelsel"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Busmuis"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Konnekteer aan die internet / Konfigureer LAN"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Muis"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Muis (3 knoppe of meer)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Geen muis"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Nou dat u internetkonfigurasie opgestel is,\n"
+"moet u die rekenaar opstel om dit te deel.\n"
+"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+"stel.\n"
+"\n"
+"Wil u internetdeling opstel?\n"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Reeks (seriaal)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "geen netwerkkaart gevind nie"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Stel netwerk op"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seriaal)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Tik asb die rekenaarnaam in.\n"
+"Sekere DHCP-bedieners benodig die rekenaarnaam.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''."
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seriaal)"
+#
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Rekenaarnaam"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seriaal)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"WAARSKUWING: Die toestel is alreeds opgestel om aan die internette "
+"konnekteer.\n"
+"Druk OK om die toetsel so te hou.\n"
+"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (seriaal)"
+#: ../../network.pm_.c:302
+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 ""
+"Gee asb die IP-konfigurasie vir hierdie rekenaar.\n"
+"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
+"(1.2.3.4) gegee word."
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seriaal)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfigureer netwerktoestel %s"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Muis (seriaal, ou C7 tipe)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Outomatiese IP"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seriaal)"
+#
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP adres"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Generiese Muis (seriaal)"
+#
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Netmasker"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft aanpasbaar (seriaal)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Generiese 3-knop Muis (seriaal)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network.pm_.c:341
+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 ""
+"Tik asb die rekenaarnaam in.\n"
+"Dit moet 'n volle gekwalifiseerde naam wees,\n"
+"bv. ``myne.mywerk.co.za''.\n"
+"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seriaal)"
+#
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS bediener"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Is dit korrek?"
+#
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Portaal"
+
+#
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Instaanbedienerkonfigurasie"
-#: ../../partition_table.pm_.c:527
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP instaanbediener"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP instaanbediener"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Instaanbediener moet begin met http://"
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Instaanbediener moet begin met ftp://"
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
-msgstr ""
+msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:545
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4107,21 +5212,21 @@ msgstr ""
"Die enigste oplossing is om die primЙre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:634
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lЙer %s"
-#: ../../partition_table.pm_.c:641
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van lИer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:643
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Korrupte rugsteunlЙer"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
@@ -4142,59 +5247,68 @@ msgstr "belangrik"
msgid "very nice"
msgstr "baie oulik"
-#
#: ../../pkgs.pm_.c:25
msgid "nice"
msgstr "oulik"
-#
#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
msgid "interesting"
msgstr "interessant"
-#
#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
#: ../../pkgs.pm_.c:31
msgid "maybe"
msgstr "moontlik"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (belangrik)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (baie oulik)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (oulik)"
+#: ../../printer.pm_.c:19
+msgid "Local printer"
+msgstr "Plaaslike drukker"
+
#
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Vertoon minder"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Eksterne drukker"
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Vertoon meer"
+#
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Verwyder CUPS-bediener"
-#: ../../printer.pm_.c:244
-msgid "Local printer"
-msgstr "Plaaslike drukker"
+#
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Eksterne lpd-bediener"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "Eksterne lpd"
+#
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Drukkertoestel URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
@@ -4208,12 +5322,11 @@ msgstr "Toets poorte"
msgid "A printer, model \"%s\", has been detected on "
msgstr "'n Drukker, model \"%s\", is opgespoor op "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Plaaslikte drukkertoestel"
-#
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4221,16 +5334,15 @@ msgstr ""
"Watter toestel is die drukker aan gekoppel?\n"
"(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-#
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Drukkertoestel:"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4240,20 +5352,19 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"nodig."
-#
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Eksterne bediener:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Eksterne drukkertou"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4266,31 +5377,27 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Drukkernaam:"
-#
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4302,135 +5409,154 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Drukkerbediener"
-#
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Sokdrukkeropsies"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
+"drukker voorsien en dalk ook 'n poortnommer."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Drukkerrekenaarnaam"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Poort"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Oor watter tipe drukker beskik u?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Wil u drukwerk toets?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Toetsbladsy(e) word gedruk..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
+"Drukstatus:\n"
+"%s\n"
+"\n"
+"Het dit reg gedruk?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
+"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
+"Het dit reg gedruk?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ja, druk die ASCII toetsbladsy"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ja, druk die PostScript toetsbladsy"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ja, druk albei toetsbladsye"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Stel drukker op"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Oor watter tipe drukker beskik u?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Papiergrootte"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Stoot papier uit na voltooiing?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint dryweropsies"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Kleurdiepte opsies"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Druk teks as PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Omgekeerde bladsyorde"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Korrigeer trapsgewyse teks?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Aantal bladsye per uitsetblad?"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Ekstra GhostScriptopsies"
-#
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Ekstra teksopsies"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Wil u drukwerk toets?"
-
-#
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Toetsbladsy(e) word gedruk..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Drukstatus:\n"
-"%s\n"
-"\n"
-"Het dit reg gedruk?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Toetsbladsy(e) is na die drukkerstelsel gestuur.\n"
-"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-"Het dit reg gedruk?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Wil u 'n drukker opstel?"
-#
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4438,21 +5564,67 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS word gelaai"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "CUPS-drywerdatagbasis word gelees"
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Hoe is die drukker gekonekteer?"
#
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Kies eksterne drukkerkonneksie"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
+"op te stel nie; drukkers wod outomaties bespeur.\n"
+"Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Verwyder drukkertou"
-#
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Elke drukker benodig 'n naam (bv. lp)\n"
+"Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
+"Wat is die drukker se naam en wat is die konneksietipe?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Drukkernaam"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Ligging"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4463,48 +5635,45 @@ msgstr ""
"(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
"spoelgids moet gebruik word?"
-#
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Naam van drukkertou"
-#
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spoelgids"
-#
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Drukkerkonneksie"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Kan nie lЙer $file skryf nie"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron is skeduleerder vir periodiese instruksies."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4514,7 +5683,7 @@ msgstr ""
"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
"swak is."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4522,7 +5691,7 @@ msgstr ""
"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
"Loop ookinstruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4535,7 +5704,7 @@ msgstr ""
"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
"konfigurasie."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4546,7 +5715,7 @@ msgstr ""
"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
"konsole toe asook opspringkieskaarte."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4554,7 +5723,7 @@ msgstr ""
"Apache is 'n WWW-bediener.\n"
"Dit kan HTML-lЙers uitstuur en CGI's hanteer"
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4570,7 +5739,7 @@ msgstr ""
"waarvoor\n"
"inetd verantwoordelik is."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4582,7 +5751,7 @@ msgstr ""
"dit\n"
"op meeste rekenaars ongesper laat."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4590,7 +5759,7 @@ msgstr ""
"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4598,7 +5767,7 @@ msgstr ""
"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
"rekenaarname na IP-adresse toe om te skakel."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4606,7 +5775,7 @@ msgstr ""
"Heg en ontheg all netwerklЙerstels (NFS), SMB (Lan Manger/Windows)\n"
"en NCP (Netware) hegpunte."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4614,7 +5783,7 @@ msgstr ""
"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
"herlaaityf te begin."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4624,7 +5793,7 @@ msgstr ""
"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
"die /etc/exports lЙer opgestel."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4632,7 +5801,7 @@ msgstr ""
"NFS is 'n populЙre protokol vir lЙerdeling oor TCP/IP netwerke.\n"
"Hierdie diens vorosien die NFS-lЙersluitfunksionaliteit."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4644,7 +5813,7 @@ msgstr ""
"gelaai word, behalwe as dit konfigureer is nie en dit is derhalwe\n"
"veilig om op rekenaars te hЙ wat dit nie nodig het nie."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4655,7 +5824,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4663,7 +5832,7 @@ msgstr ""
"POstfix is 'n E-posoordragagent (MTA). Dit is die program wat E-pos\n"
"van een bediener na 'n ander oordra."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4671,7 +5840,7 @@ msgstr ""
"Stoor en herstel die stelselentropiepoel vir hoК kwaliteit,\n"
"lukraaknommergenerasie."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4681,7 +5850,7 @@ msgstr ""
"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
"meer komplekse protokolle nodig vir komplekse netwerke."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4689,7 +5858,7 @@ msgstr ""
"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4697,7 +5866,7 @@ msgstr ""
"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
"aangeteken is op ander samewerkende rekenaars."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4706,7 +5875,7 @@ msgstr ""
"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
"'finger')."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4714,70 +5883,220 @@ msgstr ""
"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
"te log na 'n verskeidenheid loglЙers. Dit is altyd goed om syslog te loop."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Stop en begin die X-fontbediener met herlaaityd en afsittyd."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Welkom by SILO die bedryfstelselkeuseprogram!\n"
-"\n"
-"Om die moontlikehede te vertoon, druk <TAB>.\n"
-"\n"
-"Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-"%ds en die verstek bedryfstelsel sal laai.\n"
-"\n"
+"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
+"Ek sal die nodige partisies skoonmak."
-#
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Stel LILO/GRUB op"
-#
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Maar 'n herlaaiskyf"
-#
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Keuse"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO installasie het gefaal a.g.v. hierdie fout: "
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internetkonneksiedeling is ontsper"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Stel X op"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internetkonneksiedeling is gesper"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "KonfigurasielЙerinhoud is onverstaanbaar"
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Internetkonneksiedeling"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Nou dat u internetkonfigurasie opgestel is,\n"
+"moet u die rekenaar opstel om dit te deel.\n"
+"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+"stel.\n"
+"\n"
+"Wil u internetdeling opstel?\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Belmetode"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
+"hardewarekonfigurasieprogram."
+
+#
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
+"\n"
+"$interface\n"
+"\n"
+"Wil u dit gebruik vir die LAN?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Waarskuwing! Die netwerkkaart is alreeds opgestel.]nWil u dit ooropstel?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Vuurmuurkonfigurasie gevind!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
+"dietyd self regstellings moet aanbring. Gaan voort?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "IDE word opgestel"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Geluk!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4834,37 +6153,47 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#
#: ../../standalone/draksec_.c:49
msgid "Setting security level"
msgstr "Sekuriteitsvlak word gestel."
-#
#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Wat is u sleutelborduitleg?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Verander resolusie"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Wat is u muistoestel?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Verander u CDROM!\n"
+"\n"
+"Sit asb. die CDROM getiteld \"%s\" in die aandrywer en druk OK. Indien u "
+"nie\n"
+"hieroor beskik nie, druk Kanselleer om installasies vanaf diИ CDROM te vermy."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#
#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
msgstr "Konfigurasie word gelees"
@@ -4879,17 +6208,14 @@ msgstr "LЙer"
msgid "Search"
msgstr "Soek"
-#
#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
msgstr "Pakket"
-#
#: ../../standalone/rpmdrake_.c:51
msgid "Text"
msgstr "Teks"
-#
#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
msgstr "Boom"
@@ -4902,17 +6228,14 @@ msgstr "Gesorteer volgens"
msgid "Category"
msgstr "Kategorie"
-#
#: ../../standalone/rpmdrake_.c:58
msgid "See"
msgstr "Sien"
-#
#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
msgstr "Installeerde pakkette"
-#
#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
msgstr "Beskikbare pakkette"
@@ -4925,12 +6248,10 @@ msgstr "Wys net eindnodes"
msgid "Expand all"
msgstr "Brei alles uit"
-#
#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
msgstr "Trek alles in"
-#
#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
msgstr "Konfigurasie"
@@ -4943,7 +6264,6 @@ msgstr "Voeg pakketareas by"
msgid "Update location"
msgstr "Dateer area op"
-#
#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
msgstr "Verwyder "
@@ -4952,7 +6272,6 @@ msgstr "Verwyder "
msgid "Configuration: Add Location"
msgstr "Konfigurasie: Voeg area by"
-#
#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
msgstr "Soek pakket"
@@ -4969,12 +6288,10 @@ msgstr "Skakel tussen installeerde en beskikbare"
msgid "Files:\n"
msgstr "LЙers:\n"
-#
#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
msgstr "Verwyder"
-#
#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
msgstr "Kies pakket om te installeer"
@@ -4987,12 +6304,10 @@ msgstr "Afhanklikhede word getoets"
msgid "Wait"
msgstr "Wag"
-#
#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
msgstr "Die volgende pakkette gaan verwyder word"
-#
#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
msgstr "RPM's word verwyder."
@@ -5041,7 +6356,6 @@ msgstr "Wat soek vir?"
msgid "Give a name (eg: `extra', `commercial')"
msgstr "Gee 'n (engelse) naam (bv. 'extra')"
-#
#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
msgstr "LЙergids"
@@ -5088,3 +6402,849 @@ msgstr "Eindnodes word gesoek"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "Soek van eindnodes neem 'n tydjie"
+
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Internetkonfigurasie"
+
+#, fuzzy
+msgid "Internet"
+msgstr "interessant"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Kantoor"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedia"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentasie"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Kies die grootte van die installasie"
+
+#~ msgid "Total size: "
+#~ msgstr "Totale grootte: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Herkonfigureer netwerk nou"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "U rekenaar kan opgestel word om sy internetkonneksie te deel.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Alles is opgestel.\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Konnekteer aan die internet met 'n gewone modem"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Konnekteer aan die internet met ISDN"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Konnekteer aan die internet met DSL of ASDL"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Konnekteer aan die internet met 'n kabelmodem"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
+#~ "Los oop om diИ funksie te sper."
+
+#
+#~ msgid "Germany"
+#~ msgstr "Duitsland"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Duits (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "Wat wil u doen?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Installasie/Redding"
+
+#~ msgid "Rescue"
+#~ msgstr "Redding"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Watter partisietipe verlang u?"
+
+#
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Kies \"Installeer\" indien daar geen vorige weergawe van GNU/Linux\n"
+#~ "op is nie, of indien u 'n multidistribusie wil laat realiseer.\n"
+#~ "\n"
+#~ "Kies \"Redding\" indien u 'n bestaande weergawe van Mandrake Linux wil red:\n"
+#~ "\n"
+#~ "\n"
+#~ "Selekteer:\n"
+#~ "\n"
+#~ " - Aanbevole: Indien u nooit Linux vantevore installeer het nie,kies "
+#~ "hierdie een. \n"
+#~ "\n"
+#~ " - Aangepas: Indien u vertroud genoeg is met GNU/Linux, kan u die primЙre\n"
+#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
+#~ "\n"
+#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
+#~ "installasie wil\n"
+#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
+#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U WERKLIK WEET WAAROOR DIT GAAN "
+#~ "NIE!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "U kan nou kies watter partisie(s) gebruik kan word om Linux-Mandrake\n"
+#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
+#~ "installasie,\n"
+#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
+#~ "geskep\n"
+#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
+#~ "in\n"
+#~ "aparte bruikbare areas\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om outomaties\n"
+#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
+#~ "deur\n"
+#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
+#~ "\"sda\"\n"
+#~ "vir die eerste SCSI skyf ens.\n"
+#~ "\n"
+#~ "\n"
+#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
+#~ "van die lЙergidsstelsel, en /boot, wat die nodige lЙers bevat om die\n"
+#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
+#~ "\n"
+#~ "\n"
+#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
+#~ "baie\n"
+#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
+#~ "diИ\n"
+#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
+#~ "voortgaan.\n"
+#~ "\n"
+#~ "\n"
+#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
+#~ "diepartisies met\n"
+#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
+#~ "\n"
+#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n leК partisie gekies is)\n"
+#~ "\n"
+#~ "- Ctrl-d om 'n partisie uit te vee\n"
+#~ "\n"
+#~ "- Ctrl-m om 'n partisie te heg\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor gebruik.\n"
+#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om ook\n"
+#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
+#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
+#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
+#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
+#~ "nog langer neem voordat die opgradering begin."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
+#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
+#~ "word.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
+#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
+#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
+#~ "muis wat u het.\n"
+#~ "\n"
+#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
+#~ "gee."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
+#~ "of 'n modem.\n"
+#~ "\n"
+#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
+#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
+#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
+#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
+#~ "\n"
+#~ "\n"
+#~ "indien u Linux-Mandrake installeer op 'n stelsel wat deel is van 'n\n"
+#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
+#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
+#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
+#~ "adresse kies.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
+#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien diИ faal\n"
+#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
+#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
+#~ "'lp' is.\n"
+#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit met "
+#~ "die '|' karakterte skei.\n"
+#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
+#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
+#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
+#~ "en die gepaslike filter selekteer.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
+#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
+#~ "op die ander rekenaar ken.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
+#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook die\n"
+#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en die\n"
+#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat u\n"
+#~ "die werkgroep hoef te voorsien nie."
+
+# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
+#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
+#~ "herlaaiskyf\n"
+#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Draai u wiel!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Vergeet van die veranderinge?"
+
+#~ msgid "Cable connection"
+#~ msgstr "Kabelkonneksie"
+
+#~ msgid "Host name:"
+#~ msgstr "Rekenaarnaam:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Wat is u muistoestel?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Outomatiese resolusies"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
+#~ "Die skerm sal 'n paar maal flits...\n"
+#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
+#~ "Soms kan die rekenaar ophang.\n"
+#~ "Wil u probeer?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Geen geldige modes was gevind nie\n"
+#~ "Probeer 'n ander videokaart of monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Outomatiese resolusie soektog"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "DHCP-kliКnt"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB-muis"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB-muis (2 knoppe)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB-muis (3+ knoppe)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB-muis"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB-muis (2 knoppe)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB-muis (3+ knoppe)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Generiese Muis"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Busmuis"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Busmuis"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Busmuis"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB Muis"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Muis (3 knoppe of meer)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (seriaal)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (seriaal)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Generiese Muis (seriaal)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft aanpasbaar (seriaal)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Generiese 3-knop Muis (seriaal)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (seriaal)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr "Ek moet nou u netwerkkaart konfigureer vir die internet"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "NFS heg het gefaal"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "Sok"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Kriptografie"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX sal konfigurasielЙers maak vir beide XFree 3.3 en XFree 4.0.\n"
+#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
+#~ "ondersteun. word\n"
+#~ "\n"
+#~ "Wil u XFree 3.3 behou?"
+
+#~ msgid "Configure LAN"
+#~ msgstr "Konfigureer LAN"
+
+#~ msgid "End configuration"
+#~ msgstr "BeКindig konfigurasie"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "Moenie netwerk opstel nie"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
+
+#~ msgid "Show less"
+#~ msgstr "Vertoon minder"
+
+#~ msgid "Show more"
+#~ msgstr "Vertoon meer"
+
+#~ msgid "curly"
+#~ msgstr "krul"
+
+#~ msgid "default"
+#~ msgstr "Verstek"
+
+#~ msgid "tie"
+#~ msgstr "das"
+
+#~ msgid "brunette"
+#~ msgstr "brunette"
+
+#~ msgid "girl"
+#~ msgstr "meisie"
+
+#~ msgid "woman-blond"
+#~ msgstr "blondine"
+
+#~ msgid "automagic"
+#~ msgstr "outowonder"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Wat is u sleutelborduitleg?"
+
+#~ msgid "Normal"
+#~ msgstr "Normaal"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Wil u PCMCIA-kaarte soek?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Soek vir %s-toestelle?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Modemkonfigurasie"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Wil u 'n opbelkonneksie (modem) vir u stelsel opstel?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Soek vir PCI-toestelle?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Deursoek wortellЙerstelsel"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr ""
+#~ "%s: Hierdie is nie 'n wortellЙerstelsel nie, kies asb. 'n ander een."
+
+#~ msgid "No root partition found"
+#~ msgstr "Geen basislЙerstelsel gevind nie"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Watter partisie moet u wortelpartisie wees?"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "U het geen Windowspartisies nie!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "U het nie genoeg plek vir Lnx4win nie"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Outomaties"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Welkom by LILO die bedryfstelselkeuseprogram!\n"
+#~ "\n"
+#~ "Om die moontlikehede te vertoon, druk <TAB>.\n"
+#~ "\n"
+#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
+#~ "%ds en dit verstek bedryfstelsel sal laai.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Welkom by SILO die bedryfstelselkeuseprogram!\n"
+#~ "\n"
+#~ "Om die moontlikehede te vertoon, druk <TAB>.\n"
+#~ "\n"
+#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
+#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILO hoofopsies"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Hier is die huidige inskrywings in SILO.\n"
+#~ "U kan byvoeg or verwyder soos nodig."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Hierdie etiket is alreeds in gebruik"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
+#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
+#~ "bekend is, sal dit outomaties bygevoeg word.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
+#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
+#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
+#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
+#~ "\n"
+#~ "\n"
+#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
+#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
+#~ "\n"
+#~ "\n"
+#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
+#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
+#~ "opsies wat u die drywer moet verskaf."
+
+#~ msgid "Shutting down"
+#~ msgstr "Stelselafsluiting"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index db7bc3dc4..c19f9da3f 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -1,54 +1,114 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 MandrakeSoft.
-# Alexander Bokovoy <bokovoy@minsk.lug.net>, 2000
+# Alexander Bokovoy <ab@avilink.net>, 2000
+# Maryia Davidouskaia <maryia@scientist.com>, 2000
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 1999-09-24 10:07 +0200\n"
-"Last-Translator: Alexander Bokovoy <bokovoy@minsk.lug.net>\n"
-"Language-Team: by\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
+"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
+"Language-Team: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "бiДЩЮЙЮПРЮ"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
-msgstr "бШАЕПШЖЕ БiДЩЮЙЮПРС"
+msgstr "бШАЪПШЖЕ БiДЩЮЙЮПРС"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
-msgstr "бШАЕПШЖЕ X ЯЕПБЕП"
+msgstr "бШАЪПШЖЕ X ЯЕПБЕП"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X ЯЕПБЕП"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "яЕПБЕП XFree86 %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "ъЙСЧ ЙЮМТiЦСПЮЖШЧ XFree БШ ФЮДЮЕЖЕ ЮРПШЛЮЖЭ?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"оЮДРПШЛЙЮ 3D-ОЮЯЙЮПЩММЪ ╒ бЮЬЮИ БЁДЩЮЙЮПЖЕ БШЙЮМЮМЮ РНКЭЙЁ ╒ XFree %s.\n"
+"XFree %s ЛНФЮ БШЙЮПШЯРН╒БЮЖЭ РНКЭЙЁ 2D-ОЮЯЙЮПЩММЕ ДКЪ ЦЩРЮИ БЁДЩЮЙЮПРШ."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"бЮЬЮ БiДЩЮЙЮПРЮ ЛНФЮ ЛЕЖЭ 3D-ОЮЯЙЮПЩММЕ, ЪЙНЕ ОЮДРПШЛКiБЮЕЖЖЮ РНКЭЙi XFree "
+"%s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s Г ОЮДРПШЛЙЮИ 3D-ОЮЯЙЮПЩММЪ"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"бЮЬЮ БiДЩЮЙЮПРЮ ЛНФЮ ЛЕЖЭ 3D-ОЮЯЙЮПЩММЕ, ЪЙНЕ ОЮДРПШЛКiБЮЕЖЖЮ РНКЭЙi XFree "
+"%s.\n"
+"люиже мю ║бюге, ьрн цщрю щйяоепшлемрюкэмюъ оюдрпшлйю I лнфю опшбеяжI дю\n"
+"гюбIяюммъ бюьюцю йюло'чрщпю. бЮЬЮ БiДЩЮЙЮПРЮ ОЮДРПШЛКiБЮЕЖЖЮ XFree %s, ЪЙi\n"
+"КЕОЕИ ОЮДРПШЛКiБЮЕ ЙЮПРШ Г 2D-ОЮЯЙЮПЩММЕЛ."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"бЮЬЮ БiДЩЮЙЮПРЮ ЛНФЮ ЛЕЖЭ 3D-ОЮЯЙЮПЩММЕ, ЪЙНЕ ОЮДРПШЛКiБЮЕЖЖЮ РНКЭЙi XFree "
+"%s.\n"
+"люиже мю ║бюге, ьрн цщрю щйяоепшлемрюкэмюъ оюдрпшлйю I лнфю опшбеяжI дю\n"
+"гюбIяюммъ бюьюцю йюло'чрщпю."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s Г ЩЙЯОЕПШЛЕМРЮКЭМЮИ ОЮДРПШЛЙЮИ 3D-ОЮЯЙЮПЩММЪ"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "мЮЯРПНИЙЮ XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "оЮГМЮВЖЕ ОЮЛЕП БiДЩЮОЮЛЪЖi"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
-msgstr "бШАЕПШЖЕ ДЮДЮРЙНБШЪ МЮЯРПНИЙi ДКЪ ЯЕПБЕПЮ"
+msgstr "бШАЪПШЖЕ ДЮДЮРЙНБШЪ МЮЯРПНИЙi ДКЪ ЯЕПБЕПЮ"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
-msgstr "бШАЕПШЖЕ ЛЮМiРНП"
+msgstr "бШАЪПШЖЕ ЛЮМiРНП"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "лЮМiРНП"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -69,878 +129,1079 @@ msgstr ""
"бекэлI бюфмю, ЙЮА БШАПЮМШ БЮЛi ЛЮМiРНП ЛЕ╒ ВЮЯРЮРС ЯiМУПЮМiГЮЖШi, ЪЙЮЪ\n"
"МЕ ОЕПЮБШЬЮЕ ТЮЙРШВМШЪ ЛЮЦВШЛЮЯЖi БЮЬЮЦЮ ЛЮМiРНПЮ: С ОПНЖiКЕЦКШЛ БШОЮДЙС\n"
"БШ ЛНФЮЖЕ ЯОНПЖiЖЭ ЛЮМiРНП.\n"
-"йЮКi БШ ЯСЛМЪБЮЕЖЕЯЪ, БШАЕПШЖЕ ЙЮМЯЕПБЮРШ╒МШЪ МЮЯРПНИЙi."
+"йЮКi БШ ЯСЛМЪБЮЕЖЕЯЪ, БШАЪПШЖЕ ЙЮМЯЕПБЮРШ╒МШЪ МЮЯРПНИЙi."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "вЮЯРЮРЮ ЦЮПШГЮМРЮКЭМШИ ПЮГЦНПРЙi"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "вЮЯРЮРЮ БЕПРШЙЮКЭМЮИ ПЮГЦНПРЙi"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
-msgstr "лЮМiРНП ОЮЙСКЭ МЕ МЮЯРПНЕМ"
+msgstr "лЮМiРНП ОЮЙСКЭ МЕ МЮЯРПНЕМШ"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
-msgstr "бХДЩЮЙЮПРЮ ЪЬВЩ МЕ МЮЯРПНЕМЮ"
+msgstr "бiДЩЮЙЮПРЮ ЪЬВЩ МЕ ЮДЙЮМТiЦСПЮБЮМЮ"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
-msgstr "оЮЛЕПШ ЩЙПЮМЮ ЪЬВЩ МЕ БШАПЮМШ"
+msgstr "оЮЛЕПШ ЩЙПЮМЮ ЪЬВЩ МЕ ОЮГМЮВЮМШ"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
-msgstr "жi АСДГЕЖЕ РЩЯЖiПЮБЮЖЭ МЮЯРПНИЙi?"
+msgstr "жi ФЮДЮЕЖЕ ОПЮРЩЯЖiПЮБЮЖЭ МЮЯРПНИЙi?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "оЮОЪПЩДФЮММЕ: РЩЯЖiПЮБЮММЕ МЮ ЦЩРЮИ БiДЩЮЙЮПЖЕ МЕАЪЯОЕВМЮ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
-msgstr "оПЮБЕПЙЮ МЮЯРПНЕЙ"
+msgstr "оПЮБЕПЙЮ ОЮПЮЛЕРПЮ╒ МЮЯРПНИЙi"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
msgstr ""
"\n"
-"ОЮЯОПЮАСИЖЕ ГЛЕМiЖЭ МЕЙЮРНПШЪ ОЮПЮЛЕРПШ"
+"ОЮЯОПЮАСИЖЕ ГЛЪМiЖЭ МЕЙЮРНПШЪ ОЮПЮЛЕРПШ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "оЮЛШКЙЮ:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
-msgstr "гЮЯРЮКНЯЭ %d ЯЕЙСМД"
+msgstr "гЮЯРЮКНЯЪ %d ЯЪЙСМД"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr ""
+msgstr "цЩРЮ ДЮЙКЮДМШЪ ОЮПЮЛЕРПШ МЮЯРПНИЙi?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "юРПШЛЮМЮ ОЮЛШКЙЮ, ОЮЯОПЮАСИЖЕ ГЛЪМiЖЭ ОЮПЮЛЕРПШ"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "ю╒РЮЛЮРШВМЮЕ БШГМЮВЩММЕ ОЮЛЕПЮ╒ ЩЙПЮМЮ"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"дКЪ ОНЬСЙЮ ОЮДШУНДГЪВШУ ОЮЛЕПЮ╒ ГЮПЮГ ОЮЯОПЮАСЕЛ ПНГМШЕ ПЩФШЛШ. \n"
-"бЮЬ ЩЙПЮМ АСДГЕ ЛiЦЮЖЭ... йЮКi БЮЛ МЕ ОЮДЮАЮЧЖЖЮ ЛiЦЮММi, iУ ЛНФМЮ "
-"ЮДЙКЧВШЖЭ, РЮДШ ОЮЯКЪ ГЮЙЮМВЩММЪ АСДГЕ ВСБЮЖЭ ЦСДНЙ."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "оЮЛЕПШ ЩЙПЮМЮ"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "бШАЮП ОЮЛЕПЮ╒ ЩЙПЮМЮ i ЦКШАiМi ЙНКЕПС"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "бiДЩЮЙЮПРЮ: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "яЕПБЕП XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "оЮЙЮГЮЖЭ СЯ╦"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "оЮЛЕПШ ЩЙПЮМЮ"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"лНФМЮ ОЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ДЮЯРСОМШЪ ОЮЛЕПШ ЩЙПЮМС (МЮОП.: 800x600).\n"
-"с БЕКЭЛi ПЩДЙiЛ БШОЮДЙС ЦЩРЮ ЛНФЮ ОПШБЕЯЖi ДЮ ЮЯРЮМНБС ЙЮЛО'ЧРЮПЮ .\n"
-"фЮДЮЕЖЕ ОЮЯОПЮАЮБЮЖЭ?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"оЮДШУНДГЪВШЪ ПЩФШЛШ МЕ ГМНИДГЕМШ.\n"
-"оЮЯОПЮАСИЖЕ СЙЮГЮЖЭ iМЬСЧ БiДЩЮЙЮПРС Жi ЛЮМiРНП"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "рШО ЙКЮБiЪРСПШ: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "рШО ЛШЬШ: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "лШЬ: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "лЮМiРНП: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "вЮЯРЮРЮ ЦЮП.ПЮГЦ. ЛЮМiРНПЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "вЮЯРЮРЮ БЕПР.ПЮГЦ. ЛЮМiРНПЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "бiДЩЮЙЮПРЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
-msgstr "бiДЩЮОЮЛЪЖЭ: %s KB\n"
+msgstr "бiДЩЮОЮЛЪЖЭ: %s йА\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "оЮПЮЛЕРПШ ЦКШАiМi ЙНКЕПС: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "оЮЛЕПШ ЩЙПЮМЮ: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "яЕПБЕП XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "яЕПБЕП XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "оЮДПШУРН╒ЙЮ МЮЯРПНИЙi X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "гЛЪМiЖЭ ЛЮМiРНП"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "гЛЪМiЖЭ БiДЩЮЙЮПРС"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "гЛЪМiЖЭ МЮЯРПНИЙi яЕПБЕПЮ"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "гЛЪМiЖЭ ОЮЛЕПШ ЩЙПЮМЮ"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "юГРЮЛЮРШВМШ ОНЬСЙ ОЮЛЕПЮ╒ ЩЙПЮМЮ"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "IМТЮПЛЮЖШЪ"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
-msgstr "оПЮБЕПШЖЭ iГМН╒"
+msgstr "оПЮБЕПШЖЭ ЪЬВЩ ПЮГ"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "бШУЮД"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
-msgstr "ьРН БШ УЮЖiЖЕ ГПЮАiЖЭ?"
+msgstr "ьРН БШ ФЮДЮЕЖЕ ГПЮАiЖЭ?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "гЮАШЖЭ ГЛЪМЕММi?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"жЁ ФЮДЮЕЖЕ бШ ГЮУЮБЮЖЭ ГЛЪМЕММЁ?\n"
+"аЪЦСВЮЪ ЙЮМТЁЦСПЮЖШЪ:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "йЮКi КЮЯЙЮ, ОЕПЮБЮИДГiЖЕ ╒ %s ДКЪ ЮЙРШБЮЖШi ГЛЪМЕММЪ╒"
+msgstr "йЮКi КЮЯЙЮ, ОЕПЮИДГiЖЕ ╒ %s ДКЪ ЮЙРШБЮЖШi ГЛЪМЕММЪ╒"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "йЮКi КЮЯЙЮ, БШИДГiЖЕ, Ю ОНРШЛ ЯЙЮПШЯРЮИЖЕ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "гЮОСЯЙ X ОПШ ЯРЮПЖЕ ЯiЯРЩЛШ"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"лНФМЮ МЮЯРПНiЖЭ ЯiЯРЩЛС ДКЪ Ю╒РЮЛЮРШВМЮЦЮ ГЮОСЯЙЮ X ОЮЯКЪ ЯРЮПРС ЯiЯРЩЛШ.\n"
-"фЮДЮЕЖЕ, ЙЮА X ЯРЮПРЮБЮК ОПШ ПЩЯРЮПЖЕ?"
+"лНФМЮ МЮЯРПНiЖЭ ЯiЯРЩЛС ДКЪ Ю╒РЮЛЮРШВМЮЦЮ ГЮОСЯЙС X ОЮЯКЪ ЯРЮПРС ЯiЯРЩЛШ.\n"
+"фЮДЮЕЖЕ, ЙЮА X ЯРЮПРЮБЮ╒ ОПШ ПЩЯРЮПЖЕ?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "ю╒РЮЛЮРШВМШ ╒БЮУНД С ЯiЯРЩЛС"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"лНФМЮ МЮЯРПНiЖЭ ЯiЯРЩЛС ДКЪ Ю╒РЮЛЮРШВМЮЦЮ ╒ЮБУНДС ╒ ЯiЯРЩЛС ДКЪ\n"
+"ЮДМЮЦН ЙЮПШЯРЮКЭМiЙЮ. йЮКi бШ МЕ ФЮДЮЕЖЕ ЦЩРЮЦЮ, МЮЖiЯМiЖЕ \"юДЛЕМЮ\"."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "бШАЕПШЖЕ ЮЯМН╒МЮЦЮ ЙЮПШЯРЮКЭМiЙЮ:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "бШАЪПШЖЕ ЛЩМЩДФЩП БНЙМЮ╒:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 ЙНКЕПЮ╒ (8 АiР)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 РШЯЪВШ ЙНКЕПЮ╒ (15 АiР)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 РШЯЪВ ЙНКЕПЮ╒ (16 АiР)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
-msgstr "16 ЛiКi╦МНБ ЙНКЕПЮ╒ (24 АiРЮ)"
+msgstr "16 ЛiКЭ╦МЮ╒ ЙНКЕПЮ╒ (24 АiРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 ЛiКiЪПДЮ ЙНКЕПЮ╒ (24 АiРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
-msgstr "256 kB"
+msgstr "256 йА"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
-msgstr "512 kB"
+msgstr "512 йА"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
-msgstr "1 MB"
+msgstr "1 лА"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
-msgstr "2 MB"
+msgstr "2 лА"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
-msgstr "4 Mb"
+msgstr "4 лА"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
-msgstr "8 Mb"
+msgstr "8 лА"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
-msgstr "16 MB Жi АНКЭЬ"
+msgstr "16 лА Жi АНКЕИ"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "яРЮМДЮПРМШ VGA, 640x480 ОПШ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 ОПШ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "яСЛЕЯМШ Г 8514, 1024x768 ОПШ 87 Hz ОПЮГЯРПНВМШ (МЕЛЮ 800x600)"
+msgstr "яСЛЕЯМШ Г 8514, 1024x768 ОПШ 87 Hz ОПЮГЯРПНВМШ (МЪЛЮ 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 ОПi 87 Hz ОПЮГЯРПНВМШ, 800x600 ОПШ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 ОПШ 60 Hz, 640x480 ОПШ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 ОПШ 60 Hz, 800x600 ОПШ 72 Hz"
+msgstr "мЕОПЮГЯРПНВМШ SVGA, 1024x768 ОПШ 60 Hz, 800x600 ОПШ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 ОПШ 70 Hz"
+msgstr "бШЯНЙЮВЮЯРНРМШ SVGA, 1024x768 ОПШ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 60 Hz"
+msgstr "ьЛЮРВЮЯРНРМШ, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 74 Hz"
+msgstr "ьЛЮРВЮЯРНРМШ, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 76 Hz"
+msgstr "ьЛЮРВЮЯРНРМШ, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1280x1024 ОПШ 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "лЮМiРНП, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1600x1200 ОПШ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "лЮМiРНП, ЪЙi ГДНКЭМШ ОЮДРПШЛКiБЮЖЭ 1600x1200 ОПШ 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "ГЛН╒ВЮММЕ"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "tie"
-msgstr "юЙРШ╒МШ"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "ю╒РЮЛЮРШВМШ IP"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "оЕПЬШ ЯЕЙРЮП ГЮЦПСГЮВМЮЦЮ ПЮГДГЕКЮ"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
-msgstr "оЕПЬШ ЯЕЙРЮП СЯРПНИЯРБЮ (MBR)"
+msgstr "оЕПЬШ ЯЕЙРЮП ОПШКЮДШ (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "сЯРЮМН╒ЙЮ LILO/GRUB"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "сЯРЮК╦╒ЙЮ SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
-msgstr "йСДШ БШ ФЮДЮЕЖЕ ╒ЯРЮМЮБiЖЭ ОЮВЮРЙНБШ ГЮЦПСГВШЙ?"
+msgstr "йСДШ БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ ОЮВЮРЙНБШ ГЮЦПСГВШЙ?"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "сЯРЮМН╒ЙЮ LILO/GRUB"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
-msgstr "гПНАКЕМЮ"
+msgstr "мЪЛЮ"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
-msgstr "мЮ ЪЙi ЯЕЙРЮП ОЕПЮЛЪЯЖiЖЭ?"
+msgstr "ъЙi ОЮВЮРЙНБШ ГЮЦПСГВШЙ БШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "сЯРЮК╦╒ЙЮ ГЮЦПСГВШЙЮ"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
-msgstr "гЮЦПСГЮВМЮЕ СЯРПНИЯРБЮ"
+msgstr "гЮЦПСГЮВМЮЪ ОПШКЮДЮ"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
+msgstr "LBA (МЕ ОПЮЖСЕ ОПШ ЯРЮПШУ БЕПЯiЪУ BIOS)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "йЮЛОЮЙРМЮ"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "ЙЮЛОЮЙРМЮ"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "гЮРПШЛЙЮ ОЕПЮД ГЮЦПСГЙЮИ БНАПЮГЮ ОЮ ГЮЛН╒ВЮММЧ"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "бiДЩЮ-ПЩФШЛ"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "гЮРПШЛЙЮ ОЕПЮД ГЮЦПСГЙЮИ БНАПЮГЮ ОЮ ДЮЛЮ╒КЕММЧ"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
-msgstr "оЮПНКЭ:"
+msgstr "оЮПНКЭ"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
-msgstr "оЮ╒РЮПШЖЕ ОЮПНКЭ:"
+msgstr "оЮ╒РЮПШЖЕ ОЮПНКЭ"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
-msgstr "юЧЛЕФЮБЮММЕ НОЖШИ ЙЮЛЮМДМЮЦЮ ПЮДЙЮ"
+msgstr "юАЛЕФЮБЮММЕ НОЖШИ ЙЮЛЮМДМЮЦЮ ПЮДЙЮ"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ЮАЛЕФЮБЮММЕ"
-#: ../../any.pm_.c:98
-#, fuzzy
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
-msgstr "ЦЮКН╒МШЪ НОЖШi LILO"
+msgstr "цЮКН╒МШЪ НОЖШi ОЮВЮРЙНБЮЦЮ ГЮЦПСГВШЙЮ"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"нОЖШЪ ``юАЛЕФЮБЮММЕ НОЖШИ ЙЮЛЮМДМЮЦЮ ПЮДЙЮ'' МЕ БШЙЮПШЯРН╒БЮЕЖЖЮ АЕГ ОЮПНКЪ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "оЮЯОПЮАСИЖЕ ЪЬВЩ ПЮГ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "оЮПНКi МЕ ЯСОЮДЮЧЖЭ"
-#: ../../any.pm_.c:112
-#, fuzzy
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-"LILO ГЛЪЬВЮЕ МЮЯРСОМШЪ ОСМЙРШ.\n"
-"бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЕМiЖЭ iЯМСЧВШЪ."
+"с ЛЕМЧ ЛЮЧЖЖЮ МЮЯРСОМШЪ ОСМЙРШ.\n"
+"бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЪМiЖЭ iЯМСЧВШЪ."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "дЮДЮЖЭ"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "гПНАКЕМЮ"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "ъЙi РШО ОСМЙРЮ ФЮДЮЕЖЕ ДЮДЮЖЭ?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "IМЬЮЪ юя (SunOS,...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "IМЬЮЪ OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "ъЙi РШО ОСМЙРЮ ФЮДЮЕЖЕ ДЮДЮЖЭ?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "бНАПЮГ"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "дЮКСВШЖЭ"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "вШРЮММЕ-ГЮОiЯ"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "рЮАКiЖЮ"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
-msgstr "Unsafe"
+msgstr "мЕМЮДГЕИМЮ"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "лЕРЙЮ"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
-msgstr "гЛН╒ВЮММЕ"
-
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+msgstr "оЮ ДЮЛЮ╒КЕММЧ"
+
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "нЙ"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
-msgstr "сДЮКiЖЭ ОСМЙР"
+msgstr "бШДЮКiЖЭ ГЮОiЯ"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "оСЯРЮЪ ЛЕРЙЮ МЕ ДЮГБЮКЪЕЖЖЮ"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "цЩРЮЪ ЛЕРЙЮ ╒ФН БШЙЮПШЯРН╒БЮЕЖЖЮ"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "гМНИДГЕМШ %s %s iМРЩПТЕИЯШ"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "жi ╦ЯЖЭ С БЮЯ iМЬШ?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "жi ╦ЯЖЭ С БЮЯ %s iМРЩПТЕИЯ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "мЕ"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "рЮЙ"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "цК. ЮОiЯЮММЕ ЮАЯРЮКЪБЮММЪ"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "сЯРЮМН╒ЙЮ ДПЮИБЕПЮ ДКЪ %s ЙЮПРШ %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(ЛНДСКЭ %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "ъЙi ДПЮИБЕП %s ОЮЯОПЮАЮБЮЖЭ?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ДПЮИБЕПС ОЮРПЩАМЮ МЕЙЮРНПЮЪ ДЮДЮРЙНБЮЪ iМТЮПЛЮЖШЪ,\n"
+"ЮКЕ ГБШВЮИМЮ ЦЩРЮ МЕ ОЮРПЮАСЕЖЖЮ. жi МЕ ФЮДЮЕЖЕ БШ ГЮДЮЖЭ ДКЪ ЪЦН\n"
+"ДЮДЮРЙНБШЪ НОЖШi, Жi ДЮГБНКiЖЕ ДПЮИБЕПС ОПЮРЩЯЖiПЮБЮЖЭ ЛЮЬШМС\n"
+"╒ ОНЬСЙЮУ МЕЮАУНДМЮИ iМТЮПЛЮЖШi? лЮЦВШЛЮ, РЩЯЖiПЮБЮММЕ ОПШБЪДГЕ\n"
+"ДЮ ЮЯРЮМНБЮ ЙЮЛО'ЧРЩПЮ, ЮКЕ ЪМН МiВНЦЮ МЕ ЯОНПЖiЖЭ."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "ю╒РЮОНЬСЙ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "оЮГМЮВЖЕ ОЮПЮЛЕРПШ"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "бШ МЕ ЛНФЮЖЕ ГЮДЮЖЭ НОЖШi ЛНДСКЧ %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"бШ МЕ ЛНФЮЖЕ ГЮДЮЖЭ НОЖШi ЛНДСКЧ %s.\n"
+"нОЖШi - С ТЮПЛЮЖЕ ``iЛЪ=ГМЮВЩММЕ iЛЪ2=ГМЮВЩММЕ2 ...''.\n"
+"мЮОПШЙКЮД, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "нОЖШi ЛНДСКЪ:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"гЮЦПСГЙЮ ЛНДСКЪ %s МЕ ОПЮИЬКЮ.\n"
+"фЮДЮЕЖЕ ОЮЯОПЮАЮБЮЖЭ Г iМЬШЛi ОЮПЮЛЕРПЮЛi?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"To list the possible choices, press <TAB>.\n"
+"\n"
+"To load one of them, write its name and press <ENTER> or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "МЕ УЮОЮЕ ЛЕЯЖЮ ╒ ПЮГДГЕКЕ /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "пЮАНВХИ ЯРНК"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "цКЮБМНЕ ЛЕМЧ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d УБiКiМ"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 УБiКiМЮ"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d ЯЪЙСМД"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "яРБЮПШЖЭ"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "пЮГЛЮМЖiПЮБЮЖЭ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "гМiЬВШЖЭ"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "тЮПЛЮЖiПЮБЮММЕ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "гЛЪМЕММЕ ОЮЛЕПЮ╒"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "рШО"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
-msgstr "оСМЙР ЛЮМЖiПЮБЮММЪ"
+msgstr "йПНОЙЮ ЛЮМЖiПЮБЮММЪ"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "гЮОiЯ /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "пЩФШЛ ЩЙЯОЕПРЮ"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "гБШВЮИМШ ПЩФШЛ"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "юДМЮ╒КЕММЕ Г ТЮИКЮ"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "гЮУЮБЮММЕ ╒ ТЮИК"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "лЮИЯРЮП ЯРБЮПЩММЪ"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "юДМЮ╒КЕММЕ Г ДШЯЙЕРШ"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "гЮУЮБЮММЕ МЮ ДШЯЙЕРС"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
-msgstr "нВШЯЖiЖЭ СЯ╦"
+msgstr "юВШЯЖiЖЭ СЯ╦"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "тЮПЛЮЖiПЮБЮЖЭ СЯ╦"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
-msgstr "пЮГЛЪЯЖiЖЭ Ю╒РЮЛЮРШВМЮ"
+msgstr "пЮГЛЕПЙЮБЮЖЭ Ю╒РЮЛЮРШВМЮ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "сЯЕ ОЕПЬЮЯМШЪ ПЮГДГЕКШ БШЙЮПШЯРЮМШ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "дЮДЮЖЭ ПЮГДГЕК МЕЛЮЦВШЛЮ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-"йЮА ГПЮАiЖЭ АНКЭЬ ПЮГДЕКЮ╒, СДЮКiЖЕ ЮДГiМ i ЯРБЮПШЖЕ ОЮЬШПЮМШ ПЮГДГЕК "
+"йЮА ГПЮАiЖЭ АНКЭЬ ПЮГДЕКЮ╒, БШДЮКiЖЕ ЮДГiМ i ЯРБЮПШЖЕ ОЮЬШПЮМШ ПЮГДГЕК "
"(extended)"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
-msgstr "гЮОЮЯМЮЪ РЮАКiЖЮ ПЮГДГЕКЮ╒"
+msgstr "дЮДЮРЙНБЮЪ РЮАКiЖЮ ПЮГДГЕКЮ╒"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "юДЙЮР"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "гЮОiЯ РЮАКiЖШ ПЮГДГЕКЮ╒"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "оЕПЮГЮЦПСГiЖЭ"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
-msgstr ""
-
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "оСЯРЮ"
+msgstr "бiПРСЮКЭМЮЪ ТЮИКЮБЮЪ ЯiЯРЩЛЮ (loopback)"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "дПСЦiЪ"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "оСЯРЮ"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "дПСЦiЪ"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "рШОШ ТЮИКЮБЮИ ЯiЯРЩЛШ:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "оЮДПЮАЪГМЮЯЖi"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"бШ ЛЮЕЖЕ РНКЭЙi ЮДГiМ БЪКiЙi ПЮГДГЕК FAT\n"
-"(ГБШВЮИМЮ БШЙЮПШЯРЮЕЛШ MicroSoft Dos/Windows).\n"
-"оПЮОЮМСЧ ОЮ-ОЕПЬЮЕ ГЛЪМiЖЭ ОЮЛЕПШ ПЮГДГЕКЮ\n"
+"гЮПЮГ БШ ЛЮЕЖЕ РНКЭЙi ЮДГiМ БЪКiЙi ПЮГДГЕК FAT\n"
+"(ГБШВЮИМЮ БШЙЮПШЯРН╒БЮЕЛШ MicroSoft Dos/Windows).\n"
+"оПЮОЮМСЧ, ОЮ-ОЕПЬЮЕ, ГЛЪМiЖЭ ОЮЛЕПШ ПЮГДГЕКЮ\n"
"(ЙКiЙМiЖЕ МЮ ЪЦН, Ю ОНРШЛ МЮ \"ГЛЪМЕММЕ ОЮЛЕПЮ╒\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
-msgstr "оЮ-ОЕПЬЮЕ, ГПЮАiЖЕ ПЩГЕПБМСЧ ЙНОiЧ БЮЬШУ ДЮДГЕМШУ"
+msgstr "оЮ-ОЕПЬЮЕ, ГПЮАiЖЕ ПЩГЕПБНБСЧ ЙНОiЧ БЮЬШУ ДЮДГЕМШУ"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "вШРЮИЖЕ ╒БЮФКiБЮ!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
+"йЮКi БШ ОКЮМСЕЖЕ БШЙЮПШЯРН╒БЮЖЭ boot БНАКЮЯЖЭ, РН ПЮГЛЪЯЖiЖЕ ЪЕ\n"
+" МЕ ДЮКЕИ ГЮ 2048 ЯЕЙРЮПН╒ ЮД ОЮВЮРЙС ДШЯЙЮ"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
-msgstr ""
+msgstr "аСДГЭЖЕ СБЮФКiБШ. цЩРСЧ ЮОЕПЮЖШЧ МЕКЭЦЮ ЮДЛЪМiЖЭ"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "оЮЛШКЙЮ"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
-msgstr "оСМЙР ЛЮМЖiПЮБЮММЪ:"
+msgstr "йПНОЙЮ ЛЮМЖiПЮБЮММЪ:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "оПШКЮДЮ:"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "КiРЮПЮ ДКЪ DOS-ДШЯЙЮ: %s (МЮ╒ЦЮД)\n"
+msgstr "кiРЮПЮ ДКЪ DOS-ДШЯЙЮ: %s (МЮ╒ЦЮД)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "рШО: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "оЮВЮРЮЙ: ЯЕЙРЮП %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "оЮЛЕП: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s ЯЕЙРЮПЮ╒"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "жШКiМДПШ Г %d ОЮ %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "тЮПЛЮЖiПЮБЮММЕ\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "мЕ ЮДТЮПЛЮЖiПЮБЮМЮ\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "гЮЛЮМЖiПЮБЮМЮ\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
-msgstr ""
+msgstr "тЮИК(Ш) БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"гЮЦПСГЮВМШ ПЮГДГЕК ОЮ ГЮЛН╒ВЮММЧ\n"
+"гЮЦПСГЮВМШ ПЮГДГЕК ОЮ ДЮЛЮ╒КЕММЧ\n"
" (ДКЪ ГЮЦПСГЙi MS-DOS, Ю МЕ ДКЪ lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "сГПНБЕМЭ %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "оЮЛЕП ТПЮЦЛЕМРЮ %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-ДШЯЙi %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
-msgstr ""
+msgstr "IЛЪ ТЮИКЮ БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "мЮФЛiЖЕ МЮ ПЮГДГЕК"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "оЮЛЕП: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "цЕЮЛЕРПШЪ: %s ЖШКiМДПЮ╒, %s ЦЮКНБЮЙ, %s ЯЕЙРЮПЮ╒\n"
-#: ../../diskdrake.pm_.c:267
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:273
+#, c-format
msgid "Partition table type: %s\n"
-msgstr "гЮОiЯ РЮАКiЖШ ПЮГДГЕКЮ╒"
+msgstr "рШО РЮАКiЖШ ПЮГДГЕКЮ╒: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "МЮ ЬШМЕ %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "лЮМЖiПЮБЮММЕ"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "юЙРШ╒МШ"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "дЮДЮЖЭ ДЮ RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
-msgstr "сДЮКiЖЭ Г RAID"
+msgstr "бШДЮКiЖЭ Г RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "гЛЪМiЖЭ RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
-msgstr ""
+msgstr "бШЙЮПШЯРН╒БЮЖЭ ДКЪ БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
-msgstr "бШАЕПШЖЕ ДГЕЪММЕ"
+msgstr "бШАЪПШЖЕ ДГЕЪММЕ"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
-"оПЮАЮВЖЕ, ЮКЕ МЕКЭЦЮ ЯРБЮПШЖЭ /boot МЮ ЦЩРШЛ ДШЯЙЕ (МЮ ЖШКiМДПЕ > 1024).\n"
+"оПЮАЮВЖЕ, ЮКЕ МЕКЭЦЮ ЯРБЮПШЖЭ /boot МЮ ЦЩРШЛ ДШЯЙЕ (МЮ ЖШКiМДПШ > 1024).\n"
"юКЭАН БШ БШЙЮПШЯРН╒БЮЕЖЕ LILO - РЮДШ ЦЩРЮ МЕ АСДГЕ ОПЮЖЮБЮЖЭ, ЮКЭАН LILO МЕ "
"БШЙЮПШЯРН╒БЮЕЖЮ, i РЮДШ /boot МЕ ОЮРПЩАМШ."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -948,218 +1209,230 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"бШАПЮМШ ДКЪ ДЮДЮРЙС ╒ ЪЙЮЯЖi ЙЮПЩММЮЦЮ (/) ПЮГДГЕК ТiГiВМЮ ГМЮУНДГiЖЮ ДЮКЕИ\n"
-"1024-ЦН ЖШКiМДПЮ ФНПЯРЙЮЦЮ ДШЯЙЮ, Ю ╒ БЮЯ МЕЛЮ ПЮГДГЕКЮ /boot .\n"
-"йЮКi АСДГЕ БШЙЮПШЯРН╒БЮЖЖЮ ДШЯОЕВЮП ГЮЦПСГЙi LILO, МЕ ГЮОЮЛЪРЮИЖЕ ДЮДЮЖЭ "
+"1024-ЦН ЖШКiМДПЮ ФНПЯРЙЮЦЮ ДШЯЙЮ, Ю ╒ БЮЯ МЪЛЮ ПЮГДГЕКЮ /boot .\n"
+"йЮКi АСДГЕ БШЙЮПШЯРН╒БЮЖЖЮ ДШЯОЕВЮП ГЮЦПСГЙi LILO, МЕ ГЮОЮЛЪРЮИЖЕ ДЮДЮЖЭ\n"
"ПЮГДГЕК /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
+"бШ БШАПЮКi RAID ПЮГДГЕК ЪЙ ЙЮПЩММШ.\n"
+"мЪЛЮ ГЮЦПСГЪШЙЮ, ЪЙi А ГЮЦПСГi╒ЯЪ АЕГ /boot ПЮГДГЕКЮ.\n"
+"дЮДЮИЖЕ ПЮГДЕК /boot, ЙЮКi КЮЯЙЮ."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
-msgstr "бШЙЮПШЯРНБЮБЮИЖЕ ``%s'' "
+msgstr "бШЙЮПШЯРН╒БЮИЖЕ ``%s'' ГЮЛЕЯР"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "яОЮВЮРЙС ГПЮАiЖЕ ``Unmount''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
+#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "СЯЕ ДЮДГЕМШЕ С ЦЩРШЛ ПЮГДГЕКЕ АСДСЖЭ ЯРПЮВЮМШ"
+msgstr "сЯЕ ДЮДГЕМШЪ ╒ ПЮГДГЕКЕ %s АСДСЖЭ ЯРПЮВЮМШ ОЮЯКЪ ГЛЕМШ ЪЦН РШОЮ"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "яЮОПЮ╒ДШ ОПЮЖЪЦМСЖЭ?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "бШИЯЖi АЕГ ГЮУН╒БЮММЪ"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "бШИЯЖi АЕГ ГЮОiЯС РЮАКiЖШ ПЮГДГЕКЮ╒"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "гЛЪМiЖЭ РШО ПЮГДГЕКЮ"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "ъЙНИ РШО ПЮГДГЕКЮ БЮЛ ОЮРПЩАМШ?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "бШАЪПШЖЕ ЛНБС"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
+msgstr "бШ МЕ ЛНФЮЖЕ ПЮГАiБЮЖЭ МЮ ПЮГДЕКШ, ОЮЛЕП ЪЙiУ ЛЕМЕИ ГЮ 32 лА"
-#: ../../diskdrake.pm_.c:484
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:490
+#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "йСДШ БШ ФЮДЮЕЖЕ ГЛЮМЖiПЮБЮЖЭ СЯРПНИЯРБЮ %s?"
+msgstr "йСДШ БШ ФЮДЮЕЖЕ ГЛЮМЖiПЮБЮЖЭ БiПРСЮКЭМСЧ ОПШКЮДС %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "йСДШ БШ ФЮДЮЕЖЕ ГЛЮМЖiПЮБЮЖЭ СЯРПНИЯРБЮ %s?"
+msgstr "йСДШ БШ ФЮДЮЕЖЕ ГЛЮМЖiПЮБЮЖЭ ОПШКЮДС %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
+"мЕКЭЦЮ ╒ЯРЮКЪБЮЖЭ ЙПНОЙС ЛЮМЖiПЮБЮММЪ, РЮЛС ЬРН ПЮГДЕК БШЙЮПШЯРН╒БЮЕЖЖЮ ДКЪ\n"
+"БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ.\n"
+"яОЮВЮРЙС БШДЮКiЖЕ БiПРСЮКЭМСЧ ЯiЯРЩЛС"
-#: ../../diskdrake.pm_.c:509
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:515
+#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "СЯЕ ДЮДГЕМШЕ С ЦЩРШЛ ПЮГДГЕКЕ АСДСЖЭ ЯРПЮВЮМШ"
+msgstr "сЯЕ ДЮДГЕМШЕ ╒ ПЮГДГЕКЕ %s АСДСЖЭ ЯРПЮВЮМШ ОЮЯКЪ ТЮПЛЮЖ╒ПЮБЮММЪ"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "тЮПЛЮЖiПЮБЮММЕ"
-#: ../../diskdrake.pm_.c:512
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:518
+#, c-format
msgid "Formatting loopback file %s"
-msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ╒ %s"
+msgstr "тЮПЛЮЖiПЮБЮММЕ БiПРСЮКЭМЮЦЮ ПЮГДГЕКЮ %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
-msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ╒ %s"
+msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
-msgstr "оЮЯКЪ ТЮПЛЮЖiПЮБЮММЪ ╒ЯiУ ПЮГДГЕКЮ╒"
+msgstr "оЮЯКЪ ТЮПЛЮЖiПЮБЮММЪ ╒ЯiУ ПЮГДГЕКЮ╒,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
-msgstr "СЯЕ ДЮДГЕМШЪ С ЦЩРШУ ПЮГДГЕКЮУ АСДСЖЭ ЯРПЮВЮМШ"
+msgstr "СЯЕ ДЮДГЕМШЪ ╒ ЦЩРШУ ПЮГДГЕКЮУ АСДСЖЭ ЯРПЮВЮМШ"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "оЕПЮЛЪЬВЩММЕ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "мЮ ЪЙi ДШЯЙ ОЕПЮЛЪЯЖiЖЭ?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "яЕЙРЮП"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "мЮ ЪЙi ЯЕЙРЮП ОЕПЮЛЪЯЖiЖЭ?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "оЕПЮЛЪЬВЮЕЛ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "оЕПЮЛЪЬВЮЕЖЮ ПЮГДГЕК..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "рЮАКiЖЮ ПЮГЛЪЬВЩММЪ ╒ЯРПНИЯРБЮ %s АСДГЕ ГЮОiЯЮМЮ МЮ ДШЯЙ!"
+msgstr "рЮАКiЖЮ ПЮГЛЪЬВЩММЪ ОПШКЮДШ %s АСДГЕ ГЮОiЯЮМЮ МЮ ДШЯЙ!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "йЮА ГЛЪМЕММi ╒ЯРСОiКi ╒ ДГЕЪММЕ, МЕНАУНДМЮ ОЕПЮГЮЦПСГiЖЖЮ"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "бШКiВЩММЕ ЛЕФЮ╒ ТЮИКЮБЮИ ЯiЯРЩЛШ FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "гЛЪМЕММЕ ОЮЛЕПЮ╒"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "оЮЛЕПШ ЪЙНЦЮ ПЮГДГЕКЮ БШ ФЮДЮЕЖЕ ГЛЪМiЖЭ?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
-msgstr "СЯЕ ДЮДГЕМШЕ С ЦЩРШЛ ПЮГДГЕКЕ АСДСЖЭ ЯРПЮВЮМШ"
+msgstr "сЯЕ ДЮДГЕМШЪ ╒ ЦЩРШЛ ПЮГДГЕКЕ ОЮБiММШ АШЖЭ Г'ЮПУiБiПЮБЮМШ"
-#: ../../diskdrake.pm_.c:588
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:599
+#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "СЯЕ ДЮДГЕМШЕ С ЦЩРШЛ ПЮГДГЕКЕ АСДСЖЭ ЯРПЮВЮМШ"
+msgstr "сЯЕ ДЮДГЕМШЪ ╒ ПЮГДГЕКЕ %s АСДСЖЭ ЯРПЮВЮМШ"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "бШАЮП МНБШУ ОЮЛЕПЮ╒"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
-msgstr "MB"
+msgstr "лА"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "яРБЮПЩММЕ МНБЮЦЮ ПЮГДГЕКЮ"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "оЮВЮРЙНБШ ЯЕЙРЮП:"
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
-msgstr "оЮЛЕП С MB:"
+msgstr "оЮЛЕП С лА:"
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "рШО ТЮИКЮБЮИ ЯiЯРЩЛШ:"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
-msgstr "оЕПЮБЮЦi: "
+msgstr "оЮПЮЛЕРПШ: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
-msgstr ""
+msgstr "цЩРШ ПЮГДГЕК МЕ ЛНФЮ АШЖЭ БШЙЮПШЯРЮМШ ОЮД БiПРСЮКЭМСЧ ТЮИКЮБСЧ ЯiЯРЩЛС"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
-msgstr ""
+msgstr "бiПРСЮКЭМЮЪ ТЮИКЮБЮЪ ЯiЯРЩЛЮ (loopback)"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
-msgstr ""
+msgstr "IЛЪ БiПРСЮКЭМЮЦН ПЮГДГЕКЮ"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
+"тЮИК СФН БШЙЮПШЯРН╒БЮЕЖЖЮ iМЬЮИ БiПРСЮКЭМЮИ ЯiЯРЩЛЮИ. йЮКi КЮЯЙЮ, \n"
+"БШАЪПШЖЕ iМЬСЧ МЮГБС"
-#: ../../diskdrake.pm_.c:778
-#, fuzzy
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
-msgstr "оСМЙР %s СФН iЯМСЕ"
+msgstr "тЮИК СФН iЯМСЕ. бШЙЮПШЯРЮЖЭ ЪЦН?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
-msgstr "бШАЕПШЖЕ ТЮИК"
+msgstr "бШАЪПШЖЕ ТЮИК"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"пЩГЕПБМЮЪ РЮАКiЖЮ ПЮГЛЪЬВЩММЪ ДШЯЙЮ ЛЮЕ iМЬШ ОЮЛЕП\n"
+"рЮАКiЖЮ ПЮГЛЪЬВЩММЪ ПЩГЕПБНБЮЦЮ ДШЯЙЮ ЛЮЕ iМЬШ ОЮЛЕП\n"
"сЯ╦Ф-РЮЙi iЯЖi МЮОЕПЮД?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "сБЮЦЮ!"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1167,129 +1440,161 @@ msgstr ""
"сЯРЮ╒ЖЕ ДШЯЙЕРС ╒ ДШЯЙЮБНД\n"
"сЯЕ ДЮДГЕМШЪ МЮ ЦЩРЮИ ДШЯЙЕЖЕ АСДСЖЭ ЯРПЮВЮМШ"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "оЮЯОПЮАСЕЛ БШПЮРЮБЮЖЭ РЮАКiЖС ПЮГДГЕКЮ╒"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
-msgstr "СЯРПНИЯРБЮ:"
+msgstr "ОПШКЮДЮ"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "СГПНБЕМЭ"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "ОЮЛЕП АКНЙЮ"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
-msgstr "бШАЕПШЖЕ iЯМСЧВШ RAID ДКЪ ДЮАЮ╒КЕММЪ"
+msgstr "бШАЪПШЖЕ iЯМСЧВШ RAID ДКЪ ДЮАЮ╒КЕММЪ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "МНБШ"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ОЮЛШКЙЮ ТЮПЛЮЖiПЮБЮММЪ %s"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "мЕ БЕДЮЧ ЪЙ ЮДТЮПЛЮЖiПЮБЮЖЭ %s Г РШОНЛ %s"
-
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "ОЮЛШКЙЮ ЛЮМЖiПЮБЮММЪ nfs"
+msgstr "мЕ БЕДЮЧ ЪЙ ЮДТЮПЛЮЖiПЮБЮЖЭ %s Г РШОЮЛ %s"
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "ОЮЛШКЙЮ ЛЮМЖiПЮБЮММЪ: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "ОЮЛШКЙЮ ПЮГЛЮМЖiПЮБЮММЪ %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "оСМЙР ЛЮМЖiПЮБЮММЪ ОЮБiМЕМ ОЮВШМЮЖЖЮ Г /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
-msgstr "сФН ╦ЯРЭ ПЮГДГЕК Г ОСМЙРЮЛ ЛЮМЖiПЮБЮММЪ %s\n"
+msgstr "сФН ╦ЯЖЭ ПЮГДГЕК Г ОСМЙРЮЛ ЛЮМЖiПЮБЮММЪ %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
-msgstr ""
+msgstr "лЮМЖiПЮБЮММЕ ДШЯЙЮ %s\n"
+
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "цЩРШ ЙЮРЮКНЦ ОЮБЁМЕМ ГМЮУНДГЁЖЖЮ ╒МСРПШ ЙЮПЮМ╦БЮИ ТЮИКЮБЮИ ЯЁЯРЩЛШ"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
+"бЮЛ МЕЮАУНДМЮ ГЮДЮЖЭ ОПЮБiКЭМШ РШО ТЮИКЮБЮИ ЯiЯРЩЛШ (ext2, reiserfs)\n"
+"ДКЪ ЦЩРЮИ ЙПНОЙi ЛЮМЖiПЮБЮММЪ\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr "оЮЛШКЙЮ НДЙПШЖЖЪ %s ДКЪ ГЮОiЯС: %s"
+msgstr "оЮЛШКЙЮ ЮДЙПШЖЖЪ %s ДКЪ ГЮОiЯС: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"оЮЛШКЙЮ: ДКЪ ЯРБЮПЩММЪ МНБШУ ТЮИКЮБШУ ЯiЯРЩЛ МЕ МЮИДГЕМШ ЮДОЮБЕДМШЪ "
-"╒ЯРПНИЯРБШ. оПЮБЕПЖЕ ЮАЯРЮКЪБЮММЕ ДКЪ ОНЬСЙС iЛЮБЕПМЮИ ОПШВШМШ."
+"оЮЛШКЙЮ: ДКЪ ЯРБЮПЩММЪ МНБШУ ТЮИКЮБШУ ЯiЯРЩЛ МЕ ГМЮИДГЕМШ ЮДОЮБЕДМШЪ \n"
+"ОПШКЮДШ. оПЮБЕПЖЕ ЮАЯРЮКЪБЮММЕ ДКЪ ОНЬСЙС iЛЮБЕПМЮИ ОПШВШМШ."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "бШ МЕ ЯРБЮПШКi ЮМiЪЙiУ ПЮГДГЕКЮ╒!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "бШАЕПШЖЕ ЛНБС ╒ЯРЮМН╒Йi i ПЮАНРШ ЯiЯРЩЛШ"
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "бШАЪПШЖЕ ЛНБС ╒ЯРЮМН╒Йi i ПЮАНРШ ЯiЯРЩЛШ"
+
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "бШАЕПШЖЕ ПЮЯЙКЮДЙС ЯБЮ╦И ЙКЮБiЪРСПШ Г ОПШБЕДГЕМЮЦЮ ЯОiЯС"
+msgstr "бШАЪПШЖЕ ПЮЯЙКЮДЙС ЯБЮ╦И ЙКЮБiЪРСПШ Г ОПШБЕДГЕМЮЦЮ ЯОiЯС"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1297,488 +1602,908 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
+"бШАЪПШЖЕ: \n"
+"\n"
+" - оЮ БШАЮПС: цЩРШ ПЩФШЛ ПЩЙЮЛЕМДСЕЖЖЮ ╒ РШЛ БШОЮДЙС, ЙЮКi БШ ОПЮЖЮБЮКi \n"
+" ПЮМЕИ Г GNU/Linux, i ГЛНФЮЖЕ ЯЮЛi БШАПЮЖЭ МЕЮАУНДМШЪ\n"
+" ОЮЙЕРШ i ЮАЯРЮКЪБЮММЕ ДКЪ БЮЬЮЦЮ ЙЮЛОСРЮПЮ. цКЪДГiЖЕ МiФЩИ "
+"ОЮДПЮАЪГМЮЯЖЁ.\n"
+"\n"
+"\n"
+" - щЙЯОЕПР: бШАЮП ЦЩРЮЦЮ ПЩФШЛС ЯБЕДВШЖЭ, ЬРН БШ ЯБЮАНДМЮ БЮКНДЮЕЖЕ "
+"GNU/Linux\n"
+" i ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ БЕКЭЛi ДЩРЮК╦БСЧ ║ЯРЮК╦╒ЙС. ъЙ i ╒ БШОЮДЙС \n"
+" \"оЮ БШАЮПС\"БЮЛ ОЮРПЩАМЮ АСДГЕ БШАПЮЖЭ МЕЮАУНДМШЪ ОПЮЦПЮЛШ i \n"
+" ЮАЯРЮКЪБЮММЕ БЮЬЮЦЮ ЙЮЛОСРЮПЮ.\n"
+" йЮКi КЮЯЙЮ, ме бшаIпюиже цщрш пщфшл, йюкI ме ║ощ║мемш, ьрн пнаIже "
+"опюбIкэмю!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
+"пНГМШЪ РШОШ БШЙЮПШЯРН╒БЮММЪ БЮЬЮЦЮ ЙЮЛОСРЮПЮ (ЙЮКi, БШ БШАПЮКi РШО "
+"СЯРЮК╦╒Йi\n"
+" \"оЮ БШАЮПС\" ЮКЭАН \"щЙЯОЕПР\") МЮЯРСОМШЪ:\n"
+"\n"
+" - гБШВЮИМШ: БШАЪПШЖЕ ЦЩРШ РШО, ЙЮКi БЮЬ ЙЮЛОСРЮП АСДГЕ БШЙЮПШЯРН╒БЮЖЖЮ "
+"ДКЪ\n"
+" НТiЯМЮИ ОПЮЖШ (МЮАНПС РЩЙЯРЮ╒, ЦПЮТiЙi i ЦЩРЮЙ ДЮКЕИ). лЮИЖЕ МЮ ╒БЮГЕ,\n"
+" ЬРН ╒ РЮЙiЛ БШОЮДЙС МЕ АСДСЖЭ СЯРЮКЪБЮМШ Мi ЮДГiМ Г ЙЮЛОiКЪРЮПЮ╒, "
+"ЯПНДЙЮ╒\n"
+" ПЮЯОПЮЖН╒Йi i ЦЩРЮЙ ДЮКЕИ.\n"
+"\n"
+" - дКЪ ПЮЯОПЮЖН╒Йi: ЯЮЛЮ МЮГБЮ ЬЛЮР ЬРН ╒ФН ЦЮБНПШЖЭ. бШАЪПШЖЕ ЦЩРШ РШО,\n"
+" ЙЮКi ЙЮЛОСРЮП АСДГЕ БШЙЮПШЯРН╒БЮЖЖЮ ДКЪ ПЮЯОПЮЖНБЮЙ ОПЮЦПЮЛ. с ЦЩРШЛ\n"
+" БШОЮДЙС ╒ БЮЯ АСДГЕ ОН╒МЮЪ ЙЮКЕЙЖШЪ ЯПНДЙЮ╒ ДКЪ ЙЮЛОiКЪЖШi, ОПЮБЕПЙi "
+"ЙНДЮ,\n"
+" ТЮПЛЮЖiПЮБЮММЪ ГШУНДМЮЦЮ ЙНДЮ ЮКЭАН МЮОiЯЮММЪ ОЮЙЕРЮ╒ ОПЮЦПЮЛ.\n"
+"\n"
+" - яЕПБЕП: БШАЪПШЖЕ ЦЩРШ РШО, ЙЮКi ЛЮЬШМЮ, МЮ ЪЙСЧ АСДГЕ ╒ЯРЮКЪБЮМШ "
+"Linux-Mandrake,\n"
+" АСДГЕ БШЙЮПШЯРН╒БЮЖЖЮ ЪЙ ЯЕПБЕП. мЮОПШЙКЮД, ЪЙ ТЮИКЮБШ ЯЕПБЕП (NFS ЮКЭАН "
+"SMB),\n"
+" ЯЕПБЕП ДПСЙС (ДПСЙ ЛНФЮ АШЖЭ ГЮАЪЯОЕВЮМШ ГЮ ЙНЬР ОПЮРЮЙНКЮ UNIX lp (Line "
+"Printer) Жi SMB),\n"
+" ЯЕПБЕП ПЩЦiЯРПЮЖШi ЙЮПШЯРЮКЭМiЙЮ╒ (NIS), ЯЕПБЕП АЮГ ДЮДГЕМШУ i Ц.Д.\n"
+" с РЮЙiЛ БШОЮДЙС ЦПЮТiВМШЪ ЯiЯРЩЛШ РШОЮ KDE, GNOME i Ц.Д. СЯРЮКЪБЮМШ МЕ "
+"АСДСЖЭ.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX ЯОЮВЮРЙС ОЮЯОПЮАСЕ ГМЮИЖi ЮДГiМ Жi МЕЙЮКЭЙi ЮДЮОРЩПЮ╒ PCI\n"
-"i SCSI. йЮКi ЮДЮОРЩП ГМНИДГЕМ, i DrakX БЪДНЛЮ, ЪЙi ДПЮИБЕП\n"
-"ДКЪ ЪЦН ОЮРПЩАМШ, ЦЩРЮЪ ОПШКЮДЮ АСДГЕ ОЮДЙКЧВЮМЮ Ю╒РЮЛЮРШВМЮ.\n"
+"DrakX АСДГЕ ЯОПЮАЮБЮЖЭ БШГМЮВШЖЭ PCI SCSI ЮДЮОРЮП(Ш).\n"
+"йЮКi DrakX ГМНИДГЕ SCSI ЮДЮОРЮП i АСДГЕ БЕДЮЖЭ ЮДОЮБЕДМШ ДКЪ ЪЦН ДПЮИБЕП, "
+"РН\n"
+"Ю╒РЮЛЮРШВМЮ ╒ЯРЮКЧЕ ЪЦН (iУ) ╒ ЯiЯРЩЛС.\n"
"\n"
-"йЮКi БШ ЛЮЕЖЕ SCSI ЮДЮОРЩП МЮ ISA-, ЮКЭАН PCI-ЙЮПЖЕ, ЮКЕ DrakX МЕ БЕДЮЕ\n"
-"ЪЙi ДПЮИБЕП ЯЙЮПШЯРЮЖЭ Г ЦЩРЮИ ЙЮПРЮИ, Жi DrakX КХВШЖЭ, ЬРН БШ МЕ ЛЮЕЖЕ\n"
-"SCSI ЮДЮОРЩПЮ╒ МЮБНЦСК, С БЮЯ ГЮОШРЮЧЖЭ, Жi ╦ЯЖЭ ╦М С БЮЯ ЮКЭАН МЕ.\n"
-"йЮКi ╒ БЮЯ ЪЦН МЕЛЮ, ЮДЙЮГБЮИЖЕ \"мЕ\". йЮКi ╦ЯРЭ ЮДГiМ Жi МЕЙЮКЭЙi,\n"
-"ЮДЙЮГБЮИЖЕ \"дЮ\". оЮЯКЪ ЦЩРЮЦЮ Г'ЪБiЖЖЮ ЯОiЯ ДПЮИБЕПЮ╒, Г ЪЙiУ БЮЛ\n"
-"ОЮРПЩАМЮ АСДГЕ БШАПЮЖЭ ОЮДШУНДГЪВШ.\n"
+"йЮКi БШ ЛЮЕЖЕ МЕ SCSI ЮДЮОРЮП, ISA SCSI ЮДЮОРЮП ЮКЭАН \n"
+"PCI SCSI ЮДЮОРЮП, ЪЙi DrakX МЕ ЛНФЮ БШГМЮВШЖЭ, С БЮЯ ГЮОШРЮЧЖЖЮ, Жi\n"
+"╦ЯЖЭ ЪЙi SCSI ЮДЮОРЮП С БЮЬЮИ ЯiЯРЩЛЕ. йЮКi РЮЙНЦЮ ЮДЮОРЮПЮ МЪЛЮ,\n"
+"БШ ЛНФЮЖЕ МЮЖiЯМСЖЭ МЮ 'мЕ'. йЮКi БШ БШАЪПШЖЕ 'рЮЙ', ЯОiЯ ДПЮИБЕПЮ╒ АСДГЕ\n"
+"БЮЛ ОПЮДЯРЮ╒КЕМШ i Г ЪЙНЦЮ БШ ЛНФЮЖЕ БШАПЮЖЭ БЮЬ ЯОЕЖШТiВМШ ЮДЮОРЮП.\n"
"\n"
-"оЮЯКЪ БШАЮПС ДПЮИБЕПЮ, DrakX ГЮОШРЮЕ, Жi МЕ ФЮДЮЕЖЕ БШ ГЮДЮЖЭ\n"
-"ДКЪ ЪЦН ДЮДЮРЙНБШЪ МЮЯРПНИЙi. яОЮВЮРЙС МЪУЮИ ДПЮИБЕП ОПЮБЕПШЖЭ "
-"ЮАЯРЮКЪБЮММЕ:\n"
-"ГБШВЮИМЮ ╒Я╦ ОПЮЖСЕ ДНАПЮ.\n"
"\n"
-"с ЮДБЮПНРМШЛ БШОЮДЙС, МЕ ГЮАШБЮИЖЕ ОПЮ iМТЮПЛЮЖШЧ ЮА ЮАЯРЮКЪБЮММi, ЪЙСЧ\n"
-"ЛНФМЮ ЮРПШЛЮЖЭ ЮД Windows (ЙЮКi ЪМЮ ОПШЯСРМiВЮЕ ╒ БЮЬЮИ ЯiЯРЩЛЕ), Ю РЮЙЯЮЛЮ\n"
-"ОПЮ ДЮОЮЛНФМiЙ ОЮ ╒ЯРЮМН╒ЙЕ ЦЩРЮИ ОПШКЮДШ. ъМШ ГЛЪЬВЮЧЖЭ РШЪ МЮЯРПНИЙi, "
-"ЪЙiЪ\n"
-"МЕЮАУНДМЮ ГЮДЮЖЭ ДПЮИБЕПС."
+"йЮКi БШ БШАПЮКi БЮЬ ЯОЕЖШТiВМШ ЮДЮОРЮП ЯЮЛЮЯРНИМЮ, DrakX АСДГЕ\n"
+"ГЮОШРБЮЖЖЮ ОПЮ ОЮПЮЛЕРПШ, ЪЙiЪ БШ ФЮДЮЕЖЕ БШГМЮВШЖЭ ДКЪ ЪЦН. бЮЛ\n"
+"МЕЮАУНДМЮ ДЮГБНКiЖЭ DrakX ОЮЯОПЮАЮБЮЖЭ БШГМЮВШЖЭ ЦЩРШЪ ОЮПЮЛЕРПШ.\n"
+"гБШВЮИМЮ ╒Я╦ ЛНФЮ ОПЮИЯЖi ДНАПЮ.\n"
+"\n"
+"йЮКi МЕ ЮРПШЛЮКЮЯЪ, БЮЛ МЕЮАУНДМЮ ОЮГМЮВШЖЭ ЯЮЛЮЛС ЦЩРШЪ ОЮПЮЛЕРПШ.\n"
+"дЮБЕДЮЖЖЮ ОПЮ ЛЮЦВШЛШЪ ОЮПЮЛЕРПШ ДКЪ БЮЬЮЦЮ ЮДЮОРЮПЮ БШ ЛНФЮЖЕ,\n"
+"ОПЮЦКЕДГЕ╒ ЮДОЮБЕДМШЪ МЮЯРПНИЙi ДКЪ ЪЦН ╒ Windows (ЙЮКi ЦЩРЮЪ ЯiЯРЩЛЮ ╒ БЮЯ\n"
+"СЯРЮКЪБЮМЮ), РЩУМiВМСЧ ДЮЙСЛЕМРЮЖШЧ ЮКЭАН МЮБЕДЮ╒ web БСГЕК БШРБНПЖШ (ЙЮКi\n"
+"ЛЮЕЖЕ ДНЯРСО ДЮ Internet)."
-#: ../../help.pm_.c:94
-#, fuzzy
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
-msgstr ""
-"гЮПЮГ ЛНФМЮ БШГМЮВШЖЭ, ЪЙiЪ ПЮГДГЕКШ БШЙЮПШЯРН╒БЮЖЭ ДКЪ ╒ЯРЮМН╒Йi\n"
-"БЮЬЮИ ЯiЯРЩЛШ Linux-Mandrake, ЙЮКi ЪМШ ╒ФН АШКi ГЮДЮДГЕМШ (ОПШ ОЮОЪПЩДМЪИ\n"
-"СЯРЮМН╒ЙЕ Linux ЮКЭАН iМЬЮИ ОПЮЖЩДСПЮИ ПЮГАiЕММЪ). с iМЬШУ БШОЮДЙЮУ\n"
-"ПЮГДГЕКШ ФНПЯРЙЮЦЮ ДШЯЙЮ ОЮБiММШ АШЖЭ ОЮГМЮВЮМШ. цЩРЮ ЮОЕПЮЖШЪ ЯЙКЮДЮЕЖЖЮ Г\n"
-"КЮЦiВМЮЦЮ ПЮГАiЖЖЪ ДШЯЙЮБЮИ ОПЮЯРНПШ ЙЮЛО'ЧРЮПЮ МЮ МЕЙЮКЭЙi\n"
-"ЮАКЮЯЖЕИ БШЙЮПШЯРЮММЪ.\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
"\n"
-"дБЮ ГБШВЮИМШЪ ПЮГДГЕКШ МЮЯРСОМШЪ: ЙЮПЩММШ ПЮГДГЕК (/), ЪЙi Г'Ъ╒КЪЕЖЖЮ "
-"ОЮВЮРЙНБШЛ\n"
-"ОСМЙРЮЛ iЕПЮПУii ЙЮРЮКЮЦЮ╒ ТЮИКЮБЮИ ЯiЯРЩЛШ, i /boot, ЪЙi ГЛЪЬВЮЕ ╒ЯЕ\n"
-"ТЮИКШ, МЕЮАУНДМШЪ ДКЪ ГЮОСЯЙЮ ЮОЕПЮЖШИМЮИ ЯiЯРЩЛШ ОПШ ╒ЙКЧВЩММi ЙЮЛО'ЧРЩПЮ.\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
"\n"
-"оЮЙНКЭЙi БШМiЙi ЦЩРЮЦЮ ОПЮЖЩЯЮ ГБШВЮИМЮ МЕГБЮПНРМШ, ПЮГАiЕММЕ МЮ ПЮГДГЕКШ\n"
-"ЛНФЮ МЮОЮКНУЮЖЭ МЮБiВЙЮ. DiskDrake ЯОПЮЬВЮЕ ЦЩРШ ОПЮЖЩЯ, РЮЛС МЮОПСФЮММЕ\n"
-"ОЮБiММЮ ГМiЛЮЖЖЮ. оЮЦКЪДГiЖЕ ДЮЙСЛЕМРЮЖШЧ i ОЮДПШУРСИЖЕЯЪ ЮДПЮГС."
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:160
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"сЯЕ БШГМЮВЩМШЪ ПЮГДГЕКШ ОЮБiММШ АШЖЭ ЮДТЮПЛЮЖiПЮБЮМШ ДКЪ БШЙЮПШЯРЮММЪ\n"
-"(ТЮПЛЮЖiПЮБЮММЕ ГМЮВШЖЭ ЯРБЮПЩММЕ ТЮИКЮБЮИ ЯiЯРЩЛШ). с ЦЩРЮИ ЯiРСЮЖШi\n"
-"ЛНФМЮ ОЕПЮТЮПЛЮЖiПЮБЮЖЭ СФН iЯМСЧВШЪ ПЮГДГЕКШ ДГЕКЪ ГМiЬВЩММЪ ДЮДГЕМШУ,\n"
-"ЪЙiЪ ГМЮУНДГЪЖЖЮ МЮ iУ. гЮ╒БЮЦЮ: ТЮПЛЮЖiПЮБЮЖЭ iЯМСЧВШЪ ПЮГДГЕКШ МЕ "
-"ЮАЮБЪГЙНБЮ,\n"
-"ЮЯЮАКiБЮ ЙЮКi ЪМШ ГЛЪЬВЮЧЖЭ ТЮИКШ i ДЮДГЕМШЪ, ЪЙiЪ БШ ФЮДЮЕЖЕ ГЮУЮБЮЖЭ.\n"
-"гБШВЮИМЮ ГЮУН╒БЮЧЖЭ /home i /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:218
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:252
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:257
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"гЮПЮГ ОЮВМЕЖЖЮ ╒ЯРЮМН╒ЙЮ БШАПЮМШУ ОЮЙЕРЮ╒. цЩРЮЪ ЮОЕПЮЖШЪ ЮДШЛЕ\n"
-"МЕЙЮКЭЙi УБiКiМ ВЮЯС, ЙЮКi БШ МЕ БШАПЮКi ЮАМЮ╒КЕММЕ iЯМСЧВЮИ ЯiЯРЩЛШ,\n"
-"С ЮОНЬМiЛ БШОЮДЙС ЬЛЮР ВЮЯС ОЮРПЮАСЕЖЖЮ ЪЬВЩ ДЮ ОЮВЮРЙС ЮАМЮ╒КЕММЪ\n"
-"ДКЪ ЮМЮКiГС ЯiЯРЩЛШ."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:267
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"йЮКi DrakX ОПЮБiКЭМЮ ГМЮИЬН╒ БЮЬС ЛШЬ, ОПНЯРЮ БШАЕПШЖЕ Г ЛЕМЧ\n"
-"iМЬШ ОСМЙР. с ОПНЖiКЕЦКШЛ БШОЮДЙС БШАЕПШЖЕ ОЮДШУНДГЪВШ БЮПШЪМР\n"
-"ДПЮИБЕПС ЛШЬШ Г ЯОiЯС БШЬЩИ.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
"\n"
-"с БШОЮДЙС ЛШЬШ, ЪЙЮЪ ОЮДЙКЧВЮМЮ ДЮ ОЮЯКЪДН╒МЮЦЮ ОНПРС, БЮЛ ОЮРПЮАСЕЖЖЮ "
-"ДЮДЮЖЭ DrakX\n"
-"ОПЮБiКЭМШ МСЛЮП ОЮЯКЪДН╒МЮЦЮ ОНПРС, ДЮ ЪЙНЦЮ ЪМЮ ОЮДЙКЧВЮМЮ."
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
-#: ../../help.pm_.c:176
-msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"оПЮБiКЭМЮ БШАЕПШЖЕ ОНПР. мЮОПШЙКЮД, ОНПР COM1 ╒ MS Windows\n"
-"С Linux ЛЮЕ МЮГБС ttyS0."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:303
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
+#, fuzzy
+msgid ""
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-"цЩРШ ПЮГДГЕК ОПШЯБЕВЮМШ МЮЯРПНИЙЕ КЮЙЮКЭМЮИ ЯЕРЙi,\n"
-"(LAN), ЮКЭАН ЛЮДЩЛЮ. \n"
+"жЪОЕП БШ ЛНФЮЖЕ БШГМЮВШЖЭ ЦПСОС ОЮЙЕРЮ╒, ЪЙiЪ БШ ФЮДЮЕЖЕ\n"
+"╒ЯРЮКЪБЮЖЭ Жi ЮАМЮБiЖЭ.\n"
+"\n"
+"DrakX ОНРШЛ ОЮЯОПЮАСЕ БШГМЮВШЖЭ, Жi ЛЮЕЖЕ БШ ДЮЯРЙНБЮ ЛЕЯЖЮ ДКЪ iУ "
+"СЯРЮК╦╒Йi.йЮКi МЕ,\n"
+"БШ АСДГЕЖЕ ЮАБЕЬВЮМШ ЮА ЦЩРШЛ. йЮКi БШ ФЮДЮЕЖЕ ОПЮДН╒ФШЖЭ СЯРЮК╦╒ЙС ╒ КЧАШЛ "
+"БШОЮДЙС,\n"
+"ВЮЯРЙЮ МЕ ЬЛЮР ГМЮВМШУ ОЮЙЕРЮ╒ Г ЮАПЮМШУ МЕ АСДГЕ ╒ЯРЮКЪБЮМЮ. с МiГЕ ЯОiЯС\n"
+"БШ ЛНФЮЖЕ ОЮГМЮВШЖЭ \"юЯЮАiЯРШ БШАЮП ОЮЙЕРЮ╒\". с РЮЙiЛ БШОЮДЙС\n"
+"БШ ГЛНФЮЖЕ ОПЮЦКЕДГЕЖЭ АНКЕИ ВШЛ ГЮ 1000 ОЮЙЕРЮ╒..."
+
+#: ../../help.pm_.c:341
+msgid ""
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"бШАЕПШЖЕ \"кЮЙЮКЭМЮЪ ЯЕРЙЮ\" i DrakX ОЮЯОПЮАСЕ ГМЮИЖi\n"
-"МЮ БЮЬЮИ ЛЮЬШМЕ ЮДЮОРЩП Ethernet. юДЮОРЩПШ PCI ОЮБiММШ АШЖЭ ГМНИДГЕМШ\n"
-"i МЮЯРПНЕМШ Ю╒РЮЛЮРШВМЮ. юДМЮЙ, ОПШ ЯЙЮПШЯРЮММi ISA,\n"
-"Ю╒РЮГМЮУНДФЮММЕ МЕ ОПЮЖСЕ, i БЮЛ ОПШИДГЕЖЖЮ БШАiПЮЖЭ ДПЮИБЕП\n"
-"Г ЯОiЯЮ, ЪЙi Г'ЪБiЖЖЮ ОЕПЮД БЮВШЛЮ ╒ ЦЩРШЛ БШОЮДЙС.\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"йЮКi БШ ЛЮЕЖЕ ╒ЯЕ CD ДШЯЙi ЯЮ ЯОiЯЮ БШЬЩИ, РН МЮЖiЯМiЖЕ МЮ OЙ.\n"
+"йЮКi МЕ ЛЮЕЖЕ Мi ЮДМЮЦН Г ЦЩРШУ CD ДШЯЙЮ╒, ДШЙ МЮЖiЯМiЖЕ юДЛЪМiЖЭ.\n"
+"йЮКi МЕЙЮРНПШЪ Г CD ДШЯЙi ЯРПЮВЮМШ, ЮДЛЪМiЖЕ iУ ОЮГМЮВЩММЕ i МЮЖiЯМiЖЕ МЮ нk."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"ъЙ i ДКЪ ЮДЮОРЩПЮ╒ SCSI, БШ ЛНФЮЖЕ ДЮГБНКiЖЭ ДПЮИБЕПС ОПЮБЕПШЖЭ\n"
-"ОПШКЮДС ЯЮЛЮЯРНИМЮ, iМЮЙЬ ОПШИДГЕЖЖЮ ГЮДЮБЮЖЭ ДПЮИБЕПС МЮЯРПНИЙi,\n"
-"ЪЙiЪ БШ ГМНИДГЕЖЖЕ ╒ ДЮЙСЛЕМРЮЖШi ОЮ БЮЬЮЛС ЮАЯРЮКЪБЮММЧ.\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+#, fuzzy
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"оПЮБiКЭМЮ БШАЪПШЖЕ ОНПР. мЮОПШЙКЮД, ОНПР COM1 ╒ MS Windows\n"
+"С Linux ЛЮЕ МЮГБС ttyS0."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"оПШ ╒ЯРЮМН╒ЙЕ Linux-Mandrake МЮ ЙНЛО'ЧРЮП, ЪЙi ОПЮЖСЕ БЮ ╒ФН\n"
-"МЮКЮДФЮМЮИ ЯЕРЖШ, ЮДЛiМiЯРПЮРЮПС ЯЕРЙi ОПШИДГЕЖЖЮ ОПЮДЯРЮБiЖЭ\n"
-"БЮЛ СЯЧ МЕЮАУНДМСЧ iМТЮПЛЮЖШЧ (IP ЮДПЮЯ, ЛЮЯЙЮ ОЮДЯЕРЙi\n"
-"Жi ЯЙЮПНВЮМЮ ОЮДЛЮЯЙЮ, i iЛЪ УЮЯРЮ). йЮКi БШ ЯРБЮПЮЕЖЕ\n"
-"ОПШБЮРМСЧ ЯЕРЙС, МЮОПШЙКЮД ДНЛЮ, БШ ОЮБiММШ БШАПЮЖЭ\n"
-"СЯЕ МЮЯРПНИЙi ЯЮЛЮЯРНИМЮ.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"бШАЕПШЖЕ \"оЮДЙКЧВЩММЕ ОПЮГ ЛЮДЩЛ\" ДКЪ МЮЯРПНИЙi ОЮДЙКЧВЩММЪ\n"
-"ДЮ ЯСЯБЕРМЮИ ЦКЮАЮКЭМЮИ ЯЕРЙi Internet ОПЮГ ЛЮДЩЛ. DrakX ОЮЯОПЮАСЕ\n"
-"ГМЮИЯЖi БЮЬ ЛЮДЩЛ, ЮКЕ ЙЮКi ╒ ЪЦН ЦЩРЮ МЕ ЮРПШЛЮЕЖЖЮ, БЮЛ АСДГЕ\n"
-"ОЮРПЩАМЮ ЯЮЛЮЯРНИМЮ БШАПЮЖЭ ЯЕПШИМШ ОНПР, ДЮ ЪЙНЦЮ ОЮДЙКЧВЮМШ ЛЮДЩЛ."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"гЮПЮГ ЛНФМЮ ╒БЕЯЖi ОЮПЮЛЕРПШ ГКСВЩММЪ ОПЮГ ЛЮДЩЛ (dialup). йЮКi БШ\n"
+"МЕ БЕДЮЕЖЕ, ЬРН ОЮРПЩАМЮ ОiЯЮЖЭ,\n"
+"ОЮЯОПЮАСИЖЕ ЮРПШЛЮЖЭ ДЮЙКЮДМСЧ iМТЮПЛЮЖШЧ ╒ ЯБЮИЦН ОПЮБЮИДЩПЮ Internet (ISP)."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"сЙЮФiРЕ:\n"
+"оЮГМЮВЖЕ:\n"
"\n"
-" - IP ЮДПЮЯ: ЙЮКХ БШ ЪЦН МЕ БЕДЮЕЖЕ, ГЮОШРЮИЖЕ ЯiЯРЩЛМЮЦЮ ЮДЛiМiЯРПЮРЮПЮ.\n"
+" - IP ЮДПЮЯ: ЙЮКi БШ ЪЦН МЕ БЕДЮЕЖЕ, ГЮОШРЮИЖЕ ЯiЯРЩЛМЮЦЮ ЮДЛiМiЯРПЮРЮПЮ.\n"
"\n"
"\n"
" - лЮЯЙЮ ЯЕРЙi: \"255.255.255.0\" ГБШВЮИМЮ Г'Ъ╒КЪЕЖЖЮ МЕАКЮЦiЛ БШАЮПЮЛ.\n"
-"йЮКi БШ МЕ ╒ОЩ╒МЕМШ, ГЮОШРЮИЖЕ ЯiЯРЕЛМНЦН ЮДЛiМiЯРПЮРЮПЮ.\n"
+"йЮКi БШ МЕ ╒ОЩ╒МЕМШ, ГЮОШРЮИЖЕ ЯiЯРЕЛМЮЦЮ ЮДЛiМiЯРПЮРЮПЮ Жi ОПЮБЮИДЩПЮ.\n"
"\n"
"\n"
-" - ю╒РЮ IP: ЙЮКi ╒ БЮЬЮИ ЯЕРЙЕ БШЙЮПШЯРН╒БЮЧЖЖЮ ОПЮРЮЙНКШ bootp ЮКЭАН "
+" - ю╒РЮ IP: ЙЮКi ╒ БЮЬЮИ ЯЕРЖШ БШЙЮПШЯРН╒БЮЧЖЖЮ ОПЮРЮЙНКШ bootp ЮКЭАН "
"dhcp,\n"
-"БШАЕПШЖЕ ЦЩРЮ БЮПШЮМР. с ЦЩРШЛ БШОЮДЙС ГЮДЮБЮЖЭ \"IP ЮДПЮЯ\" МЕОЮРПЩАМЮ. \n"
-"йЮКi БШ МЕ ╒ОЩ╒МЕМШ, ГЮОШРЮИЖЕ ЯiЯРЕЛМЮЦЮ ЮДЛiМiЯРПЮРЮПЮ.\n"
+"БШАЪПШЖЕ ЦЩРЮ БЮПШЪМР. с ЦЩРШЛ БШОЮДЙС ГЮДЮБЮЖЭ \"IP ЮДПЮЯ\" МЕОЮРПЩАМЮ. \n"
+"йЮКi БШ МЕ ╒ОЩ╒МЕМШ, ГЮОШРЮИЖЕ ЯiЯРЕЛМЮЦЮ ЮДЛiМiЯРПЮРЮПЮ Жi ОПЮБЮИДЩПЮ.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"йЮКi ╒ БЮЬЮИ ЯЕРЖШ ЯЙЮПШЯРН╒БЮЕЖЖЮ NIS, БШАЪПШЖЕ \"яЙЮПШЯРН╒БЮЖЭ NIS\". йЮКi "
+"\n"
+"МЕ БЕДЮЕЖЕ, ГЮОШРЮИЖЕ ЮДЛiМiЯРПЮРЮПЮ ЯЕРЙi."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-"гЮПЮГ ЛНФМЮ ╒БЕЯЖi ОЮПЮЛЕРПШ dialup. йЮКi БШ МЕ БЕДЮЕЖЕ, ЬРН ОЮРПЩАМЮ "
-"ОiЯЮЖЭ,\n"
+"гЮПЮГ ЛНФМЮ ╒БЕЯЖi ОЮПЮЛЕРПШ ГКСВЩММЪ ОПЮГ ЛЮДЩЛ (dialup). йЮКi БШ\n"
+"МЕ БЕДЮЕЖЕ, ЬРН ОЮРПЩАМЮ ОiЯЮЖЭ,\n"
"ОЮЯОПЮАСИЖЕ ЮРПШЛЮЖЭ ДЮЙКЮДМСЧ iМТЮПЛЮЖШЧ ╒ ЯБЮИЦН ОПЮБЮИДЩПЮ Internet (ISP)."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"йЮКi БШ ГАiПЮЕЖЕЯЭ БШЙЮПШЯРН╒БЮЖЭ proxy, iУ ЮДПЮЯШ ЛНФМЮ ╒БЕЯЖi ГЮПЮГ.\n"
+"йЮКi БШ ГАiПЮЕЖЕЯЪ БШЙЮПШЯРН╒БЮЖЭ proxy, iУ ЮДПЮЯШ ЛНФМЮ ╒БЕЯЖi ГЮПЮГ.\n"
"йЮКi БШ МЕ БЕДЮЕЖЕ, ЮА ВШЛ iДГЕ ПЮГЛНБЮ, ГБЪПМiЖЕЯЪ ДЮ ЮДЛiМiЯРПЮРЮПЮ\n"
"ЯЕРЙi Жi ДЮ Internet-ОПЮБЮИДЩПЮ."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"йЮКi ГКСВЩММЕ Г Internet МЮЯРПНЕМЮ ЙЮПЩЙРМЮ, ЛНФМЮ ╒ЯРЮМЮБiЖЭ "
"ЙПШОРЮЦПЮТiВМШ\n"
-"ОЮЙЕР. оЮ-ОЕПЬЮЕ, БШАЕПШЖЕ КЧЯРЩПЙЮ, Г ЪЙНЦЮ АСДГЕЖЕ АПЮЖЭ ОЮЙЕРШ i\n"
-"ОЮЯКЪ ЦЩРЮЦЮ БШАЕПШЖЕ ОЮЙЕРШ ДКЪ ╒ЯРЮМН╒Йi.\n"
+"ОЮЙЕР. оЮ-ОЕПЬЮЕ, БШАЪПШЖЕ КЧЯРЩПЙЮ, Г ЪЙНЦЮ АСДГЕЖЕ АПЮЖЭ ОЮЙЕРШ i\n"
+"ОЮЯКЪ ЦЩРЮЦЮ БШАЪПШЖЕ ОЮЙЕРШ ДКЪ ╒ЯРЮМН╒Йi.\n"
"\n"
"аСДГЭЖЕ ╒БЮФКiБШ: БШАiПЮЖЭ КЧЯРЩПЙЮ i ОЮЙЕРШ ОЮРПЩАМЮ Г СКiЙЮЛ "
-"ГЮЙНМЮДЮ╒ЯРБЮ\n"
+"ГЮЙЮМЮДЮ╒ЯРБЮ\n"
"БЮЬЮИ ЙПЮiМШ."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"гЮПЮГ БШАЕПШЖЕ ВЮЯЮБШ ОНЪЯ ГЦНДМЮ Г ЛЕЯЖЮЛ ЯБЮИЦН ОПЮФШБЮММЪ.\n"
+"гЮПЮГ БШАЪПШЖЕ ВЮЯЮБШ ОНЪЯ ГЦНДМЮ Г ЛЕЯЖЮЛ ЯБЮИЦН ОПЮФШБЮММЪ.\n"
"\n"
"\n"
-"Linux ОПЮЖСЕ Г ВЮЯЮЛ ОЮ цПШМБiВС (GMT) i ОЕПЮЙКЮДЮЕ ЪЦН ╒ ЛЕЯРМШ ВЮЯ\n"
-"ГЦНДМЮ Г БШАПЮМШЛ БЮЛi ВЮЯЮБШЛ ОНЪЯЮЛ."
+"GNU/Linux ОПЮЖСЕ Г ВЮЯЮЛ ОЮ цПШМБiВС (GMT) i ОЕПЮЙКЮДЮЕ ЪЦН ╒ ЛЪЯЖНБШ ВЮЯ\n"
+"ГЦНДМЮ Г ЮАПЮМШЛ БЮЛi ВЮЯЮБШЛ ОНЪЯЮЛ."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
+"гЮПЮГ БШ ЛНФЮЖЕ БШАПЮЖЭ ЯКСФАШ, ЪЙiЪ АСДСЖЭ ГЮОСЯЙЮЖЖЮ ОПШ ГЮЦПСГЖШ "
+"ЯiЯРЩЛШ.\n"
+"йЮКi ЙСПЯНП ЛШЬi МЮБЕЯЖi МЮ МЮГБС ЯКСФАШ, РН Г'ЪБiЖЖЮ ╒ЯОКШБЮЧВЮЪ ОЮДЙЮГЙЮ,\n"
+"ЪЙЮЪ ЮОiЯБЮЕ ПНКЧ ЦЩРЮИ ЯКСФАШ.\n"
+"оЮБНДГЭЖЕ ЯЪАЕ ЮЯЖЪПНФМЮ МЮ ЦЩРШЛ ЙПНЙС, ЮЯЮАКiБЮ ЙЮКi БШ ГАiПЮЕЖЕЯЪ ЯБЮЧ\n"
+"ЛЮЬШМС БШЙЮПШЯРН╒БЮЖЭ ЪЙ ЯЕПБЕП: С РЮЙiЛ БШОЮДЙС БШ ЛНФЮЖЕ ЮДЛЪМiЖЭ ЯРЮПР \n"
+"ЯКСФА, ЪЙiЪ БЮЛ МЕОЮРПЩАМШ."
-#: ../../help.pm_.c:257
-#, fuzzy
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux ЛНФЮ ПЮАНРЮЖЭ ЯЮ ЬЛЮРКiЙiЛi РШОЮЛi ДПСЙЮБЮКЭМШУ ОПШКЮД. йНФМШ Г ЦЩРШУ\n"
-"РШОЮ╒ ОЮРПЮАСЕ ПНГМШЪ ╒ЯРЮМН╒Йi.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"йЮКi БЮЬЮ ОПШКЮДЮ ДКЪ ДПСЙЮБЮММЪ ОЮДЙКЧВЮМЮ МЕОЮЯПЩДМЮ ДЮ ЦЩРЮЦЮ "
-"ЙЮЛО'ЧРЮПЮ,\n"
-"БШАЕПШЖЕ \"Local printer\". бЮЛ АСДГЕ ОЮРПЩАМЮ БШГМЮВШЖЭ, ДЮ ЪЙНЦЮ ОНПРЮ\n"
-"ОЮДЙКЧВЮМЮ ОПШКЮДЮ i БШАПЮЖЭ ОЮДШУНДГЪВШ ТiКЭРП.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"йЮКi БШ ФЮДЮЕЖЕ ЮРПШЛЮЖЭ ДНЯРСО ДЮ ОПШМРЩПС, ЪЙi ГМЮУНДГiЖЖЮ МЮ ЮДДЮКЕМЮИ\n"
-"ЛЮЬШМЕ Unix, МЕЮАУНДМЮ БШАПЮЖЭ \"юДДЮКЕМЮЪ ВЮПЦЮ lpd\". йЮА ОПШЛСЯiЖЭ ЪЦН\n"
-"ОПЮЖЮБЮЖЭ, iЛЪ i ОЮПНКЭ МЕ ОЮРПЩАМШ, ЮКЕ МЕЮАУНДМЮ БЕДЮЖЭ iЛЪ ВЮПЦi ДПСЙС\n"
-"МЮ ЦЩРЮЛ ЯЕПБЕПШ.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"дКЪ ДНЯРСОЮ ДЮ ОПШМРЩПС SMB (ЪЙi ГМЮУНДГiЖЖЮ МЮ ЮДДЮКЕМЮИ ЛЮЬШМЕ\n"
-"Windows 9x/NT/2000 Жi Unix Г ЯЕПБЕПЮЛ Samba), МЕЮАУНДМЮ БЕДЮЖЭ ЪЦН iЛЪ\n"
-"SMB (ЪЙНЕ ЛНФЮ МЕ ЯСОЮДЮЖЭ Г ЪЦН iЛЕМЕЛ С ЯЕРЙi TCP/IP), i, ЛЮЦВШЛЮ,\n"
-"ЪЦН IP ЮДПЮЯ i iЛЪ ЙЮПШЯРЮКЭМiЙЮ, ПЮАНВЮИ ЦПСОШ i ОЮПНКЭ ДНЯРСОЮ ДЮ\n"
-"ОПШМРЩПЮ, Ю РЮЙЯЮЛЮ iЛЪ ОПШМРЩПЮ. рНЕ Ф ЯЮЛЮЕ i ДКЪ ОПШМРЩПЮ\n"
-"NetWare, РНКЭЙi МЕ ОЮРПЮАСЕЖЖЮ iМТЮПЛЮЖШЪ ЮА ПЮАНВЮИ ЦПСОЕ."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
#, fuzzy
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
-"сБЕДГiЖЕ ОЮПНКЭ ЯСОЕПЙЮПШЯРЮКЭМiЙЮ (root) БЮЬЮИ ЯiЯРЩЛШ Linux-Mandrake.\n"
-"оЮПНКЭ МЕЮАУНДМЮ ╒БЕЯЖi ДБНИВШ, ЙЮА СОЩ╒МiЖЖЮ, ЬРН БШ МЕ ОЮЛШКiКiЯЭ.\n"
+"сБЪДГiЖЕ ОЮПНКЭ ЯСОЕПЙЮПШЯРЮКЭМiЙЮ (root) БЮЬЮИ ЯiЯРЩЛШ Linux-Mandrake.\n"
+"оЮПНКЭ МЕЮАУНДМЮ ╒БЕЯЖi ДБНИВШ, ЙЮА СОЩ╒МiЖЖЮ, ЬРН БШ МЕ ОЮЛШКiКiЯЪ.\n"
"\n"
"\n"
"Root - ЦЩРЮ ЮДЛiМiЯРПЮРЮП ЯiЯРЩЛШ, РНКЭЙi ЪЛС ДЮГБНКЕМЮ ГЛЪМЪЖЭ "
"ЙЮМТiЦСПЮЖШЧ\n"
-"ЯiЯРЩЛШ. оЮЯОПЮАСИЖЕ БЕКЭЛi ╒БЮФКiБЮ БШАiПЮЖЭ ОЮПНКЭ! \n"
+"ЯiЯРЩЛШ. DЕКЭЛi ╒БЮФКiБЮ БШАiПЮИЖЕ ОЮПНКЭ! \n"
"мЕКЕЦЮКЭМЮЕ БШЙЮПШЯРЮММЕ ЦЩРЮЦЮ ОЮПНКЪ ЛНФЮ АШЖЭ БШЙКЧВМЮ\n"
-"ЬЙНДМЮ ДКЪ ЖЩКЮЯМЮЯЖi ЯiЯРЩЛШ, ДКЪ ГМЮУНДЪЬВШУЯЪ ╒ МЕИ ДЮДГЕМШУ\n"
+"ЬЙНДМЮ ДКЪ ЖЩКЮЯМЮЯЖi ЯiЯРЩЛШ, ДКЪ ГМЮУНДЪВШУЯЪ ╒ ╦И ДЮДГЕМШУ\n"
"i ДКЪ iМЬШУ ГКСВЮММШУ Г ╦И ЯiЯРЩЛ. оЮПНКЭ ОЮБiМЕМ АШЖЭ ЯРБНПЮМШ Г ЯСЛЕЯi\n"
"ЮКТЮБiРМЮ-ЖШТПЮБШУ ЯiЛБЮКЮ╒ i ЛЕЖЭ ДЮ╒ФШМЧ МЕ ЛЕМЬ 8 КiРЮП. мiЙНКi МЕ "
"ГЮОiЯБЮИЖЕ\n"
-"ЪЦН!. с РНИ ФЮ ВЮЯ МЕ ПЮАiЖЕ ОЮПНКЭ ГЮМЮДРЮ ОПЮЖЪЦКШЛ ЮКЭАН ЯКНФМШЛ:\n"
+"ЪЦН!. с РНИ ФЮ ВЮЯ МЕ ПЮАiЖЕ ОЮПНКЭ ГЮМЮДРЮ ОПЮЖЪЦКШЛ ЮКЭАН ЯЙКЮДЮМШЛ:\n"
"╦М ОЮБiМЕМ ГЮОЮЛiМЮЖЖЮ АЕГ ЮЯЮАКiБЮЦЮ МЮОПСФЮММЪ."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"йЮА СГЛЮЖМiЖЭ АЪЯОЕЙС ЯiЯРЩЛШ, МЕЮАУНДМЮ БШАПЮЖЭ \"яЙЮПШЯРН╒БЮЖЭ ЯУЮБЮМШ "
-"ТЮИК\" \n"
-"i \"яЙЮПШЯРН╒БЮЖЭ ОЮПНКi MD5\"."
+"йЮА СГЛЮЖМiЖЭ АЪЯОЕЙС ЯiЯРЩЛШ, МЕЮАУНДМЮ БШАПЮЖЭ \"яЙЮПШЯРЮЖЭ ЯУЮБЮМШ "
+"ТЮИК\"\n"
+"i \"яЙЮПШЯРЮЖЭ ОЮПНКi MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"йЮКi ╒ БЮЬЮИ ЯЕРЙЕ ЯЙЮПШЯРН╒БЮЕЖЖЮ NIS, БШАЕПШЖЕ \"яЙЮПШЯРН╒БЮЖЭ NIS\". йЮКi "
+"йЮКi ╒ БЮЬЮИ ЯЕРЖШ ЯЙЮПШЯРН╒БЮЕЖЖЮ NIS, БШАЪПШЖЕ \"яЙЮПШЯРН╒БЮЖЭ NIS\". йЮКi "
"\n"
"МЕ БЕДЮЕЖЕ, ГЮОШРЮИЖЕ ЮДЛiМiЯРПЮРЮПЮ ЯЕРЙi."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1820,47 +2545,41 @@ msgstr ""
"ЪЙНЦЮ БШ ГЮПЮГ i ЯРБНПШЖЕ, Ю ╒БЮУНДГiЖЭ Г ОПЮБЮЛi root МЕЮАУНДМЮ РНКЭЙi\n"
"Г ЛЩРЮЛi ЮДЛiМiЯРПШПЮБЮММЪ i ЮАЯКСЦН╒БЮММЪ ЯiЯРЩЛШ."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"мЮЯРНИКiБЮ ПЩЙЮЛЕМДСЕЛ ЮДЙЮГЮЖЭ РСР \"дЮ\"! бНЯЭ МЮОПШЙКЮД, ЙЮКi БШ\n"
-"ОЕПЮ╒ЯРЮМНБiЖЕ Windows, ЪМЮ ОЕПЮГЮОiЬЮ ГЮЦПСГЮВМШ ЯЕЙРЮП.\n"
-"йЮКi БШ МЕ ЯРБЮПШКi ГЮЦПСГЮВМШ ДШЯЙ, БШ АНКЭЬ МЕ ГЛНФЮЖЕ ГЮЦПСГiЖЭ\n"
-"Linux!"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"мЕЮАУНДМЮ СЙЮГЮЖЭ, ДГЕ БШ ФЮДЮЕЖЕ ПЮГЛЕЯЖiЖЭ iМТЮПЛЮЖШЧ, ЪЙЮЪ МЕЮАУНДМЮ\n"
+"мЕЮАУНДМЮ ОЮГМЮВШЖЭ, ДГЕ БШ ФЮДЮЕЖЕ ПЮГЛЪЯЖiЖЭ iМТЮПЛЮЖШЧ, ЪЙЮЪ МЕЮАУНДМЮ\n"
"ДКЪ ГЮЦПСГЙi Linux.\n"
"\n"
"\n"
-"йЮКi БШ МЕ ОПЮДЯРЮ╒КЪЕЖЕ ЮАЯЮКЧРМЮ ДЮЙКЮДМЮ, ЬРН БШ ПНАiЖЕ, \n"
-"БШАЕПШЖЕ \"оЕПЬШ ЯЕЙРЮП МЮ ДШЯЙЕ (MBR)\"."
+"йЮКi БШ МЕ ЮДВСБЮЕЖЕ ЮАЯЮКЧРМЮ ДЮЙКЮДМЮ, ЬРН БШ ПНАiЖЕ, \n"
+"БШАЪПШЖЕ \"оЕПЬШ ЯЕЙРЮП МЮ ДШЯЙС (MBR)\"."
-#: ../../help.pm_.c:343
-#, fuzzy
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-"йЮКi БШ МЕ БЕДЮЕЖЕ ДЮЙКЮДМЮ, ГБШВЮИМШЛ БШАЮПЮЛ Г'Ъ╒КЪЕЖЖЮ \"/dev/hda\"\n"
-"(ЛЮЯРЩП-ДШЯЙ МЮ ОЕПЬШЛ ЙЮМЮКЕ)."
+"йЮКi БШ МЕ БЕДЮЕЖЕ ДЮЙКЮДМЮ, ДШЙ ГБШВЮИМШЛ БШАЮПЮЛ Г'Ъ╒КЪЕЖЖЮ \"/dev/hda\"\n"
+"(ОЕПЬЮЯМШ ЛЮИЯРЮП IDE ДШЯЙ) Жi \"/dev/sda\" (ОЕПЬШ SCSI ДШЯЙ)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1870,8 +2589,19 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
+"LILO (ЮД LInux LOader) i Grub - ЦЩРЮ ГЮЦПСГВШЙi. ъМШ ЛНЦСЖЭ ГЮЦПСГiЖЭ "
+"ДПСЦСЧ\n"
+"GNU/Linux Жi КЧАСЧ iМЬСЧ ЮОЕПЮЖШИМСЧ ЯiЯРЩЛС, СЯРЮКЪБЮМСЧ МЮ ЙЮЛОСРЮПШ.\n"
+"гБШВЮИМЮ, ЦЩРШЪ iМЬШЪ ЮОЕПЮЖШИМШЪ ЯiЯРЩЛШ ЙЮПЩЙРМЮ БШГМЮВЮЧЖЖЮ i\n"
+"╒ЯРЮК╦╒БЮЧЖЖЮ. йЮКi ЦЩРЮ МЕ ЮРПШЛЮКЮЯЪ, РН БШ ЛНФЮЖЕ ДЮДЮЖЭ КЧАШ ГЮОiЯ\n"
+"ЯЮЛЮЯРНИМЮ. аСДГЭЖЕ ╒ОЩ╒МЕМШ, ЬРН БШ ГЮДЮКi ЙЮПЩЙРМШЪ ОЮПЮЛЕРПШ.\n"
+"\n"
+"\n"
+"рЮЙЯЮЛЮ БШ ЛНФЮЖЕ ОЮФЮДЮЖЭ i МЕ ДЮАЮ╒КЪЖЭ iМЬШЪ ЮОЕПЮЖШИМШЪ ЯiЯРЩЛШ.\n"
+"с РЮЙiЛ БШОЮДЙС ОЮРПЩАМЮ ╒ДЮКiЖЭ ЮДОЮБЕДМШЪ ГЮОiЯШ. юКЕ Ф РЮДШ БЮЛ \n"
+"ОЮРПЩАМЮ АСДГЕ ГЮЦПСГЮВМЮЪ ДШЯЙЕРЮ, ЙЮА ГЮЦПСГiЖЖЮ!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -1889,48 +2619,86 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-"юЯМН╒МШЪ ОЮПЮЛЕРПШ LILO:\n"
-" - сЯРПНИЯРБЮ ГЮЦПСГЙi: гЛЪЬВЮЕ iЛЪ ╒ЯРПНИЯРБЮ (МЮОП. ПЮГДГЕК\n"
-"ФНПЯРЙЮЦЮ ДШЯЙЮ), ЪЙНЕ ГЛЪЬВЮЕ ГЮЦПСГЮВМШ ЯЕЙРЮП. йЮКi МЕ БЕДЮЕЖЕ "
+"юЯМН╒МШЪ ОЮПЮЛЕРПШ LILO i Grub:\n"
+" - оПШКЮДЮ ГЮЦПСГЙi: гЛЪЬВЮЕ iЛЪ ОПШКЮДШ (МЮОП. ПЮГДГЕК\n"
+"ФНПЯРЙЮЦЮ ДШЯЙЮ), ЪЙЮЪ ГЛЪЬВЮЕ ГЮЦПСГЮВМШ ЯЕЙРЮП. йЮКi МЕ БЕДЮЕЖЕ "
"ЯОЕЖШТiЙi,\n"
"РН БШАiПЮИЖЕ \"/dev/hda\" (ЮКЭАН \"/dev/sda\", ЙЮКi ╒ БЮЯ SCSI-ДШЯЙ).\n"
"\n"
"\n"
-" - Linear: яРБЮПЮЖЭ КiМЕИМШЪ ЮДПЮЯЮ ЯЕЙРЮПН╒ ГЮЛЕЯР ЮДПЮЯН╒ БШЦКЪДС\n"
-"sector/head/cylinder. кiМЕИМШЪ ЮДПЮЯЮ ОЕПЮБНДГЪЖЖЮ ╒ ВЮЯ ПЮАНРШ ЯiЯРЩЛШ\n"
-"i МЕ ГЮКЕФЮЖЭ ЮД ЦЕЮЛЕРПШi ДШЯЙЮ. лЕИЖЕ МЮ ╒БЮГЕ, ЬРН ГЮЦПСГЮВМШЪ ДШЯЙi МЕ \n"
-"ЛНЦСЖЭ АШЖЭ ОЕПЮЛЪЬВЮКЭМШЛi ОПШ БШЙЮПШЯРЮММi \"linear\", ОЮЙНКЭЙi BIOS ОПШ \n"
-"БШГМЮВЩММi ЦЕЮЛЕРПШi ДШЯЙЮ МЕЮДЩЙБЮРМЮ ОПЮЖСЕ Г ДШЯЙЕРЮЛi. оПШ БШЙЮПШЯРЮММi\n"
-"\"linear\" Г БЪКiЙiЛi ДШЯЙЮЛi, /sbin/lilo ЛНФЮ ЯРБЮПШЖЭ ЯОЮЯШКЙС МЮ\n"
-"МЕДЮЯРСОМШЪ БНАКЮЯЖi ДШЯЙЮ, ОЮЙНКЭЙi 3D ЮДПЮЯЮ ЯЕЙРЮПЮ МЕБЪДНЛШ\n"
-"ДЮ ЛНЛЮМРЮ ГЮЦПСГЙi.\n"
-"\n"
-"\n"
-" - Compact: яОПЮАСЕ РПЮМЯТЮПЛiПЮБЮЖЭ ГЮЙКiЙi МЮ ВШРЮММЕ ЯСЛЕФМШУ ЯЕЙРЮПЮ╒\n"
-"С ЮДГiМШ ГЮЙКiЙ. цЩРЮ ГМЮВМЮ ГЛЕМЬЮЕ ВЮЯ ГЮЦПСГЙi i ЙЮПРС ДШЯЙЮ.\n"
-"бШЙЮПШЯРЮММЕ \"compact\" ЮЯЮАКiБЮ ПЩЙЮЛЕМДСЕЖЖЮ ОПШ ГЮЦПСГЙЕ Г ДШЯЙЕРШ.\n"
-"\n"
-"\n"
-" - гЮРПШЛЙЮ ОЮ ГЛН╒ВЮММЧ ОЕПЮД ГЮЦПСГЙНИ БНАПЮГЮ: гЮДЮЕ ВЮЯ С ДГЪЯЪРШУ\n"
-"ЯЕЙСМДШ, МЮ ОПЮЖЪЦС ЪЙНЦЮ ГЮЦПСГВШЙ ВЮЙЮЕ ОЕПЮД ГЮЦПСГЙЮИ ГЛН╒ВБЮЕЛЮЦЮ "
+" - гЮРПШЛЙЮ ОЮ ГЛН╒ВЮММЧ ОЕПЮД ГЮЦПСГЙЮИ БНАПЮГЮ: гЮДЮЕ ВЮЯ С ДГЪЯЪРШУ\n"
+"ЯЪЙСМДШ, МЮ ОПЮЖЪЦС ЪЙНЦЮ ГЮЦПСГВШЙ ВЮЙЮЕ ОЕПЮД ГЮЦПСГЙЮИ ГЛН╒ВБЮЕЛЮЦЮ "
"БНАПЮГЮ.\n"
"цЩРШ ОЮПЮЛЕРП ЙЮПШЯМШ ДКЪ ЯiЯРЩЛ, ЪЙiЪ ЮДПЮГС ГЮЦПСФЮЧЖЖЮ Г ФНПЯРЙЮЦЮ ДШЯЙЮ\n"
-"ЮДПЮГС ЮОЮЯКЪ ╒ЙКЧВЩММЪ ЙКЮБiЪРСПШ. гЮЦПСГВШЙ МЕ ВЮЙЮЕ, ЙЮКi \"delay\" \n"
-"МЕ ОЮГМЮВЮМШ Жi СЯРЮКЪБЮМШ МЮ МНКЭ.\n"
+"ЮДПЮГС ОЮЯКЪ ╒ЙКЧВЩММЪ ЙКЮБiЪРСПШ. гЮЦПСГВШЙ МЕ ВЮЙЮЕ, ЙЮКi \"ГЮРПШЛЙЮ\" \n"
+"МЕ АСДГЕ ОЮГМЮВЮМЮ Жi СЯРЮКЪБЮМЮ МЮ МНКЭ.\n"
"\n"
"\n"
" - бiДЩЮПЩФШЛ: бШАiПЮЕЖЖЮ РЩЙЯРЮБШ ПЩФШЛ VGA, ЪЙi АСДГЕ ╒ЯРЮКЪБЮМШ\n"
-"ОПШ ГЮЦПСГЙЕ. лЮЦВШЛШ МЮЯРСОМШЪ БЮПШЪМРШ: \n"
+"ОПШ ГЮЦПСГЖШ. лЮЦВШЛШ МЮЯРСОМШЪ БЮПШЪМРШ: \n"
" * normal: БШАПЮЖЭ РЩЙЯРЮБШ ПЩФШЛ 80x25.\n"
" * <number>: БШАПЮЖЭ ЮДОЮБЕДМШ РЩЙЯРЮБШ ПЩФШЛ."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO - ЦЩРШ ГЮЦПСГВШЙ ДКЪ SPARC. ╗М ЛНФЮ ГЮЦПСГiЖЭ ДПСЦСЧ\n"
+"GNU/Linux Жi КЧАСЧ iМЬСЧ ЮОЕПЮЖШИМСЧ ЯiЯРЩЛС, СЯРЮКЪБЮМСЧ МЮ ЙЮЛОСРЮПШ.\n"
+"гБШВЮИМЮ, ЦЩРШЪ iМЬШЪ ЮОЕПЮЖШИМШЪ ЯiЯРЩЛШ ЙЮПЩЙРМЮ БШГМЮВЮЧЖЖЮ i\n"
+"╒ЯРЮК╦╒БЮЧЖЖЮ. йЮКi ЦЩРЮ МЕ ЮРПШЛЮКЮЯЪ, РН БШ ЛНФЮЖЕ ДЮДЮЖЭ КЧАШ ГЮОiЯ\n"
+"ЯЮЛЮЯРНИМЮ. аСДГЭЖЕ ╒ОЩ╒МЕМШ, ЬРН БШ ГЮДЮКi ЙЮПЩЙРМШЪ ОЮПЮЛЕРПШ.\n"
+"\n"
+"\n"
+"рЮЙЯЮЛЮ БШ ЛНФЮЖЕ ОЮФЮДЮЖЭ i МЕ ДЮАЮ╒КЪЖЭ iМЬШЪ ЮОЕПЮЖШИМШЪ ЯiЯРЩЛШ.\n"
+"с РЮЙiЛ БШОЮДЙС ОЮРПЩАМЮ ╒ДЮКiЖЭ ЮДОЮБЕДМШЪ ГЮОiЯШ. юКЕ Ф РЮДШ БЮЛ \n"
+"ОЮРПЩАЕМ АСДГЕ iМЯРЮКЪЖШИМШ ДШЯЙ, ЙЮА ГЮЦПСГiЖЖЮ."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"юЯМН╒МШЪ ОЮПЮЛЕРПШ SILO:\n"
+" - сЯРЮК╦╒ЙЮ ГЮЦПСГВШЙЮ: бШАЪПШЖЕ ЛЕЯЖЮ, ЙСДШ БШ ФЮДЮЕЖЕ ГЛЪЯЖiЖЭ\n"
+"iМТЮПЛЮЖШЧ, ОЮРПЩАМСЧ ДКЪ ГЮЦПСГЙi GNU/Linux. йЮКi МЕ ╒ОЩ╒МЕМШ, ЬРН\n"
+"ПНАiЖЕ ОПЮБiКЭМЮ, БШАiПЮИЖЕ \"оЕПЬШ ЯЕЙРЮП ДШЯЙЮ (MBR)\".\n"
+"\n"
+"\n"
+" - гЮРПШЛЙЮ ОЮ ГЛН╒ВЮММЧ ОЕПЮД ГЮЦПСГЙЮИ БНАПЮГЮ: гЮДЮЕ ВЮЯ С ДГЪЯЪРШУ\n"
+"ЯЪЙСМДШ, МЮ ОПЮЖЪЦС ЪЙНЦЮ ГЮЦПСГВШЙ ВЮЙЮЕ ОЕПЮД ГЮЦПСГЙЮИ ГЛН╒ВБЮЕЛЮЦЮ "
+"БНАПЮГЮ.\n"
+"цЩРШ ОЮПЮЛЕРП ЙЮПШЯМШ ДКЪ ЯiЯРЩЛ, ЪЙiЪ ЮДПЮГС ГЮЦПСФЮЧЖЖЮ Г ФНПЯРЙЮЦЮ ДШЯЙЮ\n"
+"ЮДПЮГС ЮОЮЯКЪ ╒ЙКЧВЩММЪ ЙКЮБiЪРСПШ. гЮЦПСГВШЙ МЕ ВЮЙЮЕ, ЙЮКi \"ГЮРПШЛЙЮ\"\n"
+"МЕ АСДГЕ ОЮГМЮВЮМЮ Жi СЯРЮКЪБЮМЮ МЮ МНКЭ."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1944,15 +2712,15 @@ msgstr ""
"гЮПЮГ ЛЮЦВШЛЮ МЮЯРПНiЖЭ X Window System, ЪЙЮЪ Г'Ъ╒КЪЕЖЖЮ\n"
"ЮЯМНБЮИ Linux GUI (цПЮТiВМШ IМРЩПТЕИЯ йЮПШЯРЮКЭМiЙЮ). дГЕКЪ ЦЩРЮЦЮ\n"
"ОЮРПЩАМЮ МЮЯРПНiЖЭ БiДЩЮЙЮПРС i ЛЮМiРНП. аНКЭЬЮЪ ВЮЯРЙЮ ЦЩРШУ ЙПНЙЮ╒\n"
-"Ю╒РЮЛЮРШГЮБЮМЮ, РЮЛС БЮЬЮ ОПЮЖЮ ЛНФЮ ГЮЙКЧВЮЖЖЮ ╒ ОПЮБЕПЙЕ\n"
-"БШМiЙЮ╒ МЮЯРПНИЙi i ОЮЖБЕПДФЩММЧ БШАПЮМШУ СЯРЮМНБЮЙ :)\n"
+"Ю╒РЮЛЮРШГЮБЮМЮ, РЮЛС БЮЬЮ ОПЮЖЮ ЛНФЮ ГЮЙКЧВЮЖЖЮ ╒ ОПЮБЕПЖШ\n"
+"БШМiЙЮ╒ МЮЯРПНИЙi i ОЮЖБЕПДФЩММЧ ЮАПЮМШУ ОЮПЮЛЕРПЮ╒ :)\n"
"\n"
"йЮКi ЙЮМТiЦСПЮБЮММЕ ГЮБЕПЬШЖЖЮ, АСДГЕ ГЮОСЬВЮМШ X (ЙЮКi БШ МЕ\n"
"ОЮОПНЯiЖЕ DrakX МЕ ПЮАiЖЭ ЦЩРЮЦЮ), ЙЮА БШ ГЛЮЦКi ОПЮБЕПШЖЭ, Жi ГЦНДМШ\n"
-"БШ Г МЮЯРПНИЙЮЛi. йЮКi МЕ, РН ГЮ╒Я╦ДШ ЛЮЦВШЛЮ БЕПМСЖЖЮ i ГЛЪМЪЖЭ iУ\n"
+"БШ Г МЮЯРПНИЙЮЛi. йЮКi МЕ, РН ГЮ╒Я╦ДШ ЛЮЦВШЛЮ БЪПМСЖЖЮ i ГЛЪМЪЖЭ iУ\n"
"ЙНКЭЙi БЮЛ ОЮРПЩАМЮ."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1960,82 +2728,85 @@ msgstr ""
"йЮКi МЕЬРЮ МЕ РЮЙ Г МЮЯРПНИЙЮИ X, ЯЙЮПШЯРЮИЖЕ ЦЩРШЪ ОЮПЮЛЕРПШ ДКЪ \n"
"ЙЮПЩЙРМЮИ МЮЯРПНИЙi X Window System."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-"йЮКi БШ ЮДДЮЕЖЕ ООЕПЮБЮЦС ЦПЮТiВМЮЛС СБЮУНДС (login), БШАЕПШЖЕ \"дЮ\". IМЮЙЬ "
+"йЮКi БШ ЮДДЮЕЖЕ ОЕПЮБЮЦС ЦПЮТiВМЮЛС ╒БЮУНДС (login), БШАЪПШЖЕ \"рЮЙ\". IМЮЙЬ "
"- \n"
-"\"МЕР\"."
+"\"мЕ\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-"гЮПЮГ ЛЮЦВШЛЮ БШАПЮЖЭ МЕЙЮРНПШЪ ДЮФЮРЙНБШЪ ОЮПЮЛЕРПШ ЯiЯРЩЛШ.\n"
+"гЮПЮГ ЛЮЦВШЛЮ ЮАПЮЖЭ МЕЙЮРНПШЪ ДЮДЮРЙНБШЪ ОЮПЮЛЕРПШ ЯiЯРЩЛШ.\n"
"\n"
" - бШЙЮПШЯРН╒БЮЖЭ ЮОРШЛiГЮЖШЧ ФНПЯРЙЮЦЮ ДШЯЙЮ: цЩРШ ОЮПЮЛЕРП ОЮКЪОЬЮЕ "
"ДНЯРСО\n"
"ДЮ ФНПЯРЙЮЦЮ ДШЯЙЮ, ЮКЕ ЦЩРЮ РНКЭЙi ДКЪ БНОШРМШУ ЙЮПШЯРЮКЭМiЙЮ╒,\n"
-"ОПШ МЕЙЮПЩЙРМЮЛ ЙЮПШЯРЮММi ЛЮЦВШЛЮ ОЮПСЬЩММЕ ЖЩКЮЯМЮЯЖi ДЮДГЕММШУ.\n"
-" - бШАПЮЖЭ СГПНБЕМЭ ЮАЮПНМШ: бШ ЛНФЮЖЕ БШАПЮЖЭ СГПНБЕМЭ ЮАЮПНМШ ДКЪ ЯБЮ╦И \n"
+"ОПШ МЕЙЮПЩЙРМШЛ ЙЮПШЯРЮММi ЛЮЦВШЛЮ ОЮПСЬЩММЕ ЖЩКЮЯМЮЯЖi ДЮДГЕММШУ.\n"
+" - бШАПЮЖЭ СГПНБЕМЭ АЪЯОЕЙi: бШ ЛНФЮЖЕ БШАПЮЖЭ СГПНБЕМЭ АЪЯОЕЙi ДКЪ ЯБЮ╦И \n"
"ЯiЯРЩЛШ.\n"
" гЮ ДЮДЮРЙНБЮИ iМТЮПЛЮЖШЪИ ГБЪПРЮИЖЕЯЪ ДЮ ДЮОЮЛНФМiЙЮ.\n"
"\n"
"\n"
" - дЮЙКЮДМШ ОЮЛЕП RAM : с МЕЙЮРНПШУ БШОЮДЙЮУ Linux МЕ ЛНФЮ ЙЮПЩЙРМЮ\n"
"БШЪБiЖЭ СЯЧ ЮОЕПЮРШ╒МСЧ ОЮЛЪЖЭ, ЪЙЮЪ ЛЮЕЖЖЮ ╒ ЯiЯРЩЛЕ. с ЦЩРШЛ БШОЮДЙС\n"
-"╒ЯРЮМЮБiЖЕ ДЮЙКЮДМШ ОЮЛЕП. сБЮЦЮ: ПЮЯУНДФЮММЕ ╒ 2-4лА ДЮОСЬВЮКЭМЮ.\n"
+"ОЮГМЮВЖЕ ДЮЙКЮДМШ ОЮЛЕП. сБЮЦЮ: ПЮЯУНДФЮММЕ ╒ 2-4лА ДЮОСЬВЮКЭМЮ.\n"
"\n"
"\n"
" - ю╒РЮЛЮРШВМЮЕ ЛЮМЖiПЮБЮММЕ ГЛЕММШУ МЮЙЮОКЪКЭМiЙЮ╒: йЮКi БШ ФЮДЮЕЖЕ МЕ \n"
"ЛЮМЖiПЮБЮЖЭ ЯЮЛЮЯРНИМЮ ГЛЕММШЪ МЮЙЮОКЪКЭМiЙi, (CD-ROM, Floppy, Zip) "
-"ЙЮЛЮМДЮЛi \"mount\n"
-"i \"umount\", БШАЕПШЖЕ ЦЩРШ ОЮПЮЛЕРП. \n"
+"ЙЮЛЮМДЮЛi \"mount\" Жi \"umount\", БШАЪПШЖЕ ЦЩРШ ОЮПЮЛЕРП. \n"
"\n"
"\n"
-" - сЙКЧВШЖЭ Num Lock ОПШ ГЮОСЯЙЕ: йЮКi БШ ФЮДЮЕЖЕ, ЙЮА Number Lock АШ╒ "
+" - сЙКЧВШЖЭ Num Lock ОПШ ГЮОСЯЙС: йЮКi БШ ФЮДЮЕЖЕ, ЙЮА Number Lock АШ╒ "
"СЙКЧВЮМШ\n"
-"ОЮЯКЪ ГЮЦПСГЙi, БШАЕПШЖЕ ЦЩРШ ОЮПЮЛЕРП (сБЮЦЮ: Num Lock СЯ╦ ПН╒МЮ МЕ АСДГЕ "
+"ОЮЯКЪ ГЮЦПСГЙi, БШАЪПШЖЕ ЦЩРШ ОЮПЮЛЕРП (сБЮЦЮ: Num Lock ЛНФЮ АШЖЭ i МЕ "
"СЙКЧВЮМШ\n"
"ОЮД X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2050,338 +2821,375 @@ msgstr ""
"йЮКi БШ ФЮДЮЕЖЕ ОЕПЮГЮЦПСГiЖЮ ОЮД iМЬСЧ ЮОЕПЮЖШИМСЧ ЯiЯРЩЛС, ВШРЮИЖЕ \n"
"ДЮДЮРЙНБШЪ iМЯРПСЙЖШi."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "бШАЮП ЛНБШ"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "йКЮЯ СЯРЮМН╒Йi"
-#: ../../install2.pm_.c:45
-#, fuzzy
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
-msgstr "бШЙЮПШЯРН╒БЮЖЭ ЮОРШЛiГЮЖШЧ ФНПЯРЙЮЦЮ ДШЯЙЮ?"
+msgstr "бШГМЮВЩММЕ ФНПЯРЙЮЦЮ ДШЯЙЮ"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "мЮЯРПНИЙЮ ЛШЬi"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "бШАЮП ЙКЮБiЪРСПШ"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "пНГМЮЕ"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
-msgstr "мЮЯРП. ТЮИКЮБШУ ЯiЯРЩЛ"
+msgstr "мЮЯРП. ТЮИКЮБШУ ЯiЯРЩЛЮ╒"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ╒"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "бШАЮП ОЮЙЕРЮ╒"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "сЯРЮМН╒ЙЮ ЯiЯРЩЛШ"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "мЮЯРПНИЙЮ ЯЕРЙi"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "йПШОРЮЦПЮТiЪ"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "мЮЯРПНИЙЮ ВЮЯЮБНЦЮ ОНЪЯЮ"
-#: ../../install2.pm_.c:56
-#, fuzzy
+#: ../../install2.pm_.c:53
msgid "Configure services"
-msgstr "мЮЯРПНИЙЮ ОПШМРЩПЮ"
+msgstr "мЮЯРПНИЙЮ ЯКСФАЮ╒"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "мЮЯРПНИЙЮ ОПШМРЩПЮ"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "оЮПНКЭ ДКЪ root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
-msgstr "яРБЮПШЖЭ СКiЙНБШ ГЮОiЯ"
+msgstr "дЮДЮЖЭ ЙЮПШЯРЮКЭМiЙЮ"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "яРБЮПШЖЭ ГЮЦП. ДШЯЙ"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
-msgstr "сЯРЮМН╒ЙЮ LILO"
+msgstr "сЯРЮК╦╒ЙЮ ГЮЦПСГВШЙЮ"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "мЮЯРПНИЙЮ X Window"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
-msgstr ""
+msgstr "ю╒РЮ СЯРЮК╦╒ЙЮ ТКНОi"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
-msgstr "гЮЙЮМВЩММЕ ╒ЯРЮМН╒Йi"
+msgstr "гЮЙЮМВЩММЕ ╒ЯРЮК╦╒Йi"
+
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "оЮЛШКЙЮ ВШРЮММЪ ТЮИКЮ $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "йЮКЁ КЮЯЙЮ, ГПЮАЁЖЕ МЕЙЮКЭЙЁ ПСУЮ╒ ЛШЬЬС."
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "йЮКЁ КЮЯЙЮ, ГПЮАЁЖЕ МЕЙЮКЭЙЁ ПСУЮ╒ ЛШЬЬС."
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, 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"
-#: ../../install2.pm_.c:337
+#: ../../install_interactive.pm_.c:41
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 ""
"бШ ОЮБiММШ ЛЕЖЭ ЙЮПЮМ╦БШ ПЮГДГЕК.\n"
-"дКЪ ЦЩРЮЦЮ ЯРБЮПШЖЕ ПЮГДГЕК (ЮКЭАН ╒ЙЮФШЖЕ ╒ФЕ iЯМСЧВШ).\n"
-"оНРШЛ БШАЕПШЖЕ ``оСМЙР ЛЮМЖiПЮБЮММЪ'' i ╒ЯРЮМЮБiЖЕ ЪЕ ╒ `/'"
+"дКЪ ЦЩРЮЦЮ ЯРБЮПШЖЕ ПЮГДГЕК (ЮКЭАН ЮДГМЮВЖЕ ╒ФН iЯМСЧВШ).\n"
+"оНРШЛ БШАЪПШЖЕ ``йПНОЙЮ ЛЮМЖiПЮБЮММЪ'' i ╒ЯРЮМЮБiЖЕ ЪЕ ╒ `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"рЮАКiЖЮ ПЮГДГЕКЮ╒ МЕ ВШРЮЕЖЖЮ, ЪМЮ ГЮМЮДРЮ ЯОНПВЮМЮ ДКЪ ЛЕМЪ :(\n"
-"оЮЯОПЮАСЧ iЯЖi ДЮКЕИ i АСДС ОПЮОСЯЙЮЖЭ ДПЩММШЪ ПЮГДГЕКШ"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "бШ ОЮБiММШ ЛЕЖЭ ПЮГДГЕК swap"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake МЕ ГЛНЦ ОПЮБiКЭМЮ ОПЮВШРЮЖЭ РЮАКiЖС ПЮДГЕКЮ╒.\n"
-"оПЮЖЪЦБЮИЖЕ РНКЭЙi МЮ ЯБНИ ЯРПЮУ i ПШГШЙС."
+"мЪЛЮ ПЮГДГЕКЮ swap.\n"
+"\n"
+"сЯ╦ ПН╒МЮ ОПЮЖЪЦБЮЖЭ?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "оНЬСЙ ЙЮПЮМ╦БЮЦЮ ПЮДГЕКЮ."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ МЕГЮМЪРСЧ ОПЮЯРНПС"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "IМТЮПЛЮЖШЪ"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "мЕ УЮОЮЕ ОПЮЯРНПШ ДКЪ ЯРБЮПЩММЪ МНБШУ ПЮГДГЕКЮ╒"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: цЩРЮ МЕ ЙЮПЮМ╦БШ ПЮГДГЕК, ЙЮКi КЮЯЙЮ БШАЕПШЖЕ iМЬШ."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ iЯМСЧВШ ПЮГДГЕК"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "йЮПЮМ╦БШ ПЮГДГЕК МЕ ГМНИДГЕМШ"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "мЕЛЮ iЯМСЧВШУ ПЮГДГЕКЮ╒, ЪЙiЪ ЛНФМЮ БШЙЮПШЯРЮЖЭ"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "мЕЛЮЦВШЛЮ БШЙЮПШЯРН╒БЮЖЭ broadcast АЕГ ДЮЛЕМЮ NIS"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ ПЮГДГЕК Windows ДКЪ БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "оЮЛШКЙЮ ВШРЮММЪ ТЮИКЮ $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "ъЙi ПЮГДГЕК ДШЯЙЮ ФШДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ, ЙЮА ГЛЪЯЖiЖЭ linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"сГМiЙКЮ ОЮЛШКЙЮ, ЮКЕ Ъ МЕ БЕДЮЧ, ЪЙ ЪЕ ЙЮПЩЙРМЮ ЮОПЮЖЮБЮЖЭ,\n"
-"РЮЛС ОПЮЖЪЦБЮИЖЕ МЮ ЯБНИ ЯРПЮУ i ПШГШЙС :("
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "бШАЮП ОЮЛЕПЮ╒"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "дСАКiПЮБЮММЕ ОСМЙРЮ ЛЮМЖiПЮБЮММЪ %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "йЮПЮМ╦БШ ПЮГДГЕК ╒ MА: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "оЮЛЕП swap ПЮГДГЕКС ╒ MА:"
-#: ../../install_steps.pm_.c:390
-#, fuzzy, c-format
-msgid "Welcome to %s"
-msgstr "яЮПДЩВМЮ ГЮОПЮЬЮЕЛ С Crackers"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ МЕГЮМЪРСЧ ОПЮЯРНПС МЮ ПЮГДГЕКЕ Windows"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "дШЯЙЮБНД МЕДЮЯРСОМШ"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "оЮЛЕПШ ЪЙНЦЮ ПЮГДГЕКЮ БШ ФЮДЮЕЖЕ ГЛЪМiЖЭ?"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "бШКiВЩММЕ ЛЕФЮ╒ ТЮИКЮБЮИ ЯiЯРЩЛШ Windows"
+
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "оЕПЮУНД МЮ ЩРЮО `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"с ОПЮЦПЮЛШ ГЛЕМШ ОЮЛЕПЮ╒ ПЮГДГЕКЮ FAT МЕ ЮРПШЛЮКЮЯЪ\n"
+"ЮОПЮЖЮБЮЖЭ бЮЬ ПЮГДГЕК, ОЮЛШКЙЮ: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "бШ ОЮБiММШ ЛЕЖЭ ПЮГДГЕК swap"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"бЮЬ ПЮГДГЕК Г Windows ГЮМЮДРЮ ТПЮЦЛЕМРЮБЮМШ. \n"
+"пЩЙЮЛЕМДСЕЛ ЯОЮВЮРЙС ГЮОСЯЖiЖЭ ОПЮЦПЮЛС ``defrag''"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"мЕР ПЮГДГЕКЮ swap\n"
+"сбюцю!\n"
"\n"
-"сЯ╦ ПН╒МЮ ОПЮЖЪЦБЮЖЭ?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "бШАЕПШЖЕ ОЮФЮДЮМШ ОЮЛЕП СЯРЮМН╒Йi"
+"DrakX ГЮПЮГ ОЮБiМЕМ ГЛЪМiЖЭ ОЮЛЕП БЮЬЮЦЮ ПЮГДГЕКЮ Windows.\n"
+"аСДГЭЖЕ ╒БЮФКiБШ: ЦЩРЮЪ ЮОЕПЮЖШЪ МЕАЪЯОЕВМЮ. йЮКi БШ ЪЬВЩ МЕ ГПЮАiКi \n"
+"ПЩГЕПБНБСЧ ЙНОiЧ ДЮДГЕМШУ, РН ЯОЮВЮРЙС ОЮЙiМЭЖЕ ОПЮЦПЮЛС "
+"╒ЯРЮКЪБЮММЪ,БШЙЮМЮИЖЕ scandisk i defrag МЮ ЦЩРШЛ ПЮГДЕКЕ, ГПЮАiЖЕ ПЩГЕПБНБСЧ "
+"ЙНОiЧ\n"
+"ДЮДГЕМШУ i РНКЭЙi ОНРШЛ ГМН╒ БЕПМiЖЕЯЭ ДЮ ОПЮЦПЮЛШ ╒ЯРЮКЪБЮММЪ.\n"
+"йЮКi ОЮДПШУРЮБЮКiЯЪ, МЮЖiЯМiЖЕ Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "юЦСКЭМШ ОЮЛЕП:"
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "ъЙСЧ ОПЮЯРНПС ГЮУЮБЮЖЭ ДКЪ Windows?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "бЕПЯiЪ: %s\n"
+msgid "partition %s"
+msgstr "пЮГДГЕК %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "оЮЛЕП: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "ю╒РЮГЛЪМЕММЕ ОЮЛЕПЮ╒ МЕ ЮРПШЛЮКЮЯЪ ДКЪ ПЮГДГЕКЮ FAT %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮМН╒Йi"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"мЕ ГМНИДГЕМЮ ПЮГДГЕКЮ╒ FAT ДКЪ ГЛЪМЕММЪ ОЮЛЕПЮ╒ ЮКЭАН БШЙЮПШЯРЮММЪ\n"
+"╒ ЪЙЮЯЖi БiПРСЮКЭМЮИ ТЮИКЮБЮИ ЯiЯРЩЛШ (Жi МЕДЮЯРЮРЙНБЮ ОПЮЯРНПШ МЮ ДШЯЙС)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "IМТЮПЛЮЖШЪ"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "яЖЕПЖi ДЮДГЕМШЪ МЮ ╒ЯiЛ ДШЯЙС"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "сЯРЮМН╒ЙЮ"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "бШДЮКiЖЭ Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "сЯРЮМН╒ЙЮ"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "мЮ ЪЙi Г ЛЮЧВШУЯЪ ФНПЯРЙiУ ДШЯЙЮ╒ бШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ Linux?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "оЮВЮЙЮИЖЕ, ЙЮКi КЮЯЙЮ, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "сЯЕ iЯМСЧВШЪ ПЮГДГЕКШ МЮ ДШЯЙС %s i ДЮДГЕМШЪ МЮ iУ АСДСЖЭ ЯРПЮВЮМШ"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "гЮЯРЮКНЯЭ ВЮЯС "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "пЩФШЛ ЩЙЯОЕПРЮ"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "юЦСКЭМШ ВЮЯ"
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ DiskDrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "оЮДПШУРН╒ЙЮ ╒ЯРЮМН╒Йi"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "сЯРЮМН╒ЙЮ ОЮЙЕРЮ %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"бШ ЛНФЮЖЕ ЖЪОЕП ПЮГАiЖЭ БЮЬ ДШЯЙ %s\n"
+"оЮ ГЮЙЮМВЩММi МЕ ГЮАСДГЭЖЕ ГЮУЮБЮЖЭ ГЛЪМЕММi, БШЙЮПШЯРН╒БЮЪ `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "сЯ╦ ПН╒МЮ ОПЮЖЪЦБЮЖЭ?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "бШЙЮПШЯРН╒БЮЖЭ МЕГЮМЪРСЧ ОПЮЯРНПС МЮ ПЮГДГЕКЕ Windows"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "юРПШЛЮКЮЯЭ ОЮЛШКЙЮ ╒ОЮПЮДЙЮБЮММЪ ОЮЙЕРЮ╒:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "дЮДЮЖЭ ПЮГДГЕК МЕЛЮЦВШЛЮ"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "бШЙЮПШЯРЮЖЭ iЯМСЧВСЧ МЮЯРПНИЙС ДКЪ X11?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "лЮЯРЮЙ ОЮДПШУРН╒Йi ПЮГДГЕКЮ╒ DrakX ГМЮИЬН╒ МЮЯРСОМШЪ БЮПШЪМРШ:"
-#: ../../install_steps_gtk.pm_.c:158
-#, fuzzy
-msgid "Please, choose one of the following classes of installation:"
-msgstr "оПЮДЯРЮБЭЖЕ МЮЯРСОМСЧ iМТЮПЛЮЖШЧ"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "оЮДПШУРН╒ЙЮ ПЮГДЕКЮ╒ МЕ ╒ДЮКЮЯЪ: %s"
-#: ../../install_steps_gtk.pm_.c:199
-#, fuzzy
-msgid "You don't have any windows partitions!"
-msgstr "бШ МЕ ЯРБЮПШКi ЮМiЪЙiУ ПЮГДГЕКЮ╒!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "дЮКСВЩММЕ ДЮ ЯЕРЙi"
-#: ../../install_steps_gtk.pm_.c:201
-#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "бШ МЕ ЯРБЮПШКi ЮМiЪЙiУ ПЮГДГЕКЮ╒!"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "юДКСВЩММЕ ЮД ЯЕРЙi"
-#: ../../install_steps_gtk.pm_.c:217
-#, fuzzy
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"бмiлюмiе!\n"
-"\n"
-"DrakX ГЮПЮГ ОЮБiМЕМ ГЛЪМiЖЭ ОЮЛЕП БЮЬЮЦЮ ПЮГДГЕКЮ Windows. аСДГЭЖЕ ╒БЮФКiБШ: "
-"ЦЩРЮЪ ЮОЕПЮЖШЪ МЕАЪЯОЕВМЮ. \n"
-"гЮОСЯЖiЖЕ scandisk, ЙЮКi БШ МЕ ГПЮАiКi ЦЩРЮ ПЮМЕИ. (Ю РЮЙЯЮЛЮ i \n"
-"defrag) МЮ ЦЩРШЛ ПЮГДГЕКЕ, Ю РЮЙЯЮЛЮ ГПЮАiЖЕ ПЩГЕПБМСЧ ЙНОiЧ ДЮДГЕМШУ.\n"
-"йЮКi ОЮДПШУРЮБЮКiЯЭ, МЮЖiЯМiЖЕ Ok."
+"сГМiЙКЮ ОЮЛШКЙЮ, ЪЙСЧ МЕ ЮРПШЛКЁБЮЕЖЖЮ ЙЮПЩЙРМЮ ЮОПЮЖЮБЮЖЭ,\n"
+"РЮЛС ОПЮЖЪЦБЮИЖЕ МЮ ЯБНИ ЯРПЮУ i ПШГШЙС."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "ю╒РЮГЛЪМЕММЕ ОЮЛЕПЮ╒ МЕ ЮРПШЛЮКЮЯЪ"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "дСАКiПЮБЮММЕ ЙПНОЙi ЛЮМЖiПЮБЮММЪ %s"
-#: ../../install_steps_gtk.pm_.c:265
-#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "ъЙi ПЮГДГЕК ДШЯЙЮ ФШДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ С ЪЙЮЯЖi ЙЮПЮМ╦БЮЦЮ?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"мЕЙЮРНПШЪ БЮФМШЪ ОЮЙЕРШ МЕ АШКi ╒ЯРЮКЪБЮМШ ЙЮПЩЙРМЮ.\n"
+"дПСЦi БЮЬ cdrom ДШЯЙ Жi БЮЬ cdrom ЛЮЧЖЭ ДЩТЕЙРШ.\n"
+"оПЮБЕПЖЕ cdrom МЮ ╒ЯРЮК╦╒БЮЕЛШЛ ЙЮЛОСРЮПШ, БШЙЮПШЯРН╒БЮЧВШ\"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-#, fuzzy
-msgid "Choose the sizes"
-msgstr "бШАЮП МНБШУ ОЮЛЕПЮ╒"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "яЮПДЩВМЮ ГЮОПЮЬЮЕЛ С %s"
-#: ../../install_steps_gtk.pm_.c:286
-#, fuzzy
-msgid "Root partition size in MB: "
-msgstr "йЮПЮМ╦БШ ПЮГДГЕК"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "дШЯЙЮБНД МЕДЮЯРСОМШ"
-#: ../../install_steps_gtk.pm_.c:288
-#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "оЮЛЕП С MB:"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "оЕПЮУНД МЮ ЙПНЙ `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"с бЮЬЮИ ЯiЯРЩЛЕ ЛЮЕЖЖЮ МЕДЮУНО ПЩЯСПЯЮ╒, РЮЛС ЛЮЦВШЛШ ОПЮАКЕЛШ\n"
+"ОПШ ╒ЯРЮКЪБЮММi Linux-Mandrake. с ЦЩРШЛ БШОЮДЙС ОЮЯОПЮАСИЖЕ РЩЙЯРЮБСЧ\n"
+"ОПЮЦПЮЛС ╒ЯРЮКЪБЮММЪ. дКЪ ЦЩРЮЦЮ МЮЖiЯМiЖЕ `F1' С ВЮЯ ГЮЦПСГЙi, Ю ОНРШЛ\n"
+"МЮАЪПШЖЕ `text' i МЮЖiЯМiЖЕ <ENTER>."
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "йЮКi КЮЯЙЮ, БШАЪПШЖЕ ЮДГiМ Г ЙКЮЯЮ╒ СЯРЮК╦╒Йi:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
+msgstr "юЦСКЭМШ ОЮЛЕП ДКЪ ЮАПЮМШУ ЦПСО ОПШАКiГМЮ ПН╒МШ %d лА.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2389,8 +3197,13 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of 100%% will install all selected packages."
msgstr ""
+"йЮКi БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ ЛЕМЕИ ЦЩРЮЦС ОЮЛЕПС,\n"
+"БШАЪПШЖЕ ОПЮЖЩМР ОЮЙЕРЮ╒, ЪЙi БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ.\n"
+"\n"
+"оПШ МiГЙiЛ ОПЮЖЩМЖЕ АСДСЖЭ СЯРЮКЪБЮМШ РНКЭЙi МЮИАНКЭЬ БЮФМШЪ ОЮЙЕРШ,\n"
+"Ю ОПШ 100% АСДСЖЭ СЯРЮКЪБЮМШ ╒ЯЕ ЮАПЮМШЪ ОЮЙЕРШ."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2399,105 +3212,195 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
+"мЮ БЮЬШЛ ДШЯЙС ╦ЯЖЭ ЛЕЯЖЮ РНКЭЙi ДКЪ %d%% ЦЩРШУ ОЮЙЕРЮ╒.\n"
+"\n"
+"йЮКi БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ ЛЕМЕИ ЦЩРЮЦЮ, РН\n"
+"ОЮГМЮВЖЕ ОПЮЖЩМР ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮК╦╒Йi.\n"
+"оПШ ЛЮКШЛ ОПЮЖЩМЖЕ АСДСЖЭ СЯРЮКЪБЮМШ МЮИАНКЭЬ БЮФМШЪ ОЮЙЕРШ;\n"
+"ОПШ ОПЮЖЩМЖЕ %d%% АСДГЕ ╒ЯРЮКЪБЮМЮ ЯРНКЭЙi ОЮЙЕРЮ╒ ЙНКЭЙi ЛЮЦВШЛЮ."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
-msgstr "аНКЭЬ ДЮЙКЮДМШ БШАЮП ЛНФМЮ АСДГЕ ГПЮАiЖЭ МЮ МЮЯРСОМШЛ ЙПНЙЕ"
+msgstr "аНКЭЬ ДЮЙКЮДМШ БШАЮП ЛНФМЮ АСДГЕ ГПЮАiЖЭ МЮ МЮЯРСОМШЛ ЙПНЙС."
-#: ../../install_steps_gtk.pm_.c:335
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
-msgstr "бШАЮП ОЮЙЕРЮ╒"
+msgstr "оПЮЖЩМР ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮК╦╒Йi"
-#: ../../install_steps_gtk.pm_.c:376
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮК╦╒Йi"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "IМТЮПЛЮЖШЪ"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "сЯРЮК╦╒ЙЮ"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "оПЮБЕПЙЮ ГЮКЕФМЮЯЖЕИ"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "пЮЯЙПШЖЭ ДПЩБЮ"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "гБЪПМСЖЭ ДПЩБЮ"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
-msgstr ""
+msgstr "оЕПЮЙКЧВЩММЕ ОЮЛiФ СОЮПЮДЙЮБЮММЕЛ ОЮ ЦПСОЕ i ЮЯНАЙЮУ"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "дПЩММШ ОЮЙЕР"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
-msgstr ""
+msgstr "IЛЪ: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "бЕПЯiЪ: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "оЮЛЕП: %d KА\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
-msgstr ""
+msgstr "гМЮВМЮЯЖЭ: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
-msgstr "юЦСКЭМШ ОЮЛЕП: %d / %d MB"
+msgstr "юЦСКЭМШ ОЮЛЕП: %d / %d MА"
-#: ../../install_steps_gtk.pm_.c:471
-msgid "This is a mandatory package, it can't be unselected"
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
msgstr ""
+"бШ МЕ ЛНФЮЖЕ БШАПЮЖЭ ЦЩРШ ОЮЙЕР, РЮЙ ЪЙ МЕ УЮОЮЕ ЛЕЯЖЮ ДКЪ ЪЦН ╒ЯРЮК╦Йi"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "мЮЯРСОМШЪ ОЮЙЕРШ АСДСЖЭ ДЮДЮМШ ДЮ ЯiЯРЩЛШ"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "мЮЯРСОМШЪ ОЮЙЕРШ АСДСЖЭ БШДЮКЕМШ"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "бШ МЕ ЛНФЮЖЕ БШДГЪКiЖЭ/ЮДЛЪМiЖЭ БШДГЪКЕММЕ ЦЩРЮЦЮ ОЮЙЕРЮ"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:416
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "цЩРЮ ЮАЮБЪГЙНБШ ОЮЙЕР, ЪЦН БШДГЪКЕММЕ МЕКЭЦЮ ЮДЛЪМiЖЭ"
+
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
-msgstr ""
+msgstr "бШ МЕ ЛНФЮЖЕ ЮДЛЪМiЖЭ БШДГЪКЕММЕ ЦЩРЮЦЮ ОЮЙЕРЮ. ╗М СФН ╒ЯРЮКЪБЮМШ"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
+"цЩРШ ОЮЙЕР ОЮБiМЕМ АШЖЭ ЮАМН╒КЕМШ\n"
+"бШ ╒ОЩ╒МЕМШ, ЬРН УНВЮЖЕ ЮДЛЪМiЖЭ БШДГЪКЕММЕ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
+msgstr "бШ МЕ ЛНФЮЖЕ ЮДЛЪМiЖЭ БШДГЪКЕММЕ ЦЩРЮЦЮ ОЮЙЕРЮ. ъЦН ОЮРПЩАМЮ ЮАМЮБiЖЭ"
-#: ../../install_steps_gtk.pm_.c:496
-#, fuzzy
-msgid "The following packages are going to be installed/removed"
-msgstr "мЮЯРСОМШЪ ОЮЙЕРШ АСДСЖЭ БШДЮКЕМШ Г ЯiЯРЩЛШ"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "сЯРЮК╦╒БЮЕЛ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "вЮЙЮЕЖЖЮ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "оЮВЮЙЮИЖЕ, ЙЮКi КЮЯЙЮ, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "гЮЯРЮКНЯЪ ВЮЯС "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "юЦСКЭМШ ВЮЯ "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "юДЛЕМЮ"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "оЮДПШУРН╒ЙЮ ╒ЯРЮК╦╒Йi"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
-msgstr "ОЮЙЕРЮ╒: %d "
+msgstr "%d ОЮЙЕРЮ╒"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "сЯРЮК╦╒ЙЮ ОЮЙЕРЮ %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "оПШМЪЖЭ"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2506,380 +3409,422 @@ msgid ""
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
+"гЛЪМiЖЕ БЮЬ Cd-Rom!\n"
+"\n"
+"йЮКi КЮЯЙЮ, СЯРЮ╒ЖЕ Cd-Rom, ОЮЛЕВЮМШ \"%s\", С БЮЬ ДШЯЙЮБНД i МЮЖiЯМiЖЕ OЙ "
+"ОЮЯКЪ.\n"
+"йЮКi БШ МЕ ЛЮЕЖЕ ЪЦН, МЮЖiЯМiЖЕ юДЛЪМiЖЭ, ЙЮА ЮДЛЪМiЖЭ СЯРЮК╦╒ЙС Г ЦЩРЮЦЮ Cd."
-#: ../../install_steps_gtk.pm_.c:615
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "юДЙЮГЮЖЭ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "сЯ╦ ПН╒МЮ ОПЮЖЪЦБЮЖЭ?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "юРПШЛЮКЮЯЪ ОЮЛШКЙЮ ╒ОЮПЮДЙЮБЮММЪ ОЮЙЕРЮ╒:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
-msgstr "юРПШЛЮКЮЯЭ ОЮЛШКЙЮ ╒ОЮПЮДЙЮБЮММЪ ОЮЙЕРЮ╒:"
+msgstr "юРПШЛЮКЮЯЪ ОЮЛШКЙЮ ╒ОЮПЮДЙЮБЮММЪ ОЮЙЕРЮ╒:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
-msgstr "юРПШЛЮКЮЯЭ ОЮЛШКЙЮ"
+msgstr "юДАШКЮЯЪ ОЮЛШКЙЮ"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+msgstr "йЮКi КЮЯЙЮ, БШАЪПШЖЕ ЛНБС ДКЪ ЙЮПШЯРЮММЪ."
+
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "йКЮБiЪРСПЮ"
-#: ../../install_steps_interactive.pm_.c:73
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
-msgstr "бШАЕПШЖЕ РШО ЙКЮБiЪРСПШ"
+msgstr "йЮКi КЮЯЙЮ, БШАЪПШЖЕ РШО ЙКЮБiЪРСПШ."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
-msgstr ""
+msgstr "бШ ЛНФЮЖЕ БШАПЮЖЭ ДПСЦiЪ ЛНБШ, ЪЙiЪ АСДСЖЭ ДЮЯРСОМШ ОЮЯКЪ ╒ЯРЮК╦╒Йi"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "йЮПЮМ╦БШ ПЮГДГЕК"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "ъЙi ПЮДГЕК ЙЮПЮМ╦БШ (/) ДКЪ БЮЬЮИ ЯiЯРЩЛШ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
-msgstr "йКЮЯ сЯРЮМН╒Йi"
+msgstr "йКЮЯ сЯРЮК╦╒Йi"
-#: ../../install_steps_interactive.pm_.c:100
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
-msgstr "бШАЕПШЖЕ ЙКЮЯ СЯРЮМН╒Йi"
-
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "сЯРЮМН╒ЙЮ/юАМЮ╒КЕММЕ"
+msgstr "ъЙi ЙКЮЯ СЯРЮК╦╒Йi БШ ФЮДЮЕЖЕ?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "цЩРЮ ╒ЯРЮМН╒ЙЮ Жi ЮАМЮ╒КЕММЕ?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
+msgstr "сЯРЮК╦╒ЙЮ/юАМЮ╒КЕММЕ"
-#: ../../install_steps_interactive.pm_.c:110
+#: ../../install_steps_interactive.pm_.c:183
#, fuzzy
-msgid "Automated"
-msgstr "ю╒РЮЛЮРШВМШ IP"
+msgid "Is this an install or an update?"
+msgstr "цЩРЮ ╒ЯРЮК╦╒ЙЮ Жi БШПЮРЮБЮММЕ?"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "пЩЙЮЛЕМДСЕЖЖЮ"
+
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
-msgstr "г МЮЯРПНИЙЮИ"
+msgstr "оЮ БШАЮПС"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "щЙЯОЕПР"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
+"бШ ╒ОЩ╒МЕМШ, ЬРН ГЛНФЮЖЕ ОПЮЖЪЦМСЖЭ ОПЮЖЩЯ СЯРЮКЪБЮММЪ ЪЙ ЩЙЯОЕПР?\n"
+"с ЦЩРШЛ БШОЮДЙС бШ АСДГЕЖЕ ЛЕЖЭ АНКЭЬШ ЙЮМРПНКЭ МЮД ОПЮЖЩЯЮЛ СЯРЮКЪБЮММЪ,\n"
+"ЮКЕ БШМiЙi ОЮЛШКЙi ЛНЦСЖЭ АШЖЭ ТЮРЮКЭМШЪ.\n"
+"\n"
+"бЮЛ АСДСЖЭ ГЮДЮДГЕМШ, МЮОПШЙКЮД, РЮЙiЪ ОШРЮММi: ``жi БШЙЮПШЯРН╒БЮЖЭ ЖЕМЪБШ\n"
+"ТЮИК ОЮПНКЪ╒?'' жi ОЮДПШУРЮБЮМШ БШ ДЮ ЮДЙЮГС МЮ ЦЩРШЪ ОШРЮММi?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "юАМЮ╒КЕММЕ"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "мЮПЛЮКЭМЮ"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "гБШВЮИМШ"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
-msgstr "пЮЯОПЮЖН╒ЬВШЙ"
+msgstr "дКЪ ПЮЯОПЮЖН╒Йi"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "яЕПБЕП"
-#: ../../install_steps_interactive.pm_.c:141
-#, fuzzy
-msgid "Which usage is your system used for ?"
-msgstr "с ЪЙiЛ ВЮЯНБШЛ ОНЪЯЕ БШ ГМЮУНДГiЖЕЯЭ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "дГЕКЪ ВЮЦН бШ АСДГЕЖЕ БШЙЮПШЯРН╒БЮЖЭ ЯЁЯРЩЛС?"
-#: ../../install_steps_interactive.pm_.c:152
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
-msgstr "сЙЮФШЖЕ РШО БЮЬЮИ ЛШЬi"
+msgstr "ЙЮКi КЮЯЙЮ, ОЮГМЮВЖЕ РШО БЮЬЮИ ЛШЬi."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "оНПР ЛШЬi"
-#: ../../install_steps_interactive.pm_.c:161
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "дЮ ЪЙНЦЮ ОНЯКЪДН╒МЮЦЮ ОНПРЮ ОЮДЙКЧВЮМЮ БЮЬЮ ЛШЬ?"
+msgstr "йЮКi КЮЯЙЮ, ОЮГМЮВЖЕ ОНЯКЪДН╒МШ ОНПР, ДЮ ЪЙНЦЮ ДЮКСВЮМЮ БЮЬЮ ЛШЬ."
-#: ../../install_steps_interactive.pm_.c:172
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "мЮЯРПНИЙЮ ЙЮПР PCMCIA ..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
-msgstr "мЮЯРПНИЙЮ"
+msgstr "мЮЯРПНИЙЮ IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
-msgstr "МЕР ДЮЯРСОМШУ ПЮГДГЕКЮ╒"
+msgstr "МЪЛЮ ДЮЯРСОМШУ ПЮГДГЕКЮ╒"
-#: ../../install_steps_interactive.pm_.c:184
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Choose the mount points"
+msgstr "бШАЪПШЖЕ ОСМЙРШ ЛЮМЖiПЮБЮММЪ"
+
+#: ../../install_steps_interactive.pm_.c:316
#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"рЮАКiЖЮ ПЮГДГЕКЮ╒ МЕ ВШРЮЕЖЖЮ, ЪМЮ ГЮМЮДРЮ ЯОНПВЮМЮ ДКЪ ЛЕМЪ :(\n"
+"оЮЯОПЮАСЧ iЯЖi ДЮКЕИ i АСДС ОПЮОСЯЙЮЖЭ ДПЩММШЪ ПЮГДГЕКШ (сЯЕ дюдегемшъ\n"
+"АСДСЖЭ ЯРПЮВЮМШ!). IМЬЮЕ ПЮЬЩММЕ МЕ ДЮГБНКiЖЭ DrakX ГЛЪМiЖЭ РЮАКiЖС "
+"ПЮГДГЕКЮ╒.\n"
+"(ОЮЛШКЙЮ ╒ %s)\n"
+"\n"
+"жi ФЮДЮЕЖЕ ЯРПЮЖiЖЭ СЯЕ ПЮГДГЕКШ?\n"
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "ъЙi ПЮГДГЕК ДШЯЙЮ ФШДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ С ЪЙЮЯЖi ЙЮПЮМ╦БЮЦЮ?"
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake МЕ ГЛНЦ ОПЮБiКЭМЮ ОПЮВШРЮЖЭ РЮАКiЖС ПЮДГЕКЮ╒.\n"
+"оПЮЖЪЦБЮИЖЕ РНКЭЙi МЮ ЯБНИ ЯРПЮУ i ПШГШЙС!"
-#: ../../install_steps_interactive.pm_.c:198
-msgid "Choose the mount points"
-msgstr "бШАЕПШЖЕ ОСМЙРШ ЛЮМЖiПЮБЮММЪ"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "йЮПЮМ╦БШ ПЮГДГЕК"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "ъЙi ПЮДГЕК ЙЮПЮМ╦БШ (/) ДКЪ БЮЬЮИ ЯiЯРЩЛШ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
-msgstr "йЮА ЛЮДШТiЙЮЖШЪ РЮАКiЖШ ПЮГДГЕКЮ╒ ГДЕИЯМiКЮЯЭ, ОЮРПЩАМЮ ОЕПЮГЮЦПСГЙЮ."
+msgstr "йЮА ЛЮДШТiЙЮЖШЪ РЮАКiЖШ ПЮГДГЕКЮ╒ ГДЕИЯМiКЮЯЪ, ОЮРПЩАМЮ ОЕПЮГЮЦПСГЙЮ."
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "бШАЮП ПЮГДГЕКЮ╒ ДКЪ ТЮПЛЮЖiПЮБЮММЪ"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
-msgstr ""
+msgstr "оПЮБЕПШЖЭ МЮ МЮЪ╒МЮЯЖЭ ДПЩММШУ АКНЙЮ╒?"
-#: ../../install_steps_interactive.pm_.c:248
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
-msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ╒ %s"
+msgstr "тЮПЛЮЖiПЮБЮММЕ ПЮГДГЕКЮ╒"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
-msgstr ""
+msgstr "яРБЮПЩММЕ i ТЮПЛЮЖiПЮБЮММЕ ТЮИКЮ %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
-msgstr "мЕ УЮОЮЕ ЛЕЯЖЮ ╒ АСТЕПШ ОЮДЙЮВЙi (swap) ДКЪ ╒ЯРЮМН╒Йi, ОЮБЪКiВЖЕ ЪЦН."
+msgstr "мЕ УЮОЮЕ ЛЕЯЖЮ ╒ АСТЕПШ ОЮДЙЮВЙi (swap) ДКЪ ╒ЯРЮК╦╒Йi, ОЮБЪКiВЖЕ ЪЦН."
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "оПЮЦКЪД ДЮЯРСОМШУ ОЮЙЕРЮ╒"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
-msgstr "оНЬСЙ ОЮЙЕРЮ╒ ДКЪ НАМЮ╒КЕММЪ"
+msgstr "оНЬСЙ ОЮЙЕРЮ╒ ДКЪ ЮДМЮ╒КЕММЪ"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
+"бЮЬЮ ЯiЯРЩЛЮ МЕ ЛЮЕ ДЮЯРЮЙНБЮ ЛЕЯЖЮ ДКЪ ╒ЯРЮК╦╒Йi Жi ЮДМЮ╒КЕММЪ (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "оН╒МШ (%dMА)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "лiМiЛЮКЭМШ (%dMА)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "пЩЙЮЛЕМДСЕЖЖЮ (%dлА)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "оЮ БШАЮПС"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "бШАЪПШЖЕ ОЮФЮДЮМШ ОЮЛЕП СЯРЮК╦╒Йi"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "бШАЮП ЦПСОШ ОЮЙЕРЮ╒"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
-msgstr ""
+msgstr "юЯЮАiЯРШ БШАЮП ОЮЙЕРЮ╒"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
+"йЮКi БШ ЛЮЕЖЕ ╒ЯЕ CD ДШЯЙi ЯЮ ЯОiЯЮ МiФЩИ, МЮЖiЯМiЖЕ нЙ.\n"
+"йЮКi БШ МЕ ЛЮЕЖЕ Мi ЮДМНЦН Г ЦЩРШУ CD ДШЯЙЮ╒, МЮЖiЯМiЖЕ юДЛЪМiЖЭ.\n"
+"йЮКi МЕЙЮРНПШУ Г CD ДШЯЙЮ╒ МЕ ЛЮЕЖЕ, ЮДЛЪМiЖЕ iУ БШДГЪКЕММЕ i МЮЖiЯМiЖЕ нЙ."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr ""
+msgstr "Cd-Rom ОЮЛЕВЮМШ \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"сЯРЮМН╒ЙЮ ОЮЙЕРЮ %s\n"
+"сЯРЮК╦╒ЙЮ ОЮЙЕРЮ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "мЮЯРПНИЙЮ ОЮЯКЪ ╒ЯРЮМН╒Йi"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "гЮУН╒БЮММЕ АЪЦСВЮИ ЙЮМТiЦСПЮЖШi IP"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "оЕПЮЙЮМТiЦСПШПЮБЮЖЭ ЯЕРЙС"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "мЕ ╒ЯРЮМЮБКiБЮЖЭ ЯЕРЙЮБШЪ ЯКСФАШ"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "йЮМТiЦСПЮЖШЪ ЯЕРЙi"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "мЮЯРПНИЙi LAN СФН ГЮДЮДГЕМШ. жi ФЮДЮЕЖЕ БШ:"
-
-#: ../../install_steps_interactive.pm_.c:421
-#, fuzzy
-msgid "Do you want to configure a local network for your system?"
-msgstr "жi ФЮДЮЕЖЕ БШ МЮЯРПНiЖЭ ЯЕРЙЮБСЧ ЙЮМТiЦСПЮЖШЧ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "ЯЕРЙЮБЮЪ ЙЮПРЮ МЕ ГМНИДГЕМЮ"
-
-#: ../../install_steps_interactive.pm_.c:449
-#, fuzzy
-msgid "Modem Configuration"
-msgstr "мЮЯРПНИЙЮ"
-
-#: ../../install_steps_interactive.pm_.c:450
-#, fuzzy
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "жi ФЮДЮЕЖЕ БШ МЮЯРПНiЖЭ ЯЕРЙЮБСЧ ЙЮМТiЦСПЮЖШЧ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "мЮЯРПНИЙЮ ЯЕРЙЮБЮИ ОПШКЮДШ %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"йЮКi КЮЯЙЮ, СБЪДГiЖЕ IP ЙЮМТiЦСПЮЖШЧ ДКЪ БЮЬЮИ ЛЮЬШМШ.\n"
-"йНФМШ ОСМЙР ОЮБiМЕМ АШЖЭ ГЮОН╒МЕМШ ЪЙ IP ЮДПЮЯ ╒ ДЕЯЪРЙНБЮ-ЙПНОЙЮБЮИ \n"
-"МЮРЮЖШi (МЮОПШЙКЮД, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "ю╒РЮЛЮРШВМШ IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP ЮДПЮЯ:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "лЮЯЙЮ ЯЕРЙi"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "bootp/dhcp"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ЮДПЮЯ ОЮБiМЕМ АШЖЭ С ТЮПЛЮЖЕ 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "мЮЯРПНИЙЮ ЯЕРЙi"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"сБЪДГiЖЕ iЛЪ ЯБЮ╦И ЛЮЬШМШ (host).\n"
-"IЛЪ БЮЬЮИ ЛЮЬШМШ ОЮБiММЮ АШЖЭ ГЮДЮДГЕМЮ ОН╒МЮЯЖЧ,\n"
-"МЮОПШЙКЮД ``mybox.mylab.myco.com''.\n"
-"бШ ЛНФЮЖЕ РЮЙЯЮЛЮ ╒БЕЯЖi IP ЮДПЮЯ ЬКЧГЮ, ЙЮКi ╦М С БЮЯ ╦ЯЖЭ."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS ЯЕПБЕП:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "оПШКЮДЮ-ЬКЧГ:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "ьКЧГ:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "IЛЪ ЛЮЬШМШ:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ЛЮДЩЛ?"
-
-#: ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "дЮ ЪЙНЦЮ ОЮЯКЪДН╒МЮЦЮ ОНПРЮ ОЮДЙКЧВЮМШ ЛЮДЩЛ?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "оЮПЮЛЕРПШ Dialup"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "IЛЪ ГКСВЩММЪ"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "мСЛЮП РЩКЕТНМЮ"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "IЛЪ (login ID)"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "ю╒РЩМЖiТiЙЮЖШЪ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "МЮ ЮЯМНБЕ ЯЙПШОРЮ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "МЮ ЮЯМНБЕ РЩПЛiМЮКЮ"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "IЛЪ ДЮЛЕМЮ"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "оЕПЬШ ЯЕПБЕП DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "дПСЦЮЯМШ ЯЕПБЕП DNS:"
-
-#: ../../install_steps_interactive.pm_.c:549
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2926,16 +3871,16 @@ msgstr ""
"ОЮБiМЕМ\n"
"СДЮЯЙЮМЮКiЖЖЮ ╒ РШЛ, ЬРН ГЮЙНМШ ЪЦН/iУ ЯРПЮМ ДЮГБЮКЪЧЖЭ ГЮЦПСФЮЖЭ, "
"ГЮУН╒БЮЖЭ\n"
-"i/ЮКЭАН БШЙЮПШЯРН╒БЮЖЭ ЦЩРЮЪ ОПЮЦПЮЛШ.\n"
+"i/ЮКЭАН БШЙЮПШЯРН╒БЮЖЭ ЦЩРШЪ ОПЮЦПЮЛШ.\n"
"\n"
"юЙПЮЛЪ РЮЦН, ОПЮДЮБЕЖ i/ЮКЭАН ЙЮПШЯРЮКЭМiЙ ОЮБiММШ АШЖЭ СОЕЩ╒МЕМШ, ЬРН МЕ "
"ОЮПСЬЮЧЖЭ\n"
"ГЮЙНМЮ╒ ЯБЮ╦И ЙПЮiМШ. йЮКi ОПЮДЮБЕЖ i/ЮКЭАН ЙЮПШЯРЮКЭМiЙ ОЮПСЬЮЕ ЦЩРШЪ\n"
-"ГЮЙНМШ, ЪЙiЪ ЛНЦСЖЭ АШЖЭ ОПШЛЕМЕМШ ЯСОПНЖi╒ ЪЦН, ╦М/ЪМШ МЪЯЕ ЯСПНБШ "
+"ГЮЙНМШ, ЪЙiЪ ЛНЦСЖЭ АШЖЭ ОПШЛЕМЕМШ ЯСОПНЖi╒ ЪЦН, ╦М/ЪМШ МЪЯЕ ЯСПНБСЧ "
"ЮДЙЮГМЮЯЖЭ.\n"
"\n"
"мi ╒ ЪЙiЛ ПЮГЕ Мi Mandrakesoft, Мi ЪЕ БШЙЮМЮ╒ЖШ i ОЮЯРЮ╒ЬВШЙi МЕ ЮДЙЮГБЮЧЖЭ\n"
-"ГЮ МЕОЮЯПЩДМСЧ, МЕОПЪЛСЧ ЮКЭАН БШОЮДЙНБСЧ ЬЙНДС (ЬРН СЙКЧВЮЕ, ЮКЕ \n"
+"ГЮ МЕОЮЯПЩДМСЧ, МЕОПЮЛСЧ ЮКЭАН БШОЮДЙНБСЧ ЬЙНДС (ЬРН СЙКЧВЮЕ, ЮКЕ \n"
"МЕ ЮАЛЪФН╒БЮЕЖЖЮ ЯРПЮВЮММЮИ ОПШАШККЧ, ОЮПСЬЩММЕ АiГМЩЯС, ЯРПЮРЮИ ЙЮЛЕПЖШИМШУ "
"\n"
"ДЮДГЕМШУ i iМЬШЛi ЯРПЮРЮЛi, Ю РЮЙЯЮЛЮ ЛЮЦВШЛШЛi ЯЮМЙЖШЪЛi i ЬРПЮТЮЛi, ЪЙiЪ \n"
@@ -2952,95 +3897,98 @@ msgstr ""
"ЛЪЯЖНБШЛi\n"
"ГЮЙНМЮЛi.\n"
"\n"
-"г КЧАШЛi ОШРЮММЪЛi, ЪЙiЪ ДЮРШВЮЖЖЮ ДЮДГЕММЮЦЮ ОЮЦЮДМЕММЪ, ГБЪПРЮИЖЕЯЭ: \n"
+"г КЧАШЛi ОШРЮММЪЛi, ЪЙiЪ ДЮРШВЮЖЖЮ ДЮДГЕММЮЦЮ ОЮЦЮДМЕММЪ, ГБЪПРЮИЖЕЯЪ: \n"
"Mandrakesoft\n"
"43, rue d'Aboukir\n"
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "бШАЮП КЧЯРЩПЙЮ ДКЪ ЮРПШЛЮММЪ ОЮЙЕРЮ╒"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "яСБЪГЭ Г КЧЯРЩПЙЮЛ ДКЪ ЮРПШЛЮММЪ ЯОiЯЮ ДЮЯРСОМШУ ОЮЙЕРЮ╒"
-#: ../../install_steps_interactive.pm_.c:592
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
-msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮМН╒Йi"
+msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮК╦╒Йi"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "с ЪЙiЛ ВЮЯНБШЛ ОНЪЯЕ БШ ГМЮУНДГiЖЕЯЭ?"
+msgstr "ъЙi БЮЬ ВЮЯЮБШ ОНЪЯ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
-msgstr "бЮЬ ЯiЯРЩЛМШ ЦЮДГiММiЙ СЯРЮМН╒КЕМШ МЮ GMT?"
+msgstr "бЮЬ ЯiЯРЩЛМШ ЦЮДГiММiЙ СЯРЮКЪБЮМШ МЮ GMT?"
+
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "ъЙСЧ ЯiЯРЩЛС ДПСЙЮБЮММЪ бШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
-msgstr "мЕР ОЮПНКЪ"
+msgstr "мЪЛЮ ОЮПНКЪ"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "яЙЮПШЯРН╒БЮЖЭ ЖЕМЪБШ ТЮИК"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "ЖЕМЭ"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "яЙЮПШЯРН╒БЮЖЭ ОЮПНКi MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "яЙЮПШЯРН╒БЮЖЭ NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "ФН╒РШЪ ЯРЮПНМЙi"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "цЩРШ ОЮПНКЭ ГЮМЮДРЮ ОПНЯРШ (ЪЦН ДЮ╒ФШМЪ ОЮБiММЮ АШЖЭ МЕ ЛЕМЬ %d КiРЮП)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "ю╒РЩМРШТiЙЮЖШЪ NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS ЯЕПБЕП:"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
-msgstr "оПШМЪЖЭ СКiЙНБШ ГЮОiЯ"
+msgstr "оПШМЪЖЭ ЙЮПШЯРЮКЭМiЙЮ"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
-msgstr "дЮДЮЖЭ СКiЙНБШ ГЮОiЯ"
+msgstr "дЮДЮЖЭ ЙЮПШЯРЮКЭМiЙЮ"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
-msgstr "СФН ДЮДЮДГЕМЮ %s"
+msgstr "(СФН ДЮДЮДГЕМЮ %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3050,37 +3998,37 @@ msgstr ""
"сБЪДГiЖЕ iЛЪ ЙЮПШЯРЮКЭМiЙЮ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "сКЮЯМЮЕ iЛЪ"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "IЛЪ ЙЮПШЯРЮКЭМiЙЮ:"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "юАЮКНМЙЮ:"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
-msgstr ""
+msgstr "оiЙРЮЦПЮЛЮ"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "цЩРШ ОЮПНКЭ ГЮМЮДРЮ ОПНЯРШ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
-msgstr "сБЪДГiЖЕ iЛЪ ЙЮПШЯРЮКЭМiЙЮ"
+msgstr "йЮКi КЮЯЙЮ, СБЪДГiЖЕ iЛЪ ЙЮПШЯРЮКЭМiЙЮ"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -3088,27 +4036,51 @@ msgstr ""
"IЛЪ ЙЮПШЯРЮКЭМiЙЮ ОЮБiММЮ ГЛЪЬВЮЖЭ КiРЮПШ РНКЭЙi МЮ МiФМiЛ ПЩЦiЯРПШ, \n"
"КiВАШ, `-' i `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "цЩРЮ iЛЪ ЙЮПШЯРЮКЭМiЙЮ ╒ФН ДЮДЮДГЕМЮ"
-#: ../../install_steps_interactive.pm_.c:747
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"г ДЮОЮЛНЦЮИ ГЮЦПСГЮВМЮЦЮ ДШЯЙЮ БШ ГЛНФЮЖЕ ГЮЦПСФЮЖЭ Linux МЕГЮКЕФМЮ ЮД\n"
+" ЯРЮМДЮПРМЮЦЮ ГЮЦПСГВШЙЮ. цЩРЮ ЛНФЮ АШЖЭ ЪЙЮЯМЮ, ЙЮКi БШ МЕ ФЮДЮЕЖЕ \n"
+"╒ЯРЮК╦╒БЮЖЭ SILO, ЙЮКi iМЬЮЪ ЮОЕПЮЖШИМЮЪ ЯiЯРЩЛЮ БШДЮКЪЕ SILO, Жi SILO МЕ \n"
+"ЛНФЮ ОПЮЖЮБЮЖЭ С БЮЬЮИ ЙЮМТiЦСПЮЖШi. гЮЦПСГЮВМШ ДШЯЙ РЮЙЯЮЛЮ ЛНФЮ АШЖЭ \n"
+"БШЙЮПШЯРЮМ ЯСЛЕЯМЮ Г ПЮЛНМРМЮИ ДШЯЙЕРЮИ Linux Mandrake, ЪЙЮЪ БЕКЭЛi \n"
+"ОЮКЕЦВШЖЭ БШПЮРЮБЮММЕ ЯiЯРЩЛШ ОЮЯКЪ ГАНЧ.\n"
+"\n"
+"йЮКi ФЮДЮЕЖЕ ЯРБЮПШЖЭ ГЮЦПСГЮВМШ ДШЯЙ ГЮПЮГ, СЯРЮ╒ЖЕ ДШЯЙЕРС ╒ ОЕПЬШ\n"
+"ДШЯЙЮБНД i МЮЖiЯМiЖЕ \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
-msgstr "оЕПЬШ ДШЯЙ"
+msgstr "оЕПЬШ ДШЯЙЮБНД"
-#: ../../install_steps_interactive.pm_.c:748
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
-msgstr "дПСЦi ДШЯЙ"
+msgstr "дПСЦi ДШЯЙЮБНД"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "оПЮОСЯЖiЖЭ"
-#: ../../install_steps_interactive.pm_.c:755
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3121,196 +4093,166 @@ msgid ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"г ДЮОЮЛНЦЮИ ГЮЦПСГЮВМЮЦЮ ДШЯЙЮ БШ ГЛНФЮЖЕ ГЮЦПСФЮЖЭ Linux РЮЙЯЮЛЮ ЪЙ i "
-"ЯРЮМДЮПРМШЛ ГЮЦПСГВШЙЮЛ. цЩРЮ ЛНФЮ АШЖЭ ЪЙЮЯМЮ, ЙЮКi БШ МЕ ФЮДЮЕЖЕ "
-"╒ЯРЮМЮ╒КiБЮЖЭ lilo, ЙЮКi iМЬЮЪ ЮОЕПЮЖШИМЮЪ ЯiЯРЩЛЮ ╒ДЮКiКЮ lilo, Жi lilo МЕ "
-"ЛНФЮ ОПЮЖЮБЮЖЭ С БЮЬЮИ ЙЮМТiЦСПЮЖШi. гЮЦПСГЮВМШ ДШЯЙ РЮЙЯЮЛЮ ЛНФЮ АШЖЭ "
-"БШЙЮПШЯРЮМ ЯСЛЕЯМЮ Г ПЮЛНМРМЮИ ДШЯЙЕРЮИ Linux Mandrake, ЪЙЮЪ БЕКЭЛi "
-"ОЮКЕЦВШЖЭ ЮДМЮ╒КЕММЕ ЯiЯРЩЛШ ОЮЯКЪ ГАНЧ.\n"
+"г ДЮОЮЛНЦЮИ ГЮЦПСГЮВМЮЦЮ ДШЯЙЮ БШ ГЛНФЮЖЕ ГЮЦПСФЮЖЭ Linux РЮЙЯЮЛЮ ЪЙ i \n"
+"ЯРЮМДЮПРМШЛ ГЮЦПСГВШЙЮЛ. цЩРЮ ЛНФЮ АШЖЭ ЪЙЮЯМЮ, ЙЮКi БШ МЕ ФЮДЮЕЖЕ \n"
+"╒ЯРЮК╦╒БЮЖЭ LILO (Жi Grub), ЙЮКi iМЬЮЪ ЮОЕПЮЖШИМЮЪ ЯiЯРЩЛЮ БШДЮКЪЕ LILO,\n"
+"Жi LILO МЕ ЛНФЮ ОПЮЖЮБЮЖЭ С БЮЬЮИ ЙЮМТiЦСПЮЖШi. гЮЦПСГЮВМШ ДШЯЙ РЮЙЯЮЛЮ "
+"ЛНФЮ\n"
+"АШЖЭ БШЙЮПШЯРЮМ ЯСЛЕЯМЮ Г ПЮЛНМРМЮИ ДШЯЙЕРЮИ Linux Mandrake, ЪЙЮЪ БЕКЭЛi \n"
+"ОЮКЕЦВШЖЭ БШПЮРЮБЮММЕ ЯiЯРЩЛШ ОЮЯКЪ ГАНЧ.\n"
"\n"
"фЮДЮЕЖЕ ЯРБЮПШЖЭ ГЮЦПСГЮВМШ ДШЯЙ ГЮПЮГ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "бШАЮВЮИЖЕ, ЮКЕ ДШЯЙЮБНД МЕДЮЯРСОМШ"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "бШАЕПШЖЕ ДШЯЙЮБНД, С ЪЙiЛ АСДГЕ ЯРБЮПЮЖЖЮ ГЮЦПСГЮВМЮЪ ДШЯЙЕРЮ"
+msgstr "бШАЪПШЖЕ ДШЯЙЮБНД, С ЪЙiЛ АСДГЕ ЯРБЮПЮЖЖЮ ГЮЦПСГЮВМЮЪ ДШЯЙЕРЮ"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
-msgstr "сЯРЮБЭЖЕ ДШЯЙЕРС ╒ ДШЯЙЮБНД %s"
+msgstr "сЯРЮ╒ЖЕ ДШЯЙЕРС ╒ ДШЯЙЮБНД %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "яРБЮПЩММЕ ГЮЦПСГЮВМЮИ ДШЯЙЕРШ"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "сЯРЮМН╒ЙЮ LILO МЕ ЮРПШЛЮКЮЯЭ. сГМiЙКЮ МЮЯРСОМЮЪ ОЮЛШКЙЮ:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "бШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "ЦЮКН╒МШЪ НОЖШi SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"SILO ГЛЪЬВЮЕ МЮЯРСОМШЪ ОСМЙРШ.\n"
-"бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЕМiЖЭ iЯМСЧВШЪ."
-
-#: ../../install_steps_interactive.pm_.c:858
-#, fuzzy
-msgid "Partition"
-msgstr "йЮПЮМ╦БШ ПЮГДГЕК"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "цЩРЮЪ ЛЕРЙЮ ╒ФН БШЙЮПШЯРН╒БЮЕЖЖЮ"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "сЯРЮМН╒ЙЮ SILO МЕ ЮРПШЛЮКЮЯЭ. сГМiЙКЮ МЮЯРСОМЮЪ ОЮЛШКЙЮ:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
-msgstr "сЯРЮМЮ╒КiБЮЕЖЖЮ ГЮЦПСГВШЙ..."
+msgstr "оЮДПШУРН╒ЙЮ ГЮЦПСГВШЙЮ"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "бШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
+"оЮЛШКЙЮ ╒ЯРЮК╦╒Йi aboot, \n"
+"ЯОПЮАЮБЮЖЭ СЯРЮК╦╒БЮЖЭ, МЕЦКЕДГЪВШ МЮ ЛЮЦВШЛЮЯЖЭ ОЮПСЬЩММЪ ОЕПЬЮЦЮ ПЮГДЕКЮ?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "мЮЯРПНИЙЮ proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "оПЮЖЩЯ СЯРЮКЪБЮММЪ ГЮЦПСГВШЙЮ МЕ ЮРПШЛЮКЯЪ. сГМiЙКЮ МЮЯРСОМЮЪ ОЮЛШКЙЮ:"
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy ОЮБiММЮ АШЖЭ http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ОЮБiММЮ АШЖЭ ftp://..."
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "яЮПДЩВМЮ ГЮОПЮЬЮЕЛ С Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
-msgstr "лiГЕПМШ"
+msgstr "гСЯЁЛ ЯКЮАШ"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "яКЮАШ"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "яЪПЩДМi"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "бШЯНЙi"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "оЮПЮМЮiДЮКЭМШ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "дЮДЮРЙНБШЪ ОШРЮММi"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(ЛНФЮ БШГБЮЖЭ ГМiЬВЩММЕ ДЮДГЕМШУ)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "бШЙЮПШЯРН╒БЮЖЭ ЮОРШЛiГЮЖШЧ ФНПЯРЙЮЦЮ ДШЯЙЮ?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "сГПНБЕМЭ АЪЯОЕЙi"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr "оЮГМЮВЖЕ ДЮЙКЮДМШ ОЮЛЕП RAM (ГМНИДГЕМЮ %d MB)"
+msgstr "оЮГМЮВЖЕ ДЮЙКЮДМШ ОЮЛЕП RAM (ГМНИДГЕМЮ %d MА)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "ю╒РЮЛЮМЖiПЮБЮММЕ ГЛЕММШУ МЮЙЮОКЪКЭМiЙЮ╒"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
-msgstr ""
+msgstr "юВШЬВЮЖЭ /tmp ОПШ ЙНФМЮИ ГЮЦПСГЖШ"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
-msgstr ""
+msgstr "дЮЯРСОМЮ ЬЛЮР ОПНТiКЪ╒"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "сЙКЧВЩММЕ num lock ОПШ ЯРЮПЖЕ"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
-msgstr "оЮГМЮВЖЕ ОЮЛЕП RAM С MB"
+msgstr "оЮГМЮВЖЕ ОЮЛЕП RAM С MА"
-#: ../../install_steps_interactive.pm_.c:984
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
-msgstr "сГПНБЕМЭ АЪЯОЕЙi"
+msgstr "мЕ ЛЮЦС БШЙЮПШЯРН╒БЮЖЭ ЛЮМЖiПЮБЮММЕ ОПШ БШЯНЙiЛ СГПН╒Мi АЪЯОЕЙi"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
+"юЯЖЪПНЦЮ: опш бшянйIл сгпн║мI аъяоейI ║бюунд ъй ROOT г йюмянкI ме "
+"дюгбюкъежжю!\n"
+"йЮКi БШ ФЮДЮЕЖЕ ╒БЮУНДГiЖЭ ЪЙ root, СБЮУНДГЭЖЕ ЪЙ ЙЮПШЯРЮКЭМiЙ, ГЮРШЛ \n"
+"БШЙНМБЮИЖЕ \"su\".с РЮЙiЛ БШОЮДЙС, ЛНФЮЖЕ БШЙЮПШЯРН╒БЮЖЭ ЛЮЬШМС МЕ ДКЪ "
+"╒ЯЪЦН,\n"
+"Ю РНКЭЙi ЪЙ ЯЕПБЕП.\n"
+"лЮИЖЕ МЮ ╒БЮГЕ, ЬРН БШ АШКi ОЮОЪПЩДФЮМШ."
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi PCI ОПШКЮДШ?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"аСДГЭЖЕ ╒БЮФКiБШ, СЙКЧВЩММЕ NumLock ЛНФЮ ОПШБЕЯЖi ДЮ ОЮЛШКЙНБЮИ\n"
+"ОПЮЖШ ЙКЮБiЪРСПШ (МЮОПШЙКЮД, МЮЖiЯЙ МЮ `p' ДЮЕ `6')."
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "бШЙЮПШЯРЮЖЭ iЯМСЧВСЧ МЮЯРПНИЙС ДКЪ X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
+"жi ФЮДЮЕЖЕ БШ ЯРБЮПШЖЭ Ю╒РЮ╒ЯРЮК╦БЮВМШ ТКНОi-ДШЯЙ ДКЪ ПЕОКiЙЮЖШi linux?"
-#: ../../install_steps_interactive.pm_.c:1038
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1030
+#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "сЯРЮБЭЖЕ ДШЯЙЕРС ╒ ДШЯЙЮБНД %s"
+msgstr "сЯРЮ╒ЖЕ ДШЯЙЕРС ╒ ДШЯЙЮБНД %s"
-#: ../../install_steps_interactive.pm_.c:1046
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
-msgstr "оЮДПШУРН╒ЙЮ ╒ЯРЮМН╒Йi"
+msgstr "яРБЮПЩММЕ ДШЯЙЕРШ ДКЪ ╒ЯРЮК╦╒Йi"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3319,7 +4261,7 @@ msgstr ""
"мЕЙЮРНПШЪ ЙПНЙi МЕ ГЮБЕПЬЮМШ.\n"
"бШ ЯЮОПЮ╒ДШ ФЮДЮЕЖЕ БШИЯЖi ГЮПЮГ?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3331,161 +4273,27 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"бiМЬСЕЛ, СЯРЮМН╒ЙЮ ГЮБЕПЬЮМЮ.\n"
+"бiМЬСЕЛ, СЯРЮК╦╒ЙЮ ГЮБЕПЬЮМЮ.\n"
"бШДЮКiЖЕ ГЮЦПСГЮВМШ ДШЯЙ i МЮЖiЯМiЖЕ enter ДКЪ ОЕПЮГЮЦПСГЙi.\n"
"гЮ iМТЮПЛЮЖШЪИ ОПЮ ГЛЪМЕММi ДЮДГЕМЮЦЮ БШОСЯЙС Linux-Mandrake,\n"
"ГБЪПРЮИЖЕЯЭ МЮ http://www.linux-mandrake.com/.\n"
"IМТЮПЛЮЖШЪ ОЮ МЮЯРПНИЙЕ БЮЬЮИ ЯiЯРЩЛШ ╦ЯРЭ ╒ ОЮЯКЪ-╒ЯРЮМНБЮВМЮИ\n"
"ЦКЮБЕ БЮЬЮЦЮ дЮОЮЛНФМiЙЮ йЮПШЯРЮКЭМiЙЮ Г юТiЖШИМЮЦЮ Linux-Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "бШЙКЧВЩММЕ ЙЮЛО'ЧРЮПЮ"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "сЯРЮМН╒ЙЮ ДПЮИБЕПЮ ДКЪ %s ЙЮПРШ %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(ЛНДСКЭ %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "ъЙНИ %s ДПЮИБЕП ЛМЕ ОЮЯОПЮАЮБЮЖЭ?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ДПЮИБЕПС ОЮРПЩАМЮ МЕЙЮРНПЮЪ ДЮДЮРЙНБЮЪ iМТЮПЛЮЖШЪ,\n"
-"ЮКЕ ГБШВЮИМЮ ЦЩРЮ МЕ ОЮРПЮАСЕЖЖЮ. жi МЕ ФЮДЮЕЖЕ БШ ГЮДЮЖЭ ДКЪ ЪЦН\n"
-"ДЮДЮРЙНБШЪ НОЖШi, Жi ДЮГБНКiЖЕ ДПЮИБЕПС ОПЮРЩЯЖiПЮБЮЖЭ ЛЮЬШМС\n"
-"╒ ОНЬСЙЮУ МЕЮАУНДМЮИ iМТЮПЛЮЖШi? лЮЦВШЛЮ, РЩЯЖiПЮБЮММЕ ОПШБЪДГЕ\n"
-"ДЮ ЮЯРЮМНБЮ ЙЮЛО'ЧРЮПЮ, ЮКЕ ЪМН МiВНЦЮ МЕ ЯОНПЖiЖЭ."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "ю╒РЮОНЬСЙ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "оЮГМЮВЖЕ ОЮПЮЛЕРПШ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "бШ МЕ ЛНФЮЖЕ ГЮДЮЖЭ НОЖШi ЛНДСКЧ %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"бШ МЕ ЛНФЮЖЕ ГЮДЮЖЭ НОЖШi ЛНДСКЧ %s.\n"
-"нОЖШi - С ТЮПЛЮЖЕ ``iЛЪ=ГМЮВЩММЕ iЛЪ2=ГМЮВЩММЕ2 ...''.\n"
-"мЮОПШЙКЮД, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "нОЖШi ЛНДСКЪ:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"гЮЦПСГЙЮ ЛНДСКЪ %s МЕ ОПЮИЬКЮ.\n"
-"фЮДЮЕЖЕ ОЮЯОПЮАЮБЮЖЭ Г iМЬШЛi ОЮПЮЛЕРПЮЛi?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ЙЮПРШ PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "мЮЯРПНИЙЮ ЙЮПР PCMCIA ..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, fuzzy, c-format
-msgid "Try to find %s devices?"
-msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi PCI ОПШКЮДШ?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "гМНИДГЕМШ %s %s iМРЩПТЕИЯШ"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "жi ╦ЯЖЭ С БЮЯ iМЬШ?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "жi ╦ЯЖЭ С БЮЯ %s iМРЩПТЕИЯ?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "мЕ"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "дЮ"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "цК. ЮОiЯЮММЕ ЮАЯРЮКЪБЮММЪ"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "оЮДЙКЧВЩММЕ ДЮ ЯЕРЙi"
-
-#: ../../install_steps_interactive.pm_.c:1207
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "оЮДЙКЧВЩММЕ ДЮ ЯЕРЙi"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
-msgstr "сЯРЮМН╒ЙЮ Linux-Mandrake %s"
+msgstr "сЯРЮК╦╒ЙЮ Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> ОЮЛiФ ЩКЕЛЕМРЮЛi | <Space> БШАЮП | <F12> МЮЯРСОМШ ЩЙПЮМ"
+" <Tab>/<Alt-Tab> ОЮЛiФ ЩКЕЛЕМРЮЛi | <Space> БШАЮП | <F12> МЮЯРСОМШ ЩЙПЮМ "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
-msgstr "йЮКi КЮЯЙЮ ОЮВЮЙЮИЖЕ"
+msgstr "йЮКi КЮЯЙЮ, ОЮВЮЙЮИЖЕ"
#: ../../interactive_stdio.pm_.c:35
#, c-format
@@ -3493,7 +4301,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "мЕБШГМЮВЮМЮЯЖЭ (%s), АСДГЭЖЕ ДЮЙКЮДМЕИ\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "дПЩММШ БШАЮП, ОЮЯОПЮАСИЖЕ ЪЬВЕ\n"
@@ -3507,556 +4315,1050 @@ msgstr " ? (ГЛН╒ВЮММЕ %s) "
msgid "Your choice? (default %s) "
msgstr "бЮЬ БШАЮП? (ГЛН╒ВЮММЕ %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
-msgstr "бЮЬ БШАЮП? (ГЛН╒ВЮММЕ %s. сБЪДГiЖЕ 'none' ОПШ ЮДЯСРМЮЯЖi) "
+msgstr "бЮЬ БШАЮП? (ГЛН╒ВЮММЕ %s. сБЪДГiЖЕ `none' ОПШ ЮДЯСРМЮЯЖi) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "вЕЬЯЙi"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "мЪЛЕЖЙi"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "IЯОЮМЯЙi"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "тiМЯЙi"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "тПЮМЖСГЯЙi"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "мЮПБЕФЯЙi"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "оНКЭЯЙi"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "пСЯЙi"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UK ЙКЮБiЪРСПЮ"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US ЙКЮБiЪРСПЮ"
-#: ../../keyboard.pm_.c:107
-#, fuzzy
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
-msgstr "юПЛЪМЯЙi"
+msgstr "юПЛЪМЯЙi (ЯРЮПШ)"
-#: ../../keyboard.pm_.c:108
-#, fuzzy
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
-msgstr "юПЛЪМЯЙi"
+msgstr "юПЛЪМЯЙi (typewriter)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "юПЛЪМЯЙi (ТЮМЕРШВМШ)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "юГЕПАЮИДФЮМЯЙЁ (latin)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "юГЕПАЮИДФЮМЯЙЁ (ЙЁПШКЁЖЮ)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "аЕКЭЦiИЯЙi"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "аЮКЦЮПЯЙi"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "аПЮГiКЭЯЙi (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "аЕКЮПСЯЙЁ"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "ьБЕИЖЮПЯЙi (мЪЛЕЖЙЮЪ ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "ьБЕИЖЮПЯЙi (тПЮМЖСГЯЙЮЪ ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
-msgstr ""
+msgstr "мЪЛЕЖЙi (МЪЛЮ ГЮАКЮЙiПЮБЮМШУ ЙКЮБiЬ)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "дЮЖЙi"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (мЮПБЕФЯЙi)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "щЯРНМЯЙi"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "цПСГiМЯЙi (\"пСЯЙЮЪ\" ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
-msgstr "цПСГiМЯЙi (\"кЮРiМЯЙЮЪ\" ПЮЯЙКЮДЙЮ)"
+msgstr "цПСГiМЯЙi (\"кЮЖiМЯЙЮЪ\" ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
-msgstr "цПЩВЩЯЙi"
+msgstr "цПЩВЮЯЙi"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "лЮДЭЪПЯЙi"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
-msgstr ""
+msgstr "уЮПБЮЖЙi"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
-msgstr "IБПШР"
+msgstr "I╒ПШР"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
-msgstr "IБПШР (ТЮМЕРШВМШ)"
+msgstr "I╒ПШР (ТЮМЕРШВМШ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IПЮМЯЙi"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IЯКЮМДЯЙi"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "IРЮКЭЪМЯЙi"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "ъОНМЯЙi 106 ЙКЮБiЬ"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "кЮЖiМЮ-юЛЕПШЙЮМЯЙi"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "цЮКЮМДЯЙi"
-#: ../../keyboard.pm_.c:140
-#, fuzzy
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
-msgstr "кiРН╒ЯЙi AZERTY"
+msgstr "кiРН╒ЯЙi AZERTY (ЯРЮПШ)"
-#: ../../keyboard.pm_.c:142
-#, fuzzy
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
-msgstr "кiРН╒ЯЙi AZERTY"
+msgstr "кiРН╒ЯЙi AZERTY (МНБШ)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "кiРН╒ЯЙi \"МСЛЮП ПЮДЙЮ\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "кiРН╒ЯЙi \"ТЮМЕРШВМШ\" QWERTY"
-#: ../../keyboard.pm_.c:146
-#, fuzzy
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
-msgstr "ьБЕИЖЮПЯЙi (мЪЛЕЖЙЮЪ ПЮЯЙКЮДЙЮ)"
+msgstr "оНКЭЯЙi (ЯРЮМДЮПРМЮЪ ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:147
-#, fuzzy
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
-msgstr "ьБЕИЖЮПЯЙi (мЪЛЕЖЙЮЪ ПЮЯЙКЮДЙЮ)"
+msgstr "оНКЭЯЙi (qwertz ПЮЯЙКЮДЙЮ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "оЮПРСЦЮКЭЯЙi"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "йЮМЮДЯЙi (йБЕАЩЙ)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
-msgstr "пСЯЙi (Yawerty)"
+msgstr "пСЯЙi (ъ-б-е-п-р-х)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
-msgstr "ьБЕДЯЙi"
+msgstr "ьБЕЖЙi"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "яКЮБЕМЯЙi"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "яКЮБЮЖЙi"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "рЮИЯЙЮЪ ЙКЮБiЪРСПЮ"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "рСПЩЖЙi (РПЮДШЖШ╦МЮЪ \"F\" ЛЮДЩКЭ)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "рСПЩЖЙi (ЯСВЮЯМЮЪ \"Q\" ЛЮДЩКЭ)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "сЙПЮiМЯЙi"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US ЙКЮБiЪРСПЮ (ЛiФМЮПНДМЮЪ)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "бЭЕРМЮЛЯЙi \"МСЛЮП ПЮДЙЮ\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
-msgstr "чЦЮЯКЮ╒ЯЙi"
+msgstr "чЦЮЯКЮ╒ЯЙi (КЮЖiМЯЙЮЪ ПЮЯЙКЮДЙЮ)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - лШЬ"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "яРЮМДЮПРМШ"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "юЦСКЭМШ"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "г ЙНКЮЛ"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "ОЮЯКЪДН╒МЮЪ"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "гБШВЮИМЮЪ ЛШЬ Г 2 ЙМНОЙЮЛЁ"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "гБШВЮИМЮЪ ЛШЬ Г 3 ЙМНОЙЮЛЁ"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (ОЮЯКЪДН╒МЮЪ, ЯРЮПШ РШО C7)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "мЪЛЮ ЛШЬШ"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 ЙМНОЙi"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 ЙМНОЙi"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "МЪЛЮ"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "мЪЛЮ ЛШЬШ"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "дЮКЕИ ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "цЩРЮ ДЮЙКЮДМЮ?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "мЮЯРПНИЙЮ ГКСВЩММЪ IМРЩПМЩР"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "жi ФЮДЮЕЖЕ ГЮПЮГ ОЮЯОПЮАЮБЮЖЭ ДЮКСВШЖЖЮ ДЮ IМРЩПМЩР?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "мЕ ДЮКСВЮЖЖЮ ДЮ iМРЩПМЩР"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "дЮКСВШЖЖЮ ДЮ IМРЩПМЩР / йЮМТiЦСПЮБЮЖЭ ЯЕРЙС"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "мЮЯРПНИЙЮ ISDN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"бШАЪПШЖЕ БЮЬЮЦЮ ОПЮБЮИДЮПЮ.\n"
+"ЙЮКi ЪЦН МЪЛЮ ╒ ЦЩРШЛ ЯОiЯЕ, БШАЪПШЖЕ РШО ``IМЬШ''"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "мЮЯРПНИЙЮ ДЮКСВЩММЪ ДЮ IМРЩПМЩР"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "йЮКi КЮЯЙЮ, ГЮОН╒МiЖЕ Жi ОЮГМЮВЖЕ ОНКЕ МiФЩИ"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ ЙЮПРШ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "юДПЩЯЮ ОЮЛЪЖЁ ЙЮПРШ (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO ЙЮПРШ"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 ЙЮПРШ"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 ЙЮПРШ"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "бЮЬ ЮЯЮАiЯРШ РЩКЕТНММШ МСЛЮП"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "IЛЪ ОПЮБЮИДЮПЮ, МЮОПШЙКЮД ОПЮБЮИДЮП.net"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "мСЛЮП РЩКЕТНМЮ ОПЮБЮИДЮПЮ"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "DNS 1 ОПЮБЮИДЮПЮ"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "DNS 2 ОПЮБЮИДЮПЮ"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "пЩФШЛ ГКСВЩММЪ"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "IЛЪ ДКЪ ╒БЮУНДС (iЛЪ ЙЮПШЯРЮКЭМiЙЮ)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "оЮПНКЭ ДКЪ ╒БЮУНДС"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "оЮДЖБЕПДГiЖЭ ОЮПНКЭ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "щ╒ПНОЮ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "щ╒ПНОЮ (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "оЮДЙКЧВЩММЕ"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "оЮДЙКЧВЩММЕ - МЕ ОПЮГ D-ЙЮМЮК (БШДГЪКЕМШЪ ЙЮМЮКШ)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "ъЙi ОПЮРЮЙНК БШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "мЕ БЕДНЛЮ"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "ъЙi РШО ЙЮПРШ БШ ЛЮЕЖЕ?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "оПЮЖЪЦМСЖЭ"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "юДЛЪМiЖЭ"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"яЮПДЩВМЮ ГЮОПЮЬЮЕЛ С ДШЯОЕВЮП БШАЮПС ЮОЕПЮЖШИМЮИ ЯiЯРЩЛШ LILO!\n"
-"йЮА БШБЕЯЖi ЯОiЯ ЛЮЦВШЛШУ БЮПШЪМРЮ╒, МЮЖiЯМiЖЕ <TAB>\n"
"\n"
-"йЮА ГЮЦПСГiЖЭ ЮДМС Г iУ, МЮОiЬiЖЕ ЪЕ МЮГБС i МЮЖiЯМiЖЕ <ENTER> ЮКЭАН\n"
-"ВЮЙЮИЖЕ %d ЯЕЙСМД ДКЪ ГЮЦПСГЙi ОЮ ГЛН╒ВЮММЧ.\n"
+"йЮКi БШ ЛЮЕЖЕ ISA ЙЮПРС, БЕКiВШМi МЮ МЮЯРСОМШЛ ЩЙПЮМЕ ОЮБiММШ АШЖЭ "
+"ЯЮОПЮ╒ДМШЛi.\n"
"\n"
+"йЮКi БШ ЛЮЕЖЕ PCMCIA ЙЮПРС, БШ ОЮБiММШ БЕДЮЖЭ irq i io БЮЬЮИ ЙЮПРШ.\n"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr ""
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "ъЙЮЪ ╒ БЮЯ ISDN ЙЮПРЮ?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "гМЮИЬКi ISDN ЙЮПРС:\n"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
+"бШГМЮВЮМЮ ISDN PCI ЙЮПРЮ, ЮКЕ МЕБЪДНЛШ ЪЕ РШО. йЮКi КЮЯЙЮ, ОЮГМЮВЖЕ PCI "
+"ЙЮПРС МЮ МЮЯРСОМШЛ ЩЙПЮМЕ."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr ""
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "йЮПРЮ ISDN PCI МЕ ГМНИДГЕМЮ. йЮКi КЮЯЙЮ, ОЮГМЮВЖЕ МЮ МЮЯРСОМШЛ ЩЙПЮМЕ."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"мi ЮДГiМ ethernet ЯЕРЙЮБЮМШ ЮДЮОРЮП С БЮЬЮИ ЯiЯРЩЛЕ МЕ БШГМЮВЮМШ. йЮКi "
+"КЮЯЙЮ, ЯЙЮПШЯРЮИЖЕ ЙЮМТiЦСПЮЖШИМШ iМЯРПСЛЩМР."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "оЮГМЮВЖЕ ЯЕРЙЮБШ iМРЩПТЕИЯ"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
+"йЮКi КЮЯЙЮ, ОЮГМЮВЖЕ ЯЕРЙЮБШ ЮДЮОРЮП, ЪЙi ОКЮМСЕЖЕ БШЙЮПШЯРН╒БЮЖЭ ДКЪ "
+"ДЮКСВЩММЪ ДЮ iМРЩПМЩР"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "яЕРЙЮБШ iМРЩПТЕИЯ"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "оЕПЮГЮЦПСГiЖЭ ЯЕРЙЮБШ iМРЩПТЕИЯ. гЦНДМШ?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "мЮЯРПНИЙЮ ADSL"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "бШ ФЮДЮЕЖЕ, ЙЮА ЦЩРЮЕ ГКСВЩММЕ ЯРЮПРЮБЮКЮ ОПШ ГЮЦПСГЖШ?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ЛЮДЩЛ?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "дЮ ЪЙНЦЮ ОЮЯКЪДН╒МЮЦЮ ОНПРЮ ДЮКСВЮМШ ЛЮДЩЛ?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "оЮПЮЛЕРПШ ЙЮЛСРЮБЮМЮЦЮ ГКСВЩММЪ (Dialup)"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "IЛЪ ГКСВЩММЪ"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "мСЛЮП РЩКЕТНМЮ"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "IЛЪ (login ID)"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "ю╒РЩМРШТiЙЮЖШЪ"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "МЮ ЮЯМНБЕ ЯЙПШОРЮ"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "МЮ ЮЯМНБЕ РЩПЛiМЮКЮ"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "IЛЪ ДЮЛЕМЮ"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "оЕПЬШ ЯЕПБЕП DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "дПСЦi ЯЕПБЕП DNS:"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "дЮКСВШЖЖЮ ДЮ IМРЩПМЩР / йЮМТiЦСПЮБЮЖЭ ЯЕРЙС"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "мЕ ДЮКСВЮЖЖЮ ДЮ iМРЩПМЩР"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:21
+#: ../../netconnect.pm_.c:586
#, fuzzy
-msgid "Sun - Mouse"
-msgstr "USB лШЬЭ"
+msgid "You are currently connected to internet."
+msgstr "мЕ ДЮКСВЮЖЖЮ ДЮ iМРЩПМЩР"
-#: ../../mouse.pm_.c:23
+#: ../../netconnect.pm_.c:590
#, fuzzy
-msgid "Apple ADB Mouse"
-msgstr "ATI Bus Mouse"
+msgid "Connect to Internet"
+msgstr "гКСВЩММЕ Г IМРЩПМЩР"
-#: ../../mouse.pm_.c:24
+#: ../../netconnect.pm_.c:592
#, fuzzy
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+msgid "Disconnect from Internet"
+msgstr "пЮГЮПБЮЖЭ ГКСВЩММЕ Г iМРЩПМЩР"
-#: ../../mouse.pm_.c:25
+#: ../../netconnect.pm_.c:594
#, fuzzy
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+msgid "Configure network connection (LAN or Internet)"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:26
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "IМРЩПМЩР ГКСВЩММЕ i ЙЮМТiЦСПЮЖШЪ"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
#, fuzzy
-msgid "Apple USB Mouse"
-msgstr "USB лШЬЭ"
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "оЕПЮГЮЦПСГiЖЭ ЯЕРЙЮБШ iМРЩПТЕИЯ. гЦНДМШ?"
-#: ../../mouse.pm_.c:27
+#: ../../netconnect.pm_.c:641
#, fuzzy
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+msgid "Configure a normal modem connection"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:28
+#: ../../netconnect.pm_.c:661
#, fuzzy
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+msgid "Configure an ISDN connection"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Generic Mouse (PS/2)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "сМСРПЮМЮЪ ISDN ЙЮПРЮ"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "гМЕЬМi ЛЮДЩЛ"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Generic 3 Button Mouse (PS/2)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "дЮКСВЩММЕ ДЮ IМРЩПМЩР"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "ъЙi РШО БЮЬЮЦЮ ISDN ГКСВЩММЪ?"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "тПЮМЖШЪ"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "IМЬШЪ ЙПЮiМШ"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "ъЙЮЪ ЙПЮiМЮ БЮЬЮЦЮ ПЮГЛЪЬВЩММЪ?"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "лЮДЩЛ Alcatel"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "лЮДЩЛ ECI"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"йЮКi БЮЬ ADSL ЛЮДЩЛ ЮДМЮ Г ЛЮДЩКЪ╒ Alcatel, ОЮГМЮВЖЕ Alcatel. с iМЬШЛ "
+"БШОЮДЙС - ECI."
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "БШЙЮПШЯРН╒БЮЖЭ pppoe"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "МЕ БШЙЮПШЯРН╒БЮЖЭ pppoe"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"мЮИАНКЭЬ ЮЦСКЭМШ МЮЙiПСМЮЙ ГКСВЮЖЖЮ ОПЮГ adsl ЦЩРЮ dhcp i pppoe.\n"
+"юКЕ Ф, ЦЩРЮ ГКСВЩММЕ ЛНФМЮ ЯРБЮПШЖЭ РНКЭЙi ЙЮКi ЯЙЮПШЯРН╒БЮЖЭ dhcp.\n"
+"йЮКi МЕ БЕДЮЕЖЕ, ЬРН ПЮАiЖЭ, БШАiПЮИЖЕ 'ЯЙЮПШЯРЮЖЭ pppoe'"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB лШЬЭ"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"ъЙi dhcp ЙКiЕМР БШ ОКЮМСЕЖЕ ЯЙЮПШЯРН╒БЮЖЭ?\n"
+"оЮ ГЛН╒ВЮММЧ, ЦЩРЮ dhcpd"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "мЕР ЛШЬШ"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "мЮЯРПНИЙЮ iМРЩПМЩР ГКСВЩММЪ"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ЮКЭАН БШЬЕИ (ОЮЯКЪДН╒МЮЪ))"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "мЮЯРПНИЙЮ КЮЙЮКЭМЮИ ЯЕРЙi"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "йЮМТiЦСПЮЖШЪ ЯЕРЙi"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "жi ФЮДЮЕЖЕ ОПЮРЩЯЖiПЮБЮЖЭ МЮЯРПНИЙi?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "гПЮАiЖЭ МЕЮЙРШ╒МШЛ ЯЕРЙЮБЮЕ ГКСВЩММЕ"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "дЮКСВШЖЖЮ ДЮ IМРЩПМЩР / йЮМТiЦСПЮБЮЖЭ ЯЕРЙС"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"мЮЯРПНИЙi КЮЙЮКЭМЮИ ЯЕРЙi СФН ГЮДЮДГЕМШ.\n"
+"жi ФЮДЮЕЖЕ бШ:"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "ъЙ БШ ОКЮМСЕЖЕ ДЮКСВШЖЖЮ ДЮ IМРЩПМЩР?"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (ОЮЯКЪДН╒МЮЪ)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "йЮМТiЦСПЮЖШЪ ЯЕРЙi"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ОЮЯКЪДН╒МЮЪ, ЯРЮПШ РШО C7)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "ЯЕРЙЮБЮЪ ЙЮПРЮ МЕ ГМНИДГЕМЮ"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Generic Mouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "мЮЯРПНИЙЮ ЯЕРЙi"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft compatible (ОЮЯКЪДН╒МЮЪ)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"сБЪДГiЖЕ iЛЪ ЯБЮ╦И ЛЮЬШМШ (host).\n"
+"IЛЪ БЮЬЮИ ЛЮЬШМШ ОЮБiММЮ АШЖЭ ГЮДЮДГЕМЮ ОН╒МЮЯЖЧ,\n"
+"МЮОПШЙКЮД ``mybox.mylab.myco.com''.\n"
+"бШ ЛНФЮЖЕ РЮЙЯЮЛЮ ╒БЕЯЖi IP ЮДПЮЯ ЬКЧГЮ, ЙЮКi ╦М С БЮЯ ╦ЯЖЭ."
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Generic 3 Button Mouse (ОЮЯКЪДН╒МЮЪ)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "IЛЪ ЛЮЬШМШ"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (ОЮЯКЪДН╒МЮЪ)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Is this correct?"
+#: ../../network.pm_.c:302
+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 ""
+"йЮКi КЮЯЙЮ, СБЪДГiЖЕ IP ЙЮМТiЦСПЮЖШЧ ДКЪ БЮЬЮИ ЛЮЬШМШ.\n"
+"йНФМШ ОСМЙР ОЮБiМЕМ АШЖЭ ГЮОН╒МЕМШ ЪЙ IP ЮДПЮЯ ╒ ДГЕЯЪРЙНБЮ-ЙПНОЙЮБЮИ \n"
+"МЮРЮЖШi (МЮОПШЙКЮД, 1.2.3.4)."
-#: ../../partition_table.pm_.c:528
-msgid "Extended partition not supported on this platform"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "мЮЯРПНИЙЮ ЯЕРЙЮБЮИ ОПШКЮДШ %s"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "ю╒РЮЛЮРШВМШ IP"
+
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP ЮДПЮЯ"
+
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "лЮЯЙЮ ЯЕРЙi"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ЮДПЮЯ ОЮБiМЕМ АШЖЭ С ТЮПЛЮЖЕ 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"сБЪДГiЖЕ iЛЪ ЯБЮ╦И ЛЮЬШМШ (host).\n"
+"IЛЪ БЮЬЮИ ЛЮЬШМШ ОЮБiММЮ АШЖЭ ГЮДЮДГЕМЮ ОН╒МЮЯЖЧ,\n"
+"МЮОПШЙКЮД ``mybox.mylab.myco.com''.\n"
+"бШ ЛНФЮЖЕ РЮЙЯЮЛЮ ╒БЕЯЖi IP ЮДПЮЯ ЬКЧГЮ, ЙЮКi ╦М С БЮЯ ╦ЯЖЭ."
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS ЯЕПБЕП"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "ьКЧГ"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "оПШКЮДЮ-ЬКЧГ"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "мЮЯРПНИЙЮ proxy ЙЩЬШПСЧВШУ ЯЕПБЪПН╒"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../partition_table.pm_.c:546
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy ОЮБiМЕМ АШЖЭ http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy ОЮБiМЕМ АШЖЭ ftp://..."
+
+#: ../../partition_table.pm_.c:540
+msgid "Extended partition not supported on this platform"
+msgstr "оЮЬШПЮМШ ПЮГДГЕК МЕ ОЮДРПШЛКiБЮЕЖЖЮ ЦЩРЮИ ОКЮРТНПЛЮИ"
+
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
"бШ ЛЮЕЖЕ ДГiПЙС ╒ РЮАКiЖШ ПЮДГЕКЮ╒, ЮКЕ Ъ МЕ ЛЮЧ ЛЮЦВШЛЮЯЖi ЪЕ ЯЙЮПШЯРЮЖЭ.\n"
-"юДГiМШ БШУЮД С РШЛ, ЙЮА ОЕПЮЛЪЯЖiЖЭ ОЕПЬЮЯМШЪ ПЮГДГЕКШ РЮЙ, ЙЮА ДГiПЙЮ iЬКЮ "
+"юДГiМШ БШУЮД С РШЛ, ЙЮА ОЕПЮЛЪЯЖiЖЭ ОЕПЬЮЯМШЪ ПЮГДГЕКШ РЮЙ, ЙЮА ДГiПЙЮ iЬКЮ\n"
"ЮДПЮГС ГЮ ОЮЬШПЮМШЛ (extended) ПЮГДГЕКЮЛ"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "оЮЛШКЙЮ ВШРЮММЪ ТЮИКЮ %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "юДМЮ╒КЕММЕ Г ТЮИКЮ %s: МЕ ЮРПШЛЮКЮЯЭ %s"
+msgstr "юДМЮ╒КЕММЕ Г ТЮИКЮ %s МЕ ЮРПШЛЮКЮЯЪ: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
-msgstr "дПЩММШ ТЮИК Г ПЩГЕПБМЮИ ЙНОiЪИ"
+msgstr "дПЩММШ ТЮИК ПЩГЕПБНБЮИ ЙНОii"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "оЮЛШКЙЮ ГЮОiЯС ╒ ТЮИК %s"
#: ../../pkgs.pm_.c:20
msgid "mandatory"
-msgstr ""
+msgstr "ЮАЮБЪГЙНБЮ"
#: ../../pkgs.pm_.c:21
msgid "must have"
-msgstr ""
+msgstr "ОЮБiММШ ЛЕЖЭ"
#: ../../pkgs.pm_.c:22
msgid "important"
-msgstr ""
+msgstr "БЮФМЮ"
#: ../../pkgs.pm_.c:24
msgid "very nice"
-msgstr ""
+msgstr "БЕКЭЛi ДНАПЮ"
#: ../../pkgs.pm_.c:25
-#, fuzzy
msgid "nice"
-msgstr "СЯРПНИЯРБЮ:"
+msgstr "ДНАПЮ"
#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-#, fuzzy
msgid "interesting"
-msgstr "ГЛЪМЕММЕ ОЮЛЕПЮ╒"
+msgstr "ЖiЙЮБЮ"
#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
#: ../../pkgs.pm_.c:31
-#, fuzzy
msgid "maybe"
-msgstr "бНАПЮГ"
+msgstr "ЛНФЮ АШЖЭ"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
-msgstr ""
+msgstr "i18n (БЮФМЮ)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
-msgstr ""
+msgstr "i18n (БЕКЭЛi ДНАПЮ)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
-msgstr ""
-
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "оЮЙЮГЮЖЭ ЛЕМЬ"
+msgstr "i18n (ДНАПЮ)"
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "оЮЙЮГЮЖЭ АНКЭЬ"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "кЮЙЮКЭМШ ОПШМРЩП"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "юДДЮКЕМШ lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "юДДЮКЕМШ ОПШМРЩП"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "юДДЮКЕМШ ЯЕПБЕП CUPS"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "юДДЮКЕМШ ЯЕПБЕП lpd"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "яЕРЙЮБШ ОПШМРЩП (socket)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "URI ОПШМРЩПЮ"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "бШГМЮВЩММЕ ОПШКЮД..."
@@ -4068,51 +5370,51 @@ msgstr "оПЮБЕПЙЮ ОЮПРН╒"
#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
-msgstr "оПШМРЩП ЛЮДЩКi \"%s\" ГМНИДГЕМ МЮ "
+msgstr "оПШМРЩП ЛЮДЩКi \"%s\" ГМНИДГЕМШ МЮ "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
-msgstr "кЮЙЮКЭМШИ ОПШМРЩП"
+msgstr "кЮЙЮКЭМШ ОПШМРЩП"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-"дЮ ЪЙНЦЮ ╒ЯРПНИЯРБЮ ОЮДЙКЧВЮМШ БЮЬ ОПШМРЩП \n"
+"дЮ ЪЙНЦЮ ОНПРС ДЮКСВЮМШ БЮЬ ОПШМРЩП \n"
"(/dev/lp0 ЩЙБiБЮКЕМРМШ LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
-#, fuzzy
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
-msgstr "оПШМРЩП:"
+msgstr "оНПР ОПШМРЩПЮ"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "нОЖШi ЮДДЮКЕМЮЦЮ ОПШМРЩПЮ lpd"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"дКЪ МЮЯРПНИЙi ЮДДЮКЕМЮИ ВЮПЦi ДПСЙС БЮЛ ОЮРПЩАМЮ ОЮГМЮВШЖЭ iЛЪ ЮДДЮКЕМЮЦЮ "
-"ЯЕПБЕПЮ i iЛЪ ВЮПЦi ДПСЙС, С ЪЙСЧ ЮДДЮКЕМШ ЯЕПБЕП АСДГЕ ЮДОПЮ╒КЪЖЭ ГЮДЮММi."
+"дКЪ МЮЯРПНИЙi ЮДДЮКЕМЮИ ВЮПЦi ДПСЙС БЮЛ ОЮРПЩАМЮ\n"
+"ОЮГМЮВШЖЭ iЛЪ ЮДДЮКЕМЮЦЮ ЯЕПБЕПЮ i iЛЪ ВЮПЦi ДПСЙС,\n"
+"С ЪЙСЧ ЮДДЮКЕМШ ЯЕПБЕП АСДГЕ ЮДОПЮ╒КЪЖЭ ГЮДЮММi."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
-msgstr "юДДЮКЕММШ ЯЕПБЕП"
+msgstr "юДДЮКЕМШ БСГЕК"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "юДДЮКЕМЮЪ ВЮПЦЮ ДПСЙС"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "нОЖШi ОПШМРЩПЮ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4121,31 +5423,31 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
"дКЪ ДПСЙС МЮ ОПШМРЩПШ SMB МЕЮАУНДМЮ ОЮГМЮВШЖЭ iЛЪ УЮЯРЮ SMB (МЕ ГЮ╒Я╦ДШ "
-"ЯСОЮДЮЕ Г iЛЕМЕЛ С ЯЕРЙЕ TCP/IP) i ЮДПЮЯ IP ЯЕПБЕПЮ ДПСЙС, Ю РЮЙЯЮЛЮ iЛЪ "
+"ЯСОЮДЮЕ Г iЛЕМЕЛ С ЯЕРЖШ TCP/IP) i ЮДПЮЯ IP ЯЕПБЕПЮ ДПСЙС, Ю РЮЙЯЮЛЮ iЛЪ "
"ПЩЯСПЯЮ, ЪЙi ЯОЮКСВЮМШ Г БШАПЮМШЛ ОПШМРЩПЮЛ, iЛЪ ЙЮПШЯРЮКЭМiЙЮ, ОЮПНКЭ i "
"iМТЮПЛЮЖШЧ ЮА ПЮАНВЮИ ЦПСОЕ."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "IЛЪ ЯЕПБЕПЮ SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP ЯЕПБЕПЮ SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
-msgstr "IЛЪ ПЩЯСПЯЮ"
+msgstr "IЛЪ ДКЪ ПЮГЛЕПЙЮБЮМЮЦЮ ПЩЯСПЯЮ"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "пЮАНВЮЪ ЦПСОЮ"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "нОЖШi ОПШМРЩПЮ NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4153,156 +5455,226 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
"дКЪ ДПСЙС МЮ ОПШМРЩП NetWare МЕЮАУНДМЮ ОЮГМЮВШЖЭ iЛЪ ЯЕПБЕПЮ ДПСЙС NetWare "
-"(МЕ ГЮ╒Я╦ДШ ЯСОЮДЮЕ Г iЛЕМЕЛ С ЯЕРЙЕ TCP/IP) i iЛЪ ВЮПЦi ДПСЙС, ЪЙЮЪ "
+"(МЕ ГЮ╒Я╦ДШ ЯСОЮДЮЕ Г iЛЕМЕЛ С ЯЕРЖШ TCP/IP) i iЛЪ ВЮПЦi ДПСЙС, ЪЙЮЪ "
"ЮДОЮБЪДЮЕ БШАПЮМЮЛС ОПШМРЩПС, Ю РЮЙЯЮЛЮ iЛЪ ЙЮПШЯРЮКЭМiЙЮ i ОЮПНКЭ."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "яЕПБЕП ДПСЙС"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "IЛЪ ВЮПЦi ДПСЙС"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "нОЖШi ЯНЙЕРС ОПШМРЩПЮ"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"йЮА ДПСЙЮБЮЖЭ ОПЮГ ЯНЙЕР ДПСЙЮПЙi, БЮЛ МЕЮАУНДМЮ ГЮАЪЯОЕВШЖЭ\n"
+"iЛЪ ОПШМРЩПЮ i ЛЮЦВШЛЮ ЪЦН МСЛЮП ОНПРС."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "IЛЪ ОПШМРЩПЮ"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "оНПР"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "бШ ЛНФЮЖЕ БШГМЮВШЖЭ МЮОПЮЛСЧ URI ЙЮА ДЮКСВШЖЖЮ ДЮ ДПСЙЮПЙi Г CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "ъЙi РШО ДПСЙЮПЙi БШ ЛЮЕЖЕ?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "фЮДЮЕЖЕ ОПЮРЩЯЖiПЮБЮЖЭ ДПСЙ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "дПСЙ РЩЯРЮБШУ ЯРЮПНМЮЙ"
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"рЩЯРЮБШЪ ЯРЮПНМЙi ЮДОПЮ╒КЕМШ ДЩЛЮМС ДПСЙС.\n"
+"оЕПЮД РШЛ, ЪЙ ОПШМРЩП ГЮОПЮЖСЕ, ЛНФЮ ОПЮИЯЖi МЕЙЮРНПШ ВЮЯ.\n"
+"яРЮРСЯ ДПСЙС:\n"
+"%s\n"
+"\n"
+"╗М ОПЮЖСЕ МЮПЛЮКЭМЮ?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"рЩЯРЮБШЪ ЯРЮПНМЙi ЮДОПЮ╒КЕМШ ДЩЛЮМС ДПСЙС.\n"
+"оЕПЮД РШЛ, ЪЙ ОПШМРЩП ГЮОПЮЖСЕ, ЛНФЮ ОПЮИЯЖi МЕЙЮРНПШ ВЮЯ.\n"
+"╗М ОПЮЖСЕ МЮПЛЮКЭМЮ?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
-msgstr "дЮ, МЮДПСЙЮБЮЖЭ ЯРЮПНМЙС РЩЙЯРЮ ASCII"
+msgstr "рЮЙ, МЮДПСЙЮБЮЖЭ ЯРЮПНМЙС РЩЙЯРЮ ASCII"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
-msgstr "дЮ, МЮДПСЙЮБЮЖЭ ЯРЮПНМЙС РЩЙЯРЮ PostScript"
+msgstr "рЮЙ, МЮДПСЙЮБЮЖЭ ЯРЮПНМЙС РЩЙЯРЮ PostScript"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
-msgstr "дЮ, МЮДПСЙЮБЮЖЭ ЮАНДБЕ ЯРЮПНМЙi РЩЙЯРЮ"
+msgstr "рЮЙ, МЮДПСЙЮБЮЖЭ ЮАНДБЕ ЯРЮПНМЙi РЩЙЯРЮ"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "мЮЯРПНИЙЮ ОПШМРЩПЮ"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "бШАЕПШЖЕ РШО ОПШМРЩПЮ:"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "нОЖШi ОПШМРЩПЮ"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "оЮЛЕПШ ОЮОЕПШ"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "бШЬРСПУБЮЖЭ ОЮОЕПС ОЮЯКЪ ДПСЙС?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "оЮПЮЛЕРПШ ДПЮИБЕПЮ Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "оЮПЮЛЕРПШ ЦКШАiМi ЙНКЕПС"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
-msgstr ""
+msgstr "дПСЙЮБЮЖЭ РЩЙЯР ЪЙ PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
-msgstr ""
+msgstr "юДБЮПНРМШ ОЮПЮДЮЙ ЯРЮПНМЮЙ"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
-msgstr "йЮПЩЙРШПЮБЮЖЭ \"ЯРСОЕМЙЮБШ ДПСЙ\"?"
+msgstr "йЮПЩЙРЮБЮЖЭ ОПШЯРСОЙЮБШ РЩЙЯР?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
-msgstr ""
+msgstr "мСЛЮП ЯРЮПНМЙi ЮД ЙНКЭЙЮЯЖi МЮДПСЙЮБЮМШУ ЯРЮПНМЮЙ"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
-msgstr ""
+msgstr "оПЮБЮЕ/КЕБЮЕ ОЮКi ╒ ЙПНОЙЮУ (1/72 ДГЧИЛЮ)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
-msgstr ""
+msgstr "бЕПУМЪЕ/мiФМЪЕ ОЮКi ╒ ЙПНОЙЮУ (1/72 ДГЧИЛЮ)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
-msgstr ""
+msgstr "дЮДЮРЙНБШЪ НОЖШi GhostScript"
-#: ../../printerdrake.pm_.c:187
-#, fuzzy
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
-msgstr "оЮПЮЛЕРПШ ЦКШАiМi ЙНКЕПС"
+msgstr "дЮДЮРЙНБШЪ ОЮПЮЛЕРПШ РЩЙЯРС"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "фЮДЮЕЖЕ ОПЮРЩЯЖiПЮБЮЖЭ ДПСЙ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "дПСЙ РЩЯРЮБШУ ЯРЮПНМЮЙ"
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"рЩЯРЮБШЪ ЯРЮПНМЙi ЮДОПЮ╒КЕМШ ДЩЛЮМС ДПСЙС.\n"
-"оЕПЮД РШЛ, ЪЙ ОПШМРЩП ГЮОПЮЖСЕ, ЛНФЮ ОПЮИЯЖi МЕЙЮРНПШ ВЮЯ.\n"
-"яРЮРСЯ ДПСЙС:\n"
-"%s\n"
-"\n"
-"╗М ОПЮЖСЕ МЮПЛЮКЭМЮ?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"рЩЯРЮБШЪ ЯРЮПНМЙi ЮДОПЮ╒КЕМШ ДЩЛЮМС ДПСЙС.\n"
-"оЕПЮД РШЛ, ЪЙ ОПШМРЩП ГЮОПЮЖСЕ, ЛНФЮ ОПЮИЯЖi МЕЙЮРНПШ ВЮЯ.\n"
-"╗М ОПЮЖСЕ МЮПЛЮКЭМЮ?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "оПШМРЩП"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "фЮДЮЕЖЕ МЮЯРПНiЖЭ ОПШМРЩП?"
-#: ../../printerdrake.pm_.c:243
-#, fuzzy
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
msgstr ""
-"LILO ГЛЪЬВЮЕ МЮЯРСОМШЪ ОСМЙРШ.\n"
-"бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЕМiЖЭ iЯМСЧВШЪ."
+"рСР ГЛЪЬВЮЧЖЖЮ ВЩПЦi ДПСЙС.\n"
+"бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЪМiЖЭ iЯМСЧВШЪ."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "вЮЙЮЕЖЖЮ"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
-msgstr "бШАЮП РШОС ОЮДЙКЧВЩММЪ ОПШМРЩПЮ"
+msgstr "бШАЮП РШОС ГКСВЩММЪ ОПШМРЩПЮ"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
-msgstr "бШАЕПШЖЕ РШО ГКСВЩММЪ:"
+msgstr "ъЙ ОПШМРЮП ДЮКСВЮМШ?"
-#: ../../printerdrake.pm_.c:272
-#, fuzzy
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "бШАЮП РШОС ГКСВЩММЪ Г ЮДДЮКЕМШЛ ОПШМРЩПЮЛ"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"юДДЮКЕМШ CUPS ЯЕПБЕП МЕ ОЮРПЮАСЕ ЮД бЮЯ МЮЯРПНИЙЁ ОПШМРЩПЮ\n"
+"МЮ ЦЩРЮИ ЛЮЬШМЕ, ╦М АСДГЕ ГМНИДГЕМШ Ю╒РЮЛЮРШВМЮ.\n"
+"йЮКЁ бШ МЕ ╒ОЩ╒МЕМШ, БШАЕПШЖЕ \"юДДЮКЕМШ ЯЕПБЕП CUPS\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
-msgstr "юДДЮКЕМЮЪ ВЮПЦЮ ДПСЙС"
+msgstr "бШДЮКiЖЭ ВЮПЦС ДПСЙС"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"йНФМЮЪ ВЮПЦЮ ДПСЙС, С ЪЙСЧ ЮДОПЮ╒КЪЧЖЖЮ ГЮДЮММi ДКЪ ДПСЙС, ОЮРПЮАСЕ "
+"ОЮГМЮВЩММЪ iЛЪ (ГБШВЮИМЮ lp). дПСЦiЪ ОЮПЮЛЕРПШ, РЮЙiЪ ЪЙ ЮОiЯЮММЕ ДПСЙЮПЙi "
+"Жi\n"
+" ЪЦН ПЮГЛЕПЙЮБЮММЕ, ЛНЦСЖЭ АШЖЭ ОЮГМЮВЮМШ. ъЙНЕ iЛЪ ДЮ ДПЮЙСПЙi БШ АСДГЕЖЕ\n"
+"ЯЙЮПШЯРН╒БЮЖЭ i ЪЙ ЦЩРЮЪ ДПСЙЮПЙЮ ДЮКСВЮЕЖЖЮ?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "IЛЪ ДПСЙЮПЙi"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "юОiЯЮММЕ"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "пЮГЛЕПЙЮБЮММЕ"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4310,83 +5682,97 @@ msgid ""
"connected?"
msgstr ""
"йНФМЮЪ ВЮПЦЮ ДПСЙС, С ЪЙСЧ ЮДОПЮ╒КЪЧЖЖЮ ГЮДЮММi ДКЪ ДПСЙС, ОЮРПЮАСЕ "
-"ОЮГМЮВЩММЪ iЛЕМi (ГБШВЮИМЮ lp) i ЯОЮКСВЮМЮЦЮ Г МЕИ ЙЮРЮКНЦЮ ЯОСКiМЦЮ. "
-"оЮГМЮВЖЕ iЛЪ i ЙЮРЮКНЦ ДКЪ ВЮПЦi."
+"ОЮГМЮВЩММЪ iЛЪ (ГБШВЮИМЮ lp) i ЯОЮКСВЮМЮЦЮ Г ╦Ч ЙЮРЮКНЦЮ ЯОСКiМЦЮ. оЮГМЮВЖЕ "
+"iЛЪ i ЙЮРЮКНЦ ДКЪ ВЮПЦi."
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "IЛЪ ВЮПЦi ДПСЙС"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "дШПЩЙРНПШЪ ЯОСКiМЦЮ"
-#: ../../printerdrake.pm_.c:278
-#, fuzzy
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
-msgstr "бШАЮП РШОС ОЮДЙКЧВЩММЪ ОПШМРЩПЮ"
+msgstr "гКСВЩММЕ ОПШМРЩПЮ"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "мЕ ЮРПШЛКiБЮЕЖЖЮ ДЮДЮЖЭ ПЮГДГЕК МЮ _ЮДТЮПЛЮЖiПЮБЮМШ_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "мЕ ЮРПШЛКiБЮЕЖЖЮ ГЮОiЯ С ТЮИК $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
-msgstr ""
+msgstr "mkraid МЕ ОПЮЖЮГДНКЭМШ"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr ""
+msgstr "mkraid МЕ ОПЮЖЮГДНКЭМШ (ЛНФЮ raid ОПШКЮДШ ЮДЯСРМiВЮЧЖЭ?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "мЕДЮЯРЮРЙНБЮ ПЮГДГЕКЮ╒ ДКЪ RAID СГПН╒МЪ %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
-msgstr ""
+msgstr "Anacron, ОЕПШЪДШВМШ ЙЮЛЮМДМШ ОКЮМЮБЮКЭМiЙ."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"ampd БШЙЮПШЯРН╒БЮЕЖЖЮ ДКЪ ЮДЯКЕФБЮММЪ ЯРЮРСЯС АЮРЮПЩi i БЪДГЕММЪ "
+"ЯРЮРШЯРШЙi.\n"
+"ъЦН ЛНФМЮ БШЙЮПШЯРН╒БЮЖЭ ДКЪ БШЙКЧВЩММЪ ЛЮЬШМШ ОПШ МiГЙiЛ ГЮПЮДГЕ АЮРЮПЩi."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
+"йЮЛЮМДШ, ЪЙiЪ БШЙНМБЮЧЖЖЮ, ТiЙЯСЧЖЖЮ ОЮ ЙЮЛЮМДГЕ i ВЮЯС ЪЕ БШЙЮМЮММЪ\n"
+"i БШЙНМБЮЧЖЖЮ ЦПСОШ ЙЮЛЮМД, ЙЮКi ГЮЦПСГЙЮ ОЮЛЪЖi МiФЩИ ДЮЯРЮРЙНБЮИ."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
+"cron - ЯРЮМДЮПРМЮЪ UNIX ОПЮЦПЮЛЮ, ЪЙЮЪ БШЙНМБЮЕ ОПЮЦПЮЛШ ЙЮПШЯРЮКЭМiЙЮ\n"
+"ОПЮГ ОЮГМЮВЮМШЪ ОЕПШЪДШ ВЮЯС. Vixie cron ДЮДЮЕ ПЮД ДЮОЮ╒МЕММЪ╒ ДЮ "
+"ЯРЮМДЮПРМЮЦЮ\n"
+"UNIX cron, СЙКЧВЮЧВШ КЕОЬШ ╒ГПНБЕМЭ АЪЯОЕЙi i ЛНЖМШЪ ЙЮМТiЦСПЮЖШИМШЪ НОЖШi."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
+"GPM ДЮДЮЕ ОЮДРПШЛЙС ЛШЬi ДЮ ОПЮЦПЮЛЮ╒, ЪЙiЪ ОПЮЖСЧЖЭ С РЩЙЯРЮБШЛ ПЩФШЛЕ,\n"
+"РЮЙiУ ЪЙ Midnight Commander. цЩРЮ ДЮГБЮКЪЕ БШЙЮПШЯРН╒БЮЖЭ ЛШЬ ОПШ "
+"ЙЮОiПЮБЮММi i ╒ЯРЮ╒ЖШ,\n"
+"i ╒ЙКЧВЮЕ ОЮДРПШЛЙС ╒ЯОКШБЮЧВШУ (pop-up) ЛЕМЧ ╒ РЩЙЯРЮБШЛ ПЩФШЛЕ."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
+"Apache - ЦЩРЮ World Wide Web ЯЕПБЕП. ╗М БШЙЮПШЯРН╒ГБЮЕЖЮ ДКЪ ЮАЯКСЦН╒БЮММЪ\n"
+"HTML ТЮИКЮ╒ i CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4395,163 +5781,363 @@ msgid ""
"disables\n"
"all of the services it is responsible for."
msgstr ""
+"IМРЩПМЩР ЯСОЕПЯЕПБЕП-ДЩЛЮМ (МЮГШБЮЕЖЖЮ inetd) ГЮОСЯЙЮЕ ОПШ ЯРЮПЖЕ \n"
+"ЙНКЭЙЮЯЖЭ ПНГМШУ iМРЩПМЩР ЯКСФАЮ╒, ЪЙiЪ МЕЮАУНДМШ. ъЦН ЛНФМЮ БШЙЮПШЯРН╒БЮЖЭ "
+"ДКЪ ОСЯЙС\n"
+"ЛМНЦiУ ЯКСФАЮ╒, СЙКЧВЮЧВШ telnet, ftp, rsh i rlogin. аКЮЙiПСЪ inetd, "
+"АКЮЙiПСЕЛ\n"
+"СЯЕ ЯКСФАШ, ГЮ ЪЙiЪ ╦М ЮДЙЮГБЮЕ."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
+"цЩРШ ОЮЙЕР ГЮЦПСФЮЕ ЮАПЮМСЧ ПЮЯЙКЮДЙС ЙКЮБiЪРСПШ ЪЙ МЮАНП Г\n"
+"/etc/sysconfig/keyboard. ╗МЮ ЛНФЮ АШЖЭ ЮАПЮМЮ РЮЙЯЮЛЮ Г ДЮОЮЛНЦЮИ "
+"kbdconfig.\n"
+"бШ ЛНФЮЖЕ ГПЮАiЖЭ ДЮЯРСОМЮИ ЪЕ ДКЪ ЛМНЦiУ ЛЮЬШМ."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
+"lpd - ЦЩРШ ДЩЛЮМ ДПСЙС, ОЮРПЩАМШ ДКЪ ЙЮПЩЙРМЮИ ОПЮЖШ lpr. цЩРЮ\n"
+"ЯЕПБЕП, ЪЙi ЙiПСЕ ОПЮЖЮИ ОПШМРЩПС(Ю╒)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
+"named (BIND) - ЦЩРЮ ЯЕПБЕП ДЮЛЕММШУ iЛ╦МЮ╒, ЪЙi БШЙЮПШЯРН╒БЮЕЖЖЮ ДКЪ\n"
+"ОЕПЮЙКЮДЮММЪ iЛ╦М БСГКН╒ С IP ЮДПЮЯШ."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
+"лЮМЖiПЮБЮЖЭ i ПЮГЛЮМЖiПЮБЮЖЭ СЯЕ ЯЕРЙЮБШЪ ТЮИКЮБШЪ ЯiЯРЩЛШ (NFS),\n"
+" SMB (Lan Manager/Windows) i NCP (Netware) ЙПНОЙi ЛЮМЖiПЮБЮММЪ."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
+"юЙРШБiГЮБЮЖЭ/ДЩЮЙРШБiГЮБЮЖЭ СЯЕ ЯЕРЙЮБШЪ iМРЩПТЕИЯШ, ЯЙЮМТiЦСПЮБЮМШЪ ДКЪ\n"
+"ЯРЮПРС ОПШ ГЮЦПСГЖШ ЯiЯРЩЛШ."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
+"NFS - ЦЩРЮ БЪДНЛШ ОПЮРЮЙНК ДКЪ ДНЯРСОС ДЮ ТЮИКЮ╒ ОПЮГ TCP/IP ЯЕРЙi.\n"
+"цЩРЮЪ ЯКСФАЮ ГЮАЪЯОЕВБЮЕЖЖЮ NFS ЯЕПБЕПЮЛ, ЪЙi ЙЮМТiЦСПШПСЕЖЮ ОПЮГ\n"
+"/etc/exports ТЮИК."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS - ЦЩРЮ БЪДФНЛШ ОПЮРЮЙНК ДКЪ ДНЯРСОС ДЮ ТЮИКЮ╒ ОПЮГ TCP/IP\n"
+"ЯЕРЙi. цЩРЮЪ ЯКСФАЮ ╒ОКШБЮЕ МЮ МЮЪ╒МЮЯЖЭ ЯСБЪГi ОЮЛiФ NFS ТЮИКЮЛi."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
+"оЮДРПШЛЙЮ PCMCIA - ЦЩРЮ ГБШВЮИМЮ ОЮДРПШЛЙЮ РЮЙiУ ПЩВЮ╒, ЪЙ Ethernet i\n"
+"ЛЮДЩЛШ ╒ МЮ╒РАСЙЮУ. бЮЛ МЪЛЮ МЕЮАУНДМЮЯЖi ЙЮМТiЦСПЮБЮЖЭ iУ, ЙЮКi МЮ БЮЬЮИ\n"
+"ЛЮЬШМЕ iУ МЪЛЮ, Жi ЪМЮ МЕ МЮ╒РАСЙ."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
+"Portmapper (ЮЦКЪДЮКЭМiЙ ОЮПРН╒) ЙiПСЕ RPC ГКСВЩММЪЛi, ЪЙiЪ ГБШВЮИМЮ\n"
+"БШЙЮПШЯРН╒БЮЧЖЖЮ РЮЙiЛi ОПЮРЮЙНКЮЛi ЪЙ NFS i NIS. Portmap ЯЕПБЕП ОЮБiМЕМ "
+"БШЙНМБЮЖЖЮ\n"
+"МЮ ЛЮЬШМЮУ ЪЙiЪ ОПЮЖСЧЖЭ ЪЙ ЯЕПБЕПШ ДКЪ ОПЮРЮЙНКЮ╒, ЪЙiЪ ЯЙЮПШЯРН╒БЮЧЖЭ RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
+"Postfix - ЦЩРЮ ОЮЬРНБШ РПЮМЯОЮПРМШ ЮЦЕМР, ОПЮЦПЮЛЮ, ЙЮРНПЮЪ\n"
+"ОЕПЮЛЪЬВЮЕ ОНЬРС Г ЮДМНИ ЛЮЬШМШ МЮ ДПСЦСЧ."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
+"гЮУЮБЮЖЭ i ЮДМЮБiЖЭ ЯiЯРЩЛМШ ЩМРПЮОiИМШ ОСК ДКЪ БШЯНЙЮИ ЪЙЮЯЖi\n"
+"ЦЕМЕПЮЖШЁ БШОЮДЙНБШУ КЁЙЮ╒."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
+"дЩЛЮМ ЛЮПЬПСРШГЮЖШi ДЮГБЮКЪЕ ДКЪ ДШМЮЛiВМШУ РЮАКiЖ IP ЛЮПЬПСРШГЮЖШi\n"
+"ЮДМЮ╒КЪЖЖЮ ОПЮГ RIP ОПЮРЮЙНК. RIP БШЙЮПШЯРН╒БЮЕЖЖЮ ╒ ЛЮКШУ ЯЕРЙЮУ, АНКЭЬ\n"
+"ЯЙКЮДЮМШЪ ОПЮРЮЙНКШ ЛЮПЬПСРШГЮЖШi - С БЪКiЙiУ ЯЕРЙЮУ."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
+"оПЮРЮЙНК rstat ДЮГБЮКЪЕ ЙЮПШЯРЮКЭМiЙЮЛ ЯЕРЙi ЮРПШЛКiБЮЖЭ\n"
+"ОЮЛЕПШ МЮЦПСГЙi ДКЪ ЙНФМЮИ ЛЮЬШМШ ЯЕРЙi."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
+"оПЮРЮЙНК rusers ДЮГБЮКЪЕ ЙЮПШЯРЮКЭМiЙЮЛ ЯЕРЙi БШГМЮВЮЖЭ, УРН\n"
+"╒БЮИЬН╒ i ОПЮЖСЕ МЮ ЛЮЬШМЮУ ╒ ЯЕРЖШ."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
+"оПЮРЮЙНК rwho ДЮЕ ЛЮЦВШЛЮЯЖЭ ЙЮПШЯРЮКЭМiЙЮЛ ЮРПШЛЮЖЭ ЯОiЯ ╒ЯiУ\n"
+"ЙЮПШЯРЮКЭМiЙЮ╒, СБЮИЬН╒ЬШУ МЮ ЛЮЬШМС, БШЙЮМЮ╒ rwho ДЩЛЮМ (ОЮДНАМШ МЮ finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
+"Syslog - ЦЩРЮ ЯПНДЮЙ, Г ДЮОЮЛНЦЮИ ЪЙНЦЮ ЛМНЦiЪ ДЩЛЮМШ ГЮОiЯБЮЧЖЭ "
+"ОЮБЕДЮЛКЕММi\n"
+"╒ ПНГМШЪ ТЮИКШ ЯРЮРШЯРШЙi. цЩРЮ БЕКЭЛi ДНАПЮ ДКЪ ЮЦКЪДС ОПЮЖШ ПНГМШУ ЯКСФА."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
-msgstr ""
+msgstr " цЩРШ ОСЯЙЮБШ ЯЙПШОР ЮДМЮ╒КЪЕ ╒ЯЕ ЛНДСКi ДКЪ usb ЛШЬi."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
-msgstr ""
+msgstr "гЮОСЯЙЮЕ i ОПШОШМЪЕ X Font Server ОПШ ГЮЦПСГЖШ i БШЙКЧВЩММi."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
-msgstr "бШАЕПШЖЕ, ЪЙiЪ ЯЕПБiЯШ ГЮОСЯЙЮЖЭ Ю╒РЮЛЮРШВМЮ ОПШ ГЮЦПСГЙЕ"
+msgstr "бШАЪПШЖЕ, ЪЙiЪ ЯЕПБiЯШ ГЮОСЯЙЮЖЭ Ю╒РЮЛЮРШВМЮ ОПШ ГЮЦПСГЖШ"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
+msgstr ""
+"рЮАКiЖЮ ПЮГДГЕКЮ╒ МЕ ВШРЮЕЖЖЮ, ЪМЮ ГЮМЮДРЮ ЯОНПВЮМЮ ДКЪ ЛЕМЪ :(\n"
+"оЮЯОПЮАСЧ iЯЖi ДЮКЕИ i АСДС ОПЮОСЯЙЮЖЭ ДПЩММШЪ ПЮГДГЕКШ"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Configure LILO/GRUB"
+msgstr "мЮЯРПНИЙЮ LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:26
+msgid "Create a boot floppy"
+msgstr "яРБЮПШЖЭ ГЮЦП. ДШЯЙ"
+
+#: ../../standalone/drakboot_.c:28
+msgid "Format floppy"
+msgstr "тЮПЛЮЖiПЮБЮЖЭ ДШЯЙЕРС"
+
+#: ../../standalone/drakboot_.c:40
+msgid "Choice"
+msgstr "бШАЮП"
+
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "сЯРЮК╦╒ЙЮ LILO МЕ ЮРПШЛЮКЮЯЪ. сГМiЙКЮ МЮЯРСОМЮЪ ОЮЛШКЙЮ:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "яСЛЕЯМЮЕ IМРЩПМЩР-ГКСВЩММЕ ГЮПЮГ ЛЮЦВШЛЮ"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
+"What would you like to do?"
+msgstr "сЯРЮК╦╒ЙЮ ЯСЛЕЯМЮЦЮ IМРЩПМЩР-ГКСВЩММЪ БШЙЮМЮМЮ.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "рЮАКiЖЮ"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
msgstr ""
-"яЮПДЩВМЮ ГЮОПЮЬЮЕЛ С ДШЯОЕВЮП БШАЮПС ЮОЕПЮЖШИМЮИ ЯiЯРЩЛШ SILO!\n"
-"йЮА БШБЕЯЖi ЯОiЯ ЛЮЦВШЛШУ БЮПШЪМРЮ╒, МЮЖiЯМiЖЕ <TAB>\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "мЮЯРПНИЙЮ X Window"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "яСЛЕЯМЮЕ IМРЩПМЩР-ГКСВЩММЕ ГЮПЮГ ГЮАЮПНМЕМЮ"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
"\n"
-"йЮА ГЮЦПСГiЖЭ ЮДМС Г iУ, МЮОiЬiЖЕ ЪЕ МЮГБС i МЮЖiЯМiЖЕ <ENTER> ЮКЭАН\n"
-"ВЮЙЮИЖЕ %d ЯЕЙСМД ДКЪ ГЮЦПСГЙi ОЮ ГЛН╒ВЮММЧ.\n"
+"What would you like to do?"
+msgstr "сЯРЮК╦╒ЙЮ ЯСЛЕЯМЮЦЮ IМРЩПМЩР-ГКСВЩММЪ БШЙЮМЮМЮ.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "рЮАКiЖЮ"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "мЕ ЮРПШЛКЁБЮЕЖЖЮ ЮОПЮЖЮБЮЖЭ ГЛЕЯР ТЮИКЮ МЮЯРПНЕЙ."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "яСЛЕЯМЮЕ IМРЩПМЩР-ГКСВЩММЕ"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakgw_.c:177
#, fuzzy
-msgid "Configure LILO/GRUB"
-msgstr "мЮЯРПНИЙЮ X Window"
+msgid "using module"
+msgstr "пЩФШЛ ГКСВЩММЪ"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "с БЮЬЮИ ЯЁЯРЩЛЕ МЪЛЮ МiБНДМЮЦЮ ЯЕРЙЮБЮЦЮ ЮДЮОРЮПЮ!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"мi ЮДГiМ ethernet ЯЕРЙЮБЮМШ ЮДЮОРЮП С БЮЬЮИ ЯiЯРЩЛЕ МЕ БШГМЮВЮМШ. йЮКi "
+"КЮЯЙЮ, ЯЙЮПШЯРЮИЖЕ ЙЮМТiЦСПЮЖШИМШ iМЯРПСЛЩМР."
+
+#: ../../standalone/drakgw_.c:218
#, fuzzy
-msgid "Create a boot floppy"
-msgstr "яРБЮПШЖЭ ГЮЦП. ДШЯЙ"
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"цЩРШ РНКЭЙi ЮДГiМ ЯЙЮМТiЦСПЮБЮМШ ЯЕРЙЮБШ ЮДЮОРЮП ╒ БЮЬЮИ ЯiЯРЩЛЕ:\n"
+"\n"
+"$interface\n"
+"\n"
+"жi ОЮФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ iМРЩПМЩР ГКСВЩММЕ ОПЮГ ЦЩРШ ЮДЮОРЮП?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"йЮКi КЮЯЙЮ, БШАЪПШЖЕ ЯЕРЙЮБШ ЮДЮОРЮП, ЪЙЁ АСДГЕ БШЙЮПШЯРЮМШ ДКЪ ДЮКСВЩММЪ ДЮ "
+"БЮЬЮИ КЮЙЮКЭМЮИ ЯЕРЙi."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"сБЮЦЮ, ЯЕРЙЮБШ ЮДЮОРЮП ЯЙЮМТiЦСПЮБЮМШ.\n"
+"жi ФЮДЮЕЖЕ ОЕПЮЙЮМТiЦСПЮБЮЖЭ ЪЦН?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "оЮРЩМЖШЪКЭМШ ЮДПЮЯ кбя ЙЮМТКiЙРСЕ Г АЪЦСВЮИ ЙЮМТiЦСПЮЖШЪИ $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "гМНИДГЕМЮ ЯЁЯРЩЛЮ ЯЕРЙЮБЮИ АЪЯОЕЙЁ (firewall)!"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"сБЮЦЮ! гМНИДГЕМЮ ЁЯМСЧВЮЪ ЯiЯРЩЛЮ ЯЕРЙЮБЮИ АЪЯОЕЙi (firewall). бЮЛ ЛЮЦВШЛЮ "
+"ЯОЮРПЩАЁЖЖЮ ЯЙЮПЩЙРЮБЮЖЭ ЪЕ ОЮЯКЪ ╒ЯРЮК╦╒Йi. дЮКЕИ?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "йЮМТЁЦСПЮЖШЪ ЯЖЕМЮПШЪ╒, СЯРЮК╦╒ЙЮ ог, ГЮОСЯЙ ЯКСФАЮ╒..."
+
+#: ../../standalone/drakgw_.c:282
#, fuzzy
-msgid "Format floppy"
-msgstr "тЮПЛЮЖiПЮБЮЖЭ СЯ╦"
+msgid "Configuring..."
+msgstr "мЮЯРПНИЙЮ IDE"
-#: ../../standalone/drakboot_.c:39
-msgid "Choice"
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "мЕ ЮРПШЛКЁБЮЕЖЖЮ ╒ЯРЮКЪБЮЖЭ RPM ``ipchains'' Г ДЮОЮЛНЦЮИ urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "мЕ ЮРПШЛКЁБЮЕЖЖЮ ╒ЯРЮКЪБЮЖЭ RPM ``dhcp'' Г ДЮОЮЛНЦЮИ urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "мЕ ЮРПШЛКЁБЮЕЖЖЮ ╒ЯРЮКЪБЮЖЭ RPM ``linuxconf'' Г ДЮОЮЛНЦЮИ urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "мЕ ЮРПШЛКЁБЮЕЖЖЮ ╒ЯРЮКЪБЮЖЭ RPM ``bind'' Г ДЮОЮЛНЦЮИ urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+"мЕ ЮРПШЛКЁБЮЕЖЖЮ ╒ЯРЮКЪБЮЖЭ RPM ЙЩЬШПСЧВЮЦЮ ЯЕПБЕПЮ iЛ╦МЮ╒ Г ДЮОЮЛНЦЮИ urpmi."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "оПШЛЁЖЕ БiМЬЮБЮММi!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
msgstr ""
#: ../../standalone/draksec_.c:28
@@ -4560,10 +6146,10 @@ msgid ""
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-"цЩРЮ СГПНБЕМЭ МЕЮАУНДМЮ БШЙЮПШЯРН╒БЮЖЭ Г ЮЯЖЪПНЦЮИ. яiЯРЩЛЮ АСДГЕ ОПЮЯЖЕИ\n"
+"цЩРШ СГПНБЕМЭ МЕЮАУНДМЮ БШЙЮПШЯРН╒БЮЖЭ Г ЮЯЖЪПНЦЮИ. яiЯРЩЛЮ АСДГЕ ОПЮЯЖЕИ\n"
"С ЙЮПШЯРЮММi, ЮКЕ i АНКЭЬ ВСРМЮИ: ЦЩРШ СГПНБЕМЭ АЪЯОЕЙi МЕКЭЦЮ "
"БШЙЮПШЯРН╒БЮЖЭ\n"
-"МЮ ЛЮЬШМЮУ, ЪЙiЪ ОЮДЙКЧВЮМШ ДЮ ЯЕРЙi Жi ДЮ Internet. сБЮУНД МЕ ЮАЮПНМЕМШ "
+"МЮ ЛЮЬШМЮУ, ЪЙiЪ ДЮКСВЮМШ ДЮ ЯЕРЙi Жi ДЮ Internet. сБЮУНД МЕ ЮАЮПНМЕМШ "
"ОЮПНКЕЛ."
#: ../../standalone/draksec_.c:31
@@ -4580,7 +6166,7 @@ msgid ""
"more security warnings and checks."
msgstr ""
"цЩРШ СГПНБЕМЭ АЪЯОЕЙi ЛЮЕ ЬЩПЮЦ ОЮКЪОЬЩММЪ╒, С ОЕПЬСЧ ВЮПЦС\n"
-"ОЮБЪКiВШКЮЯЭ ЙНКЭЙЮЯЖЭ ОПЮБЕПЮЙ i ОЮОЪПЩДФЮММЪ╒."
+"ОЮБЪКiВШКЮЯЪ ЙНКЭЙЮЯЖЭ ОПЮБЕПЮЙ i ОЮОЪПЩДФЮММЪ╒."
#: ../../standalone/draksec_.c:34
msgid ""
@@ -4588,7 +6174,7 @@ msgid ""
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
"цЩРЮ ЯРЮМДЮПРМШ СГПНБЕМЭ АЪЯОЕЙi, ЪЙi ПЩЙЮЛЕМДЮБЮМШ ДКЪ ЙЮЛО'ЧРЩПЮ,\n"
-"ЪЙi ОЮДЙКЧВЮМШ ДЮ Internet С ЪЙЮЯЖi ЙКiЕМРЮ. дЮДЮДГЕМШ МНБШЪ ОПЮБЕПЙi\n"
+"ЪЙi ДЮКСВЮМШ ДЮ Internet С ЪЙЮЯЖi ЙКiЕМРЮ. дЮДЮДГЕМШ МНБШЪ ОПЮБЕПЙi\n"
"АЪЯОЕЙi."
#: ../../standalone/draksec_.c:36
@@ -4612,31 +6198,44 @@ msgstr ""
#: ../../standalone/draksec_.c:49
msgid "Setting security level"
-msgstr "сГПНБЕМЭ АЪЯОЕЙi"
+msgstr "мЮЯРПНИЙi ╒ГПН╒МЪ АЪЯОЕЙi"
#: ../../standalone/drakxconf_.c:21
msgid "Choose the tool you want to use"
-msgstr "бШАЕПШЖЕ iМЯРПСЛЕМР"
+msgstr "бШАЪПШЖЕ iМЯРПСЛЕМР, ЪЙi ФЮДЮЕЖЕ ЯЙЮПШЯРЮЖЭ"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "бШАЕПШЖЕ РШО ЙКЮБiЪРСПШ"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "гЛЪМiЖЭ ОЮЛЕПШ ЩЙПЮМЮ"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "сЙЮФШЖЕ РШО БЮЬЮИ ЛШЬi"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"гЛЪМiЖЕ БЮЬ Cd-Rom!\n"
+"\n"
+"йЮКi КЮЯЙЮ, СЯРЮ╒ЖЕ Cd-Rom, ОЮЛЕВЮМШ \"%s\", С БЮЬ ДШЯЙЮБНД i МЮЖiЯМiЖЕ OЙ "
+"ОЮЯКЪ.\n"
+"йЮКi БШ МЕ ЛЮЕЖЕ ЪЦН, МЮЖiЯМiЖЕ юДЛЪМiЖЭ, ЙЮА ЮДЛЪМiЖЭ СЯРЮК╦╒ЙС Г ЦЩРЮЦЮ Cd."
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "serial_usb МЕ ГМНИДГЕМ\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
-msgstr "щЛСКiПНБЮЖЭ РПЩЖЖЧ ЙМНОЙС?"
+msgstr "щЛСКЪБЮЖЭ РПЩЖЧЧ ЙМНОЙС?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
-msgstr "дЮ ЪЙНЦЮ ОНЯКЪДН╒МЮЦЮ ОНПРЮ ОЮДЙКЧВЮМЮ БЮЬЮ ЛШЬ?"
+msgstr "дЮ ЪЙНЦЮ ОНЯКЪДН╒МЮЦЮ ОНПРЮ ДЮКСВЮМЮ БЮЬЮ ЛШЬ?"
#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
@@ -4734,11 +6333,11 @@ msgstr "тЮИКШ:\n"
#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
-msgstr "сАПЮЖЭ Г ЯiЯРЩЛШ"
+msgstr "бШДЮКiЖЭ Г ЯiЯРЩЛШ"
#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
-msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ СЯРЮМН╒Йi"
+msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ СЯРЮК╦╒Йi"
#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
@@ -4754,7 +6353,7 @@ msgstr "мЮЯРСОМШЪ ОЮЙЕРШ АСДСЖЭ БШДЮКЕМШ Г ЯiЯРЩЛШ"
#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
-msgstr "бШДЮКЕММЕ Г ЯiЯРЩЛШ RPM"
+msgstr "бШДЮКЕММЕ БШАПЮМШУ RPM-ОЮЙЕРЮ╒ Г ЯiЯРЩЛШ"
#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
@@ -4786,15 +6385,15 @@ msgid ""
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
"rpmdrake ГЮПЮГ С ПЩФШЛЕ ``low memory''.\n"
-"rpmdrake АСДГЕ ОЕПЮГЮОСЬВЮМШ ДГЕКЪ ГЮАЕЯОЪВЩММЪ ОНЬСЙЮ ТЮИКЮ╒"
+"rpmdrake АСДГЕ ОЕПЮГЮОСЬВЮМШ ДГЕКЪ ГЮАЕЯОЪВЩММЪ ОНЬСЙС ТЮИКЮ╒"
#: ../../standalone/rpmdrake_.c:253
msgid "Which file are you looking for?"
-msgstr "ъЙНИ ТЮИК БШ ЬСЙЮЕЖЕ?"
+msgstr "ъЙi ТЮИК БШ ЬСЙЮЕЖЕ?"
#: ../../standalone/rpmdrake_.c:269
msgid "What are looking for?"
-msgstr "ьРН БШ ЬСЙЮЕЖЕ?"
+msgstr "ьРН БШ ФЮДЮЕЖЕ ГМЮИЯЖЁ?"
#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
@@ -4806,7 +6405,7 @@ msgstr "йЮРЮКНЦ"
#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "cdrom МЕДЮЯРСОМШ (МiВНЦЮ МЕЛЮ ╒ /mnt/cdrom)"
+msgstr "cdrom МЕДЮЯРСОМШ (МiВНЦЮ МЪЛЮ ╒ /mnt/cdrom)"
#: ../../standalone/rpmdrake_.c:298
msgid "URL of the directory containing the RPMs"
@@ -4818,11 +6417,11 @@ msgid ""
"It must be relative to the URL above"
msgstr ""
"дКЪ FTP i HTTP, БШ ОЮБiММШ ОЮГМЮВШЖЭ ПЮГЛЪЬВЩММЕ hdlist\n"
-"гЮДЮБЮИРЕ ЮДМНЯМЮ ПЮМЕИ ОЮГМЮВЮМЮЦЮ URL"
+"гЮДЮБЮИЖЕ ЮДМНЯМЮ ПЮМЕИ ОЮГМЮВЮМЮЦЮ URL"
#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
-msgstr "оПЮДЯРЮБЭЖЕ МЮЯРСОМСЧ iМТЮПЛЮЖШЧ"
+msgstr "оПЮДЯРЮ╒ЖЕ МЮЯРСОМСЧ iМТЮПЛЮЖШЧ"
#: ../../standalone/rpmdrake_.c:304
#, c-format
@@ -4832,7 +6431,7 @@ msgstr "%s СФН БШЙЮПШЯРН╒БЮЕЖЖЮ"
#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
#: ../../standalone/rpmdrake_.c:329
msgid "Updating the RPMs base"
-msgstr "юАМЮ╒КЪЕЛ АЮГС RPM"
+msgstr "юДМЮ╒КЕММЕ АЮГШ ОЮЙЕРЮ╒ RPM"
#: ../../standalone/rpmdrake_.c:328
#, c-format
@@ -4847,11 +6446,916 @@ msgstr "оНЬСЙ КiЯРН╒"
msgid "Finding leaves takes some time"
msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "мЮЯРПНИЙЮ ГКСВЩММЪ IМРЩПМЩР"
+
+#, fuzzy
+msgid "Internet"
+msgstr "ЖiЙЮБЮ"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "ДНАПЮ"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Graphics"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Video"
+msgstr ""
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Sound"
+msgstr ""
+
+#, fuzzy
+msgid "Gnome"
+msgstr "МЪЛЮ"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "ю╒РЩМРШТiЙЮЖШЪ"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - CD Burning"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "бШАЪПШЖЕ ОЮФЮДЮМШ ОЮЛЕП СЯРЮК╦╒Йi"
+
+#~ msgid "Total size: "
+#~ msgstr "юЦСКЭМШ ОЮЛЕП: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "оЕПЮЙЮМТiЦСПШПЮБЮЖЭ КЮЙЮКЭМСЧ ЯЕРЙС"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "бЮЬ ЙЮЙЛО'ЧРЩП ЛНФЮ АШЖЭ ЯЙЮМТiЦСПЮБЮМШ ДЮ ЯСЛЕЯМЮЦЮ IМРЩПМЩР-ГКСВЩММЪ.\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "сЯ╦ ЯЙЮМТiЦСПЮБЮМЮ.\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "гКСВЩММЕ Г iМРЩПМЩР ОПЮГ ГБШВЮИМШ ЛЮДЩЛ"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "гКСВЩММЕ Г iМРЩПМЩР ОЮ ISDN"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "дЮКСВШЖЖЮ ДЮ iМРЩПМЩР ОПЮГ DSL (Жi ADSL)"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "дЮКСВШЖЖЮ ДЮ IМРЩПМЩР ОПЮГ ЙЮАЕКЭ (ЯЕРЙС)"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "вЮЯ (ЯЪЙ) МЕЮЙРШ╒МЮЯЖi, ОЮЯКЪ ЪЙНЦЮ\n"
+#~ "БЕЬЮЖЭ РПСАЙС. (оЮЙiМЭЖЕ ОСЯРНЕ, ЙЮА ЮДЛЪМiЖЭ)"
+
+#~ msgid "Germany"
+#~ msgstr "мЪЛЕЖЙi"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "мЪЛЕЖЙi (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "ьРН БШ УНВЮЖЕ ГПЮАiЖЭ?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "сЯРЮК╦╒ЙЮ/бШПЮРЮБЮММЕ"
+
+#~ msgid "Rescue"
+#~ msgstr "бШПЮРЮБЮММЕ"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "ъЙi РШО ПЮГДГЕКЮ БЮЛ ОЮРПЩАМШ?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "бШАЪПШЖЕ \"сЯРЮКЪБЮЖЭ\", ЙЮКi ╒ БЮЯ ЪЬВЩ МЕ ╒ЯРЮКЪБЮМЮ Мi ЮДМНИ БЕПЯii\n"
+#~ "GNU/Linux, ЮКЭАН, ЙЮКi БШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ МЕЙЮКЭЙi БЕПЯiИ Жi "
+#~ "ДШЯРПШАСРШБЮ╒.\n"
+#~ "\n"
+#~ "бШАЪПШЖЕ \"бШПЮРЮБЮЖЭ\", ЙЮКi БШ ФЮДЮЕЖЕ БШПЮРЮБЮЖЭ МЕОПЮЖСЧВСЧ ОЮОЪПЩДМЧЧ "
+#~ "БЕПЯiЧ Mandrake Linux:\n"
+#~ "\n"
+#~ "\n"
+#~ "бШАЪПШЖЕ:\n"
+#~ "\n"
+#~ " - пЩЙЮЛЕМДСЕЖЖЮ: йЮКi БШ ПЮМЕИ МiЙНКi МЕ ╒ЯРЮК╦╒БЮКi \n"
+#~ " GNU/Linux, БШАЪПШЖЕ ЦЩРШ ПЩФШЛ.\n"
+#~ "\n"
+#~ " - оЮ БШАЮПС: цЩРШ ПЩФШЛ ПЩЙЮЛЕМДСЕЖЖЮ ╒ РШЛ БШОЮДЙС, ЙЮКi БШ ОПЮЖЮБЮКi \n"
+#~ " ПЮМЕИ Г GNU/Linux, i ГЛНФЮЖЕ ЯЮЛi БШАПЮЖЭ МЕЮАУНДМШЪ\n"
+#~ " ОЮЙЕРШ i ЮАЯРЮКЪБЮММЕ ДКЪ БЮЬЮЦЮ ЙЮЛОСРЮПЮ. цКЪДГiЖЕ МiФЩИ "
+#~ "ОЮДПЮАЪГМЮЯЖЁ.\n"
+#~ "\n"
+#~ " - щЙЯОЕПР: бШАЮП ЦЩРЮЦЮ ПЩФШЛС ЯБЕДВШЖЭ, ЬРН БШ ЯБЮАНДМЮ БЮКНДЮЕЖЕ "
+#~ "GNU/Linux\n"
+#~ " i ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ БЕКЭЛi ДЩРЮК╦БСЧ ║ЯРЮК╦╒ЙС. ъЙ i ╒ БШОЮДЙС \n"
+#~ " \"оЮ БШАЮПС\"БЮЛ ОЮРПЩАМЮ АСДГЕ БШАПЮЖЭ МЕЮАУНДМШЪ ОПЮЦПЮЛШ i \n"
+#~ " ЮАЯРЮКЪБЮММЕ БЮЬЮЦЮ ЙЮЛОСРЮПЮ.\n"
+#~ " йЮКi КЮЯЙЮ, ме бшаIпюиже цщрш пщфшл, йюкI ме ║ощ║мемш, ьрн пнаIже "
+#~ "опюбIкэмю!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "гЮПЮГ ЛНФМЮ БШГМЮВШЖЭ, ЪЙiЪ ПЮГДГЕКШ БШЙЮПШЯРН╒БЮЖЭ ДКЪ ╒ЯРЮМН╒Йi\n"
+#~ "БЮЬЮИ ЯiЯРЩЛШ Linux-Mandrake, ЙЮКi ЪМШ ╒ФН АШКi ГЮДЮДГЕМШ (ОПШ ОЮОЪПЩДМЪИ\n"
+#~ "╒ЯРЮК╦╒ЖШ Linux ЮКЭАН iМЬЮИ ОПЮЖЩДСПЮИ ПЮГАiЕММЪ). с iМЬШУ БШОЮДЙЮУ\n"
+#~ "ПЮГДГЕКШ ФНПЯРЙЮЦЮ ДШЯЙЮ ОЮБiММШ АШЖЭ ОЮГМЮВЮМШ. цЩРЮ ЮОЕПЮЖШЪ ЯЙКЮДЮЕЖЖЮ Г\n"
+#~ "КЮЦiВМЮЦЮ ПЮГАiЖЖЪ ДШЯЙЮБЮИ ОПЮЯРНПШ ЙЮЛО'ЧРЩПЮ МЮ МЕЙЮКЭЙi\n"
+#~ "БНАКЮЯЖЕИ БШЙЮПШЯРЮММЪ.\n"
+#~ "\n"
+#~ "\n"
+#~ "йЮКi БШ ОКЮМСЕЖЕ ЯРБЮПЮЖЭ МНБШЪ ПЮГДГЕКШ, РН ЛНФЮЖЕ ЯЙЮПШЯРЮЖЭ ПЩФШЛ\n"
+#~ "\"ю╒РЮ ПЮГЛЪЬВЩММЕ\", ЙЮА Ю╒РЮЛЮРШВМЮ ЯРБЮПШЖЭ ПЮГДГЕКШ GNU/Linux. бШ "
+#~ "ЛНФЮЖЕ\n"
+#~ "ОЮГМЮВШЖЭ ДШЯЙ ДКЪ ПЮГАiЕММЪ, МЮЖiЯМС╒ МЮ \"hda\" ДКЪ ОЕПЬЮЦЮ IDE ДШЯЙЮ,\n"
+#~ "\"hdb\" ДКЪ ДПСЦНЦЮ ДШЯЙЮ Жi \"sda\" ДКЪ ОЕПЬЮЦЮ SCSI ДШЯЙЮ i Ц.Д.\n"
+#~ "\n"
+#~ "\n"
+#~ "дБЮ ГБШВЮИМШЪ ПЮГДГЕКШ МЮЯРСОМШЪ: ЙЮПЩММШ ПЮГДГЕК (/), ЪЙi Г'Ъ╒КЪЕЖЖЮ "
+#~ "ОЮВЮРЙНБШЛ\n"
+#~ "ОСМЙРЮЛ iЕПЮПУii ЙЮРЮКЮЦЮ╒ ТЮИКЮБЮИ ЯiЯРЩЛШ, i /boot, ЪЙi ГЛЪЬВЮЕ ╒ЯЕ\n"
+#~ "ТЮИКШ, МЕЮАУНДМШЪ ДКЪ ГЮОСЯЙЮ ЮОЕПЮЖШИМЮИ ЯiЯРЩЛШ ОПШ ╒ЙКЧВЩММi ЙЮЛО'ЧРЩПЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "оЮЙНКЭЙi БШМiЙi ЦЩРЮЦЮ ОПЮЖЩЯЮ ГБШВЮИМЮ МЕГБЮПНРМШ, ПЮГАiЕММЕ МЮ ПЮГДГЕКШ\n"
+#~ "ЛНФЮ МЮОЮКНУЮЖЭ МЮБiВЙЮ. DiskDrake ЯОПЮЬВЮЕ ЦЩРШ ОПЮЖЩЯ, РЮЛС МЮОПСФЮММЕ\n"
+#~ "ОЮБiММЮ ГМiЛЮЖЖЮ. оЮЦКЪДГiЖЕ ДЮЙСЛЕМРЮЖШЧ i ОЮДПШУРСИЖЕЯЪ ЮДПЮГС.\n"
+#~ "\n"
+#~ "\n"
+#~ "рЮЙЯЮЛЮ КЧАСЧ ЮОЕПЮЖШЧ МЮД ПЮГДГЕКЮЛ БШ ЛНФЮЖЕ БШЙЮМЮЖЮЭ Г ДЮОЮЛНЦЮИ\n"
+#~ "ЙКЮБiЪРСПШ, МЮОПШЙКЮД ОЕПЮЛЪЬВЮЖЖЮ ОЮЛiФ ПЮГДГЕКЮЛi Г ДЮОЮЛНЦЮИ ЙКЮБiЬ Tab\n"
+#~ "i Up/Down. йЮКi ПЮГДГЕК ЮАПЮМШ, БШ ЛНФЮЖЕ БШЙЮПШЯРН╒БЮЖЭ:\n"
+#~ "\n"
+#~ "- Ctrl-c ЙЮА ЯРБЮПШЖЭ МНБШ ПЮГДГЕК (ЙЮКi ОЮОЪПЩДМЕ ЮАПЮМШ ОСЯРШ ПЮГДГЕК)\n"
+#~ "\n"
+#~ "- Ctrl-d ЙЮА БШДЮКiЖЭ ПЮГДГЕК\n"
+#~ "\n"
+#~ "- Ctrl-m ЙЮА ОЮГМЮВШЖЭ ЙПНОЙС ЛЮМЖiПЮБЮММЪ.\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "сЯЕ БШГМЮВЮМШЪ ПЮГДГЕКШ ОЮБiММШ АШЖЭ ЮДТЮПЛЮЖiПЮБЮМШ ДКЪ БШЙЮПШЯРЮММЪ\n"
+#~ "(ТЮПЛЮЖiПЮБЮММЕ ГМЮВШЖЭ ЯРБЮПЩММЕ ТЮИКЮБЮИ ЯiЯРЩЛШ). с ЦЩРЮИ ЯiРСЮЖШi\n"
+#~ "ЛНФМЮ ОЕПЮТЮПЛЮЖiПЮБЮЖЭ СФН iЯМСЧВШЪ ПЮГДГЕКШ ДГЕКЪ ГМiЬВЩММЪ ДЮДГЕМШУ,\n"
+#~ "ЪЙiЪ ГМЮУНДГЪЖЖЮ МЮ iУ. гЮ╒БЮЦЮ: ТЮПЛЮЖiПЮБЮЖЭ iЯМСЧВШЪ ПЮГДГЕКШ МЕ "
+#~ "ЮАЮБЪГЙНБЮ,\n"
+#~ "ЮЯЮАКiБЮ ЙЮКi ЪМШ ГЛЪЬВЮЧЖЭ ТЮИКШ i ДЮДГЕМШЪ, ЪЙiЪ БШ ФЮДЮЕЖЕ ГЮУЮБЮЖЭ.\n"
+#~ "гБШВЮИМЮ ГЮУН╒БЮЧЖЭ /home i /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "гЮПЮГ ОЮВМЕЖЖЮ ╒ЯРЮМН╒ЙЮ БШАПЮМШУ ОЮЙЕРЮ╒. цЩРЮЪ ЮОЕПЮЖШЪ ЮДШЛЕ\n"
+#~ "МЕЙЮКЭЙi УБiКiМ ВЮЯС, ЙЮКi БШ МЕ БШАПЮКi ЮАМЮ╒КЕММЕ iЯМСЧВЮИ ЯiЯРЩЛШ,\n"
+#~ "С ЮОНЬМiЛ БШОЮДЙС ЬЛЮР ВЮЯС ОЮРПЮАСЕЖЖЮ ЪЬВЩ ДЮ ОЮВЮРЙС ЮАМЮ╒КЕММЪ\n"
+#~ "ДКЪ ЮМЮКiГС ЯiЯРЩЛШ."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "йЮКi DrakX ОПЮБiКЭМЮ ГМЮИЬН╒ БЮЬС ЛШЬ, ОПНЯРЮ БШАЪПШЖЕ Г ЛЕМЧ\n"
+#~ "iМЬШ ОСМЙР. с ОПНЖiКЕЦКШЛ БШОЮДЙС БШАЪПШЖЕ ОЮДШУНДГЪВШ БЮПШЪМР\n"
+#~ "ДПЮИБЕПС ЛШЬШ Г ЯОiЯС БШЬЩИ.\n"
+#~ "\n"
+#~ "\n"
+#~ "с БШОЮДЙС ЛШЬШ, ЪЙЮЪ ДЮКСВЮМЮ ДЮ ОЮЯКЪДН╒МЮЦЮ ОНПРС, БЮЛ ОЮРПЮАСЕЖЖЮ "
+#~ "ОЮБЕДЮЛiЖЭ\n"
+#~ "DrakX ОПЮБiКЭМШ МСЛЮП ОЮЯКЪДН╒МЮЦЮ ОНПРС, ДЮ ЪЙНЦЮ ЪМЮ ДЮКСВЮМЮ."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "цЩРШ ПЮГДГЕК ОПШЯБЕВЮМШ МЮЯРПНИЖШ КЮЙЮКЭМЮИ ЯЕРЙi,\n"
+#~ "(LAN), ЮКЭАН ЛЮДЩЛЮ. \n"
+#~ "\n"
+#~ "бШАЪПШЖЕ \"кЮЙЮКЭМЮЪ ЯЕРЙЮ\" i DrakX ОЮЯОПЮАСЕ ГМЮИЖi\n"
+#~ "МЮ БЮЬЮИ ЛЮЬШМЕ ЮДЮОРЩП Ethernet. юДЮОРЩПШ PCI ОЮБiММШ АШЖЭ ГМНИДГЕМШ\n"
+#~ "i МЮЯРПНЕМШ Ю╒РЮЛЮРШВМЮ. юДМЮЙ, ОПШ ЯЙЮПШЯРЮММi ISA,\n"
+#~ "Ю╒РЮГМЮУНДФЮММЕ МЕ ОПЮЖСЕ, i БЮЛ ОПШИДГЕЖЖЮ БШАiПЮЖЭ ДПЮИБЕП\n"
+#~ "Г ЯОiЯЮ, ЪЙi Г'ЪБiЖЖЮ ОЕПЮД БЮВШЛЮ ╒ ЦЩРШЛ БШОЮДЙС.\n"
+#~ "\n"
+#~ "\n"
+#~ "ъЙ i ДКЪ ЮДЮОРЩПЮ╒ SCSI, БШ ЛНФЮЖЕ ДЮГБНКiЖЭ ДПЮИБЕПС ОПЮБЕПШЖЭ\n"
+#~ "ОПШКЮДС ЯЮЛЮЯРНИМЮ, iМЮЙЬ ОПШИДГЕЖЖЮ ГЮДЮБЮЖЭ ДПЮИБЕПС МЮЯРПНИЙi,\n"
+#~ "ЪЙiЪ БШ ГМНИДГЕЖЖЕ ╒ ДЮЙСЛЕМРЮЖШi ОЮ БЮЬЮЛС ЮАЯРЮКЪБЮММЧ.\n"
+#~ "\n"
+#~ "\n"
+#~ "оПШ ╒ЯРЮК╦╒ЖШ Linux-Mandrake МЮ ЙЮЛО'ЧРЩП, ЪЙi ОПЮЖСЕ БЮ ╒ФН\n"
+#~ "МЮКЮДФЮМЮИ ЯЕРЖШ, ЮДЛiМiЯРПЮРЮПС ЯЕРЙi ОПШИДГЕЖЖЮ ОЮБЕДЮЛiЖЭ\n"
+#~ "БЮЛ СЯЧ МЕЮАУНДМСЧ iМТЮПЛЮЖШЧ (IP ЮДПЮЯ, ЛЮЯЙЮ ОЮДЯЕРЙi\n"
+#~ "Жi ЯЙЮПНВЮМЮ ОЮДЛЮЯЙЮ, i iЛЪ УЮЯРЮ). йЮКi БШ ЯРБЮПЮЕЖЕ\n"
+#~ "ОПШБЮРМСЧ ЯЕРЙС, МЮОПШЙКЮД ДНЛЮ, БШ ОЮБiММШ БШАПЮЖЭ\n"
+#~ "СЯЕ МЮЯРПНИЙi ЯЮЛЮЯРНИМЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "бШАЪПШЖЕ \"гКСВЩММЕ ОПЮГ ЛЮДЩЛ\" ДКЪ МЮЯРПНИЙi ГКСВЩММЪ\n"
+#~ "ДЮ ЯСЯБЕРМЮИ ЦКЮАЮКЭМЮИ ЯЕРЙi Internet ОПЮГ ЛЮДЩЛ. DrakX ОЮЯОПЮАСЕ\n"
+#~ "ГМЮИЯЖi БЮЬ ЛЮДЩЛ, ЮКЕ ЙЮКi ╒ ЪЦН ЦЩРЮ МЕ ЮРПШЛЮЕЖЖЮ, БЮЛ АСДГЕ\n"
+#~ "ОЮРПЩАМЮ ЯЮЛЮЯРНИМЮ ОЮГМЮВШЖЭ ЯЕПШИМШ ОНПР, ДЮ ЪЙНЦЮ ДЮКСВЮМШ ЛЮДЩЛ."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux ЛНФЮ ОПЮЖЮБЮЖЭ ЯЮ ЬЛЮРКiЙiЛi РШОЮЛi ДПСЙЮБЮКЭМШУ ОПШКЮД. йНФМШ Г "
+#~ "ЦЩРШУ\n"
+#~ "РШОЮ╒ ОЮРПЮАСЕ ПНГМЮИ ╒ЯРЮК╦╒Йi.\n"
+#~ "\n"
+#~ "\n"
+#~ "йЮКi БЮЬЮ ОПШКЮДЮ ДКЪ ДПСЙЮБЮММЪ ДЮКСВЮМЮ МЕОЮЯПЩДМЮ ДЮ ЦЩРЮЦЮ ЙЮЛО'ЧРЩПЮ,\n"
+#~ "БШАЪПШЖЕ \"кЮЙЮКЭМШ ОПШМРЩП\". бЮЛ АСДГЕ ОЮРПЩАМЮ БШГМЮВШЖЭ, ДЮ ЪЙНЦЮ ОНПРЮ\n"
+#~ "ДЮКСВЮМЮ ОПШКЮДЮ i БШАПЮЖЭ ОЮДШУНДГЪВШ ТiКЭРП.\n"
+#~ "\n"
+#~ "\n"
+#~ "йЮКi БШ ФЮДЮЕЖЕ ЮРПШЛЮЖЭ ДНЯРСО ДЮ ОПШМРЩПС, ЪЙi ГМЮУНДГiЖЖЮ МЮ ЮДДЮКЕМЮИ\n"
+#~ "ЛЮЬШМЕ Unix, МЕЮАУНДМЮ БШАПЮЖЭ \"юДДЮКЕМЮЪ ВЮПЦЮ lpd\". йЮА ОПШЛСЯiЖЭ ЪЦН\n"
+#~ "ОПЮЖЮБЮЖЭ, iЛЪ i ОЮПНКЭ МЕ ОЮРПЩАМШ, ЮКЕ МЕЮАУНДМЮ БЕДЮЖЭ iЛЪ ВЮПЦi ДПСЙС\n"
+#~ "МЮ ЦЩРЮЛ ЯЕПБЕПШ.\n"
+#~ "\n"
+#~ "\n"
+#~ "дКЪ ДНЯРСОЮ ДЮ ОПШМРЩПС SMB (ЪЙi ГМЮУНДГiЖЖЮ МЮ ЮДДЮКЕМЮИ ЛЮЬШМЕ\n"
+#~ "Windows 9x/NT/2000 Жi Unix Г ЯЕПБЕПЮЛ Samba), МЕЮАУНДМЮ БЕДЮЖЭ ЪЦН iЛЪ\n"
+#~ "SMB (ЪЙНЕ ЛНФЮ МЕ ЯСОЮДЮЖЭ Г ЪЦН iЛЕМЕЛ С ЯЕРЙi TCP/IP), i, ЛЮЦВШЛЮ,\n"
+#~ "ЪЦН IP ЮДПЮЯ i iЛЪ ЙЮПШЯРЮКЭМiЙЮ, ПЮАНВЮИ ЦПСОШ i ОЮПНКЭ ДНЯРСОЮ ДЮ\n"
+#~ "ОПШМРЩПЮ, Ю РЮЙЯЮЛЮ iЛЪ ОПШМРЩПЮ. рНЕ Ф ЯЮЛЮЕ i ДКЪ ОПШМРЩПЮ\n"
+#~ "NetWare, РНКЭЙi МЕ ОЮРПЮАСЕЖЖЮ iМТЮПЛЮЖШЪ ЮА ПЮАНВЮИ ЦПСОЕ."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "мЮЯРНИКiБЮ ПЩЙЮЛЕМДСЕЛ ЮДЙЮГЮЖЭ РСР \"рЮЙ\"! бНЯЭ МЮОПШЙКЮД, ЙЮКi БШ\n"
+#~ "ОЕПЮ╒ЯРЮКЧЕЖЕ Windows, ЪМЮ ОЕПЮГЮОiЬЮ ГЮЦПСГЮВМШ ЯЕЙРЮП.\n"
+#~ "йЮКi БШ МЕ ЯРБЮПШКi ГЮЦПСГЮВМШ ДШЯЙ, БШ АНКЭЬ МЕ ГЛНФЮЖЕ ГЮЦПСГiЖЭ\n"
+#~ "Linux!"
+
+#~ msgid "Move your wheel!"
+#~ msgstr "оЮБЕПМЁЖЕ ЙНКЮ ЛШЬЁ"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "гЮАШЖЭ ГЛЪМЕММi?"
+
+#~ msgid "Cable connection"
+#~ msgstr "яЕРЙЮБЮЕ ГКВЩММЕ"
+
+#~ msgid "Host name:"
+#~ msgstr "IЛЪ ЛЮЬШМШ:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "ъЙi РШО БЮЬЮИ ЛШЬi?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "ю╒РЮЛЮРШВМЮЕ БШГМЮВЩММЕ ОЮЛЕПЮ╒ ЩЙПЮМЮ"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "дКЪ ОНЬСЙЮ ОЮДШУНДГЪВШУ ОЮЛЕПЮ╒ ЩЙПЮМЮ ГЮПЮГ ОЮЯОПЮАСЕЛ ПНГМШЪ ПЩФШЛШ. \n"
+#~ "бЮЬ ЩЙПЮМ АСДГЕ ЛiЦЮЖЭ... йЮКi БЮЛ МЕ ОЮДЮАЮЕЖЖЮ ЛiЦЮММЕ, ЪЦН ЛНФМЮ \n"
+#~ "ЮДКСВШЖЭ, РЮДШ ОЮЯКЪ ГЮЙЮМВЩММЪ АСДГЕ ВСБЮЖЭ ЦСДНЙ."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "лНФМЮ ОЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ДЮЯРСОМШЪ ОЮЛЕПШ ЩЙПЮМС (МЮОП.: 800x600).\n"
+#~ "с БЕКЭЛi ПЩДЙiЛ БШОЮДЙС ЦЩРЮ ЛНФЮ ОПШБЕЯЖi ДЮ ЮЯРЮМНБС ЙЮЛО'ЧРЮПЮ .\n"
+#~ "фЮДЮЕЖЕ ОЮЯОПЮАЮБЮЖЭ?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "оЮДШУНДГЪВШЪ ПЩФШЛШ МЕ ГМНИДГЕМШ.\n"
+#~ "оЮЯОПЮАСИЖЕ БШАПЮЖЭ iМЬСЧ БiДЩЮЙЮПРС Жi ЛЮМiРНП"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "ю╒РЮЛЮРШВМШ ОНЬСЙ ОЮЛЕПЮ╒ ЩЙПЮМЮ"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "ОЮЛШКЙЮ ЛЮМЖiПЮБЮММЪ nfs"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a previous version of Mandrake "
+#~ "Linux:\n"
+#~ "%s or %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "бШАЪПШЖЕ \"сЯРЮКЪБЮЖЭ\", ЙЮКi ╒ БЮЯ ЪЬВЩ МЕ ╒ЯРЮКЪБЮМЮ Мi ЮДМНИ БЕПЯii\n"
+#~ "GNU/Linux, ЮКЭАН, ЙЮКi БШ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ МЕЙЮКЭЙi БЕПЯiИ Жi "
+#~ "ДШЯРПШАСРШБЮ╒.\n"
+#~ "\n"
+#~ "бШАЪПШЖЕ \"бШПЮРЮБЮЖЭ\", ЙЮКi БШ ФЮДЮЕЖЕ БШПЮРЮБЮЖЭ МЕОПЮЖСЧВСЧ ОЮОЪПЩДМЧЧ "
+#~ "БЕПЯiЧ Mandrake Linux:\n"
+#~ "%s ЮКЭАН %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "бШАЪПШЖЕ:\n"
+#~ "\n"
+#~ " - пЩЙЮЛЕМДСЕЖЖЮ: йЮКi БШ ПЮМЕИ МiЙНКi МЕ ╒ЯРЮК╦╒БЮКi \n"
+#~ " GNU/Linux, БШАЪПШЖЕ ЦЩРШ ПЩФШЛ.\n"
+#~ "\n"
+#~ " - оЮ БШАЮПС: цЩРШ ПЩФШЛ ПЩЙЮЛЕМДСЕЖЖЮ ╒ РШЛ БШОЮДЙС, ЙЮКi БШ ОПЮЖЮБЮКi \n"
+#~ " ПЮМЕИ Г GNU/Linux, i ГЛНФЮЖЕ ЯЮЛi БШАПЮЖЭ МЕЮАУНДМШЪ\n"
+#~ " ОЮЙЕРШ i ЮАЯРЮКЪБЮММЕ ДКЪ БЮЬЮЦЮ ЙЮЛОСРЮПЮ. цКЪДГiЖЕ МiФЩИ "
+#~ "ОЮДПЮАЪГМЮЯЖЁ.\n"
+#~ "\n"
+#~ " - щЙЯОЕПР: бШАЮП ЦЩРЮЦЮ ПЩФШЛС ЯБЕДВШЖЭ, ЬРН БШ ЯБЮАНДМЮ БЮКНДЮЕЖЕ "
+#~ "GNU/Linux\n"
+#~ " i ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ БЕКЭЛi ДЩРЮК╦БСЧ ║ЯРЮК╦╒ЙС. ъЙ i ╒ БШОЮДЙС \n"
+#~ " \"оЮ БШАЮПС\"БЮЛ ОЮРПЩАМЮ АСДГЕ БШАПЮЖЭ МЕЮАУНДМШЪ ОПЮЦПЮЛШ i \n"
+#~ " ЮАЯРЮКЪБЮММЕ БЮЬЮЦЮ ЙЮЛОСРЮПЮ.\n"
+#~ " йЮКi КЮЯЙЮ, ме бшаIпюиже цщрш пщфшл, йюкI ме ║ощ║мемш, ьрн пнаIже "
+#~ "опюбIкэмю!\n"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB лШЬ"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB лШЬ (2 ЙМНОЙi)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB лШЬ (3 ЙМНОЙi Жi АНКЭЬ)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB лШЬ"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB лШЬ (2 ЙМНОЙi)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB лШЬЭ (3 ЙМНОЙi Жi АНКЭЬ)"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB лШЬ"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB лШЬ (3 ЙМНОЙi Жi АНКЭЬ)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ЮКЭАН БШЬЕИ (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Microsoft IntelliMouse (serial)"
+#~ msgstr "Microsoft IntelliMouse (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Logitech MouseMan/FirstMouse (serial)"
+#~ msgstr "Logitech MouseMan/FirstMouse (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft ЯСЛЪЯЖiЛЮЪ (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (ОЮЯКЪДН╒МЮЪ)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr ""
+#~ "мЕЮАУНДМЮ ЮДЙЮМТiЦСПЮБЮЖЭ БЮЬС ЯЕРЙЮБСЧ ЙЮПРС, ЙЮА ЛЮЦВШЛЮ АШКН ДЮКСВШЖЖЮ ДЮ "
+#~ "IМРЩПМЩР."
+
+#~ msgid ""
+#~ "Please choose which network adaptater do you want to use to connect to "
+#~ "internet.\n"
+#~ "If you don't know, choose eth0.\n"
+#~ msgstr ""
+#~ "йЮКi КЮЯЙЮ, ОЮГМЮВЖЕ ЯЕРЙЮБШ ЮДЮОРЮП, ЪЙi БШ АСДГЕЖЕ БШЙЮПШЯРН╒БЮЖЭ ДЮ "
+#~ "ДЮКСВЩММЪ ДЮ IМРЩПМЩР.\n"
+#~ "йЮКi МЕ БЕДЮЕЖЕ, ОЮГМЮВЖЕ eth0.\n"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "яНЙЕР"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX ЯРБНПШЖЭ ЙЮМТiЦСПЮЖШИМШЪ ТЮИКШ ДКЪ XFree 3.3 i XFree 4.0.\n"
+#~ "оЮ ДЮЛЮ╒КЕММЧ БШЙЮПШЯРН╒БЮЕЖЖЮ ЯЕПБЕП 4.0. йЮКi бЮЬЮ БiДЩЮЙЮПРЮ МЕ\n"
+#~ "ОЮДРПШЛКiБЮЕЖЖЮ iЛ, РЮДШ ЛНФМЮ БШЙЮПШЯРЮЖЭ ЯЕПБЕП 3.3.\n"
+#~ "жi ФЮДЮЕЖЖЕ БШ ОЮЙiМСЖЭ XFree 3.3 ╒ ЯiЯРЩЛЕ?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "йПШОРЮЦПЮТiЪ"
+
+#~ msgid "Configure LAN"
+#~ msgstr "мЮЯРПНИЙЮ ЯЕРЙi (кбя)"
+
+#~ msgid "End configuration"
+#~ msgstr "гЮЙЮМВЩММЕ МЮЯРПНИЙi"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "мЕ ╒ЯРЮК╦╒БЮЖЭ ЯЕРЙС"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "жi ФЮДЮЕЖЕ БШ МЮЯРПНiЖЭ ЯЕРЙЮБСЧ ЙЮМТiЦСПЮЖШЧ БЮЬЮИ ЯiЯРЩЛШ?"
+
+#~ msgid "Show less"
+#~ msgstr "оЮЙЮГЮЖЭ ЛЕМЕИ"
+
+#~ msgid "Show more"
+#~ msgstr "оЮЙЮГЮЖЭ АНКЕИ"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "бШЙЮПШЯРН╒БЮЖЭ СЯЧ ДШЯЙЮБСЧ ОПЮЯРНПС"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "URI ДКЪ КЮЙЮКЭМЮЦЮ ОПШМРЩПЮ"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "кЮЙЮКЭМШ ОПШМРЩП (URI)"
+
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "дЮ ЪЙНЦЮ ОНПРС ДЮКСВЮМШ БЮЬ ОПШМРЩП \n"
+#~ "(/dev/lp0 ЩЙБiБЮКЕМРМШ LPT1:)?\n"
+
+#~ msgid "curly"
+#~ msgstr "ЙСВЮПЮБШ"
+
+#~ msgid "default"
+#~ msgstr "оЮ ДЮЛЮ╒КЕММЧ"
+
+#~ msgid "tie"
+#~ msgstr "ЦЮКЭЬРСЙ"
+
+#~ msgid "brunette"
+#~ msgstr "АПСМЕР"
+
+#~ msgid "girl"
+#~ msgstr "ДГЪ╒ВШМЮ"
+
+#~ msgid "woman-blond"
+#~ msgstr "ФЮМВШМЮ-АКЮМДГiМЙЮ"
+
+#~ msgid "automagic"
+#~ msgstr "Ю╒РЮЛЮЦiВМШ"
+
+#~ msgid "Network:"
+#~ msgstr "яЕРЙЮ:"
+
+#~ msgid "Everything configured!"
+#~ msgstr "║Я╦ ЯЙЮМТiЦСПЮБЮМЮ!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "ъЙi РШО БЮЬЮИ ЙКЮБiЪРСПШ?"
+
+#~ msgid "Normal"
+#~ msgstr "гБШВЮИМШ"
+
+#~ msgid "Configure my card"
+#~ msgstr "йЮМТiЦСПЮБЮЖЭ ЛЮЧ ЙЮПРС"
+
+#~ msgid "pptp alcatel"
+#~ msgstr "pptp alcatel"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi ЙЮПРШ PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi %s ОПШКЮДШ?"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "лЮКШ (%dMА)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "мЮЯРПНИЙЮ ЛЮДЩЛС"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "жi ФЮДЮЕЖЕ БШ МЮЯРПНiЖЭ ЙЮЛСРЮБЮМЮЕ ГКСВЩММЕ ОПЮГ ЛЮДЩЛ ДЮ ЯiЯРЩЛШ?"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "жi ФЮДЮЕЖЕ БШ МЮЯРПНiЖЭ ISDN ГКСВЩММЕ ╒ БЮЬЮИ ЯiЯРЩЛЕ?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "оЮЯОПЮАЮБЮЖЭ ГМЮИЯЖi PCI ОПШКЮДШ?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "оНЬСЙ ЙЮПЮМ╦БЮЦЮ ПЮДГЕКЮ."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: цЩРЮ МЕ ЙЮПЮМ╦БШ ПЮГДГЕК, ЙЮКi КЮЯЙЮ БШАЪПШЖЕ iМЬШ."
+
+#~ msgid "No root partition found"
+#~ msgstr "йЮПЮМ╦БШ ПЮГДГЕК МЕ ГМНИДГЕМШ"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "мЕЛЮЦВШЛЮ БШЙЮПШЯРН╒БЮЖЭ broadcast АЕГ ДЮЛЕМЮ NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "ъЙi ПЮГДГЕК ДШЯЙЮ ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ С ЪЙЮЯЖi ЙЮПЮМ╦БЮЦЮ?"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "бШ МЕ ЛЮЕЖЕ ЮМiЪЙiУ Windows ПЮГДГЕКЮ╒!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "с БЮЯ МЕ УЮОЮЕ ЛЕЯЖЮ ДКЪ Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "ю╒РЮЛЮРШВМШ"
+
+#~ msgid "SILO main options"
+#~ msgstr "цЮКН╒МШЪ НОЖШi SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "SILO ГЛЪЬВЮЕ МЮЯРСОМШЪ ОСМЙРШ.\n"
+#~ "бШ ЛНФЮЖЕ ДЮДЮЖЭ ЪЬВЩ, ЮКЭАН ГЛЪМiЖЭ iЯМСЧВШЪ."
+
+#~ msgid "This label is already in use"
+#~ msgstr "цЩРЮЪ ЛЕРЙЮ ╒ФН БШЙЮПШЯРН╒БЮЕЖЖЮ"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "сЯРЮК╦╒ЙЮ SILO МЕ ЮРПШЛЮКЮЯЪ. сГМiЙКЮ МЮЯРСОМЮЪ ОЮЛШКЙЮ:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX ЯОЮВЮРЙС ОЮЯОПЮАСЕ ГМЮИЖi ЮДГiМ Жi МЕЙЮКЭЙi ЮДЮОРЩПЮ╒ PCI\n"
+#~ "i SCSI. йЮКi ЮДЮОРЩП ГМНИДГЕМ, i DrakX БЪДНЛЮ, ЪЙi ДПЮИБЕП\n"
+#~ "ДКЪ ЪЦН ОЮРПЩАМШ, ЦЩРЮЪ ОПШКЮДЮ АСДГЕ ДЮКСВЮМЮ Ю╒РЮЛЮРШВМЮ.\n"
+#~ "\n"
+#~ "йЮКi БШ ЛЮЕЖЕ SCSI ЮДЮОРЩП МЮ ISA-, ЮКЭАН PCI-ЙЮПЖЕ, ЮКЕ DrakX МЕ БЕДЮЕ\n"
+#~ "ЪЙi ДПЮИБЕП ЯЙЮПШЯРЮЖЭ Г ЦЩРЮИ ЙЮПРЮИ, Жi DrakX КХВШЖЭ, ЬРН БШ МЕ ЛЮЕЖЕ\n"
+#~ "SCSI ЮДЮОРЩПЮ╒ МЮБНЦСК, С БЮЯ ГЮОШРЮЧЖЭ, Жi ╦ЯЖЭ ╦М С БЮЯ ЮКЭАН МЕ.\n"
+#~ "йЮКi ╒ БЮЯ ЪЦН МЕЛЮ, ЮДЙЮГБЮИЖЕ \"мЕ\". йЮКi ╦ЯРЭ ЮДГiМ Жi МЕЙЮКЭЙi,\n"
+#~ "ЮДЙЮГБЮИЖЕ \"рЮЙ\". оЮЯКЪ ЦЩРЮЦЮ Г'ЪБiЖЖЮ ЯОiЯ ДПЮИБЕПЮ╒, Г ЪЙiУ БЮЛ\n"
+#~ "ОЮРПЩАМЮ АСДГЕ БШАПЮЖЭ ОЮДШУНДГЪВШ.\n"
+#~ "\n"
+#~ "оЮЯКЪ БШАЮПС ДПЮИБЕПЮ, DrakX ГЮОШРЮЕ, Жi МЕ ФЮДЮЕЖЕ БШ ГЮДЮЖЭ\n"
+#~ "ДКЪ ЪЦН ДЮДЮРЙНБШЪ МЮЯРПНИЙi. яОЮВЮРЙС МЪУЮИ ДПЮИБЕП ОПЮБЕПШЖЭ "
+#~ "ЮАЯРЮКЪБЮММЕ:\n"
+#~ "ГБШВЮИМЮ ╒Я╦ ОПЮЖСЕ ДНАПЮ.\n"
+#~ "\n"
+#~ "с ЮДБЮПНРМШЛ БШОЮДЙС, МЕ ГЮАШБЮИЖЕ ОПЮ iМТЮПЛЮЖШЧ ЮА ЮАЯРЮКЪБЮММi, ЪЙСЧ\n"
+#~ "ЛНФМЮ ЮРПШЛЮЖЭ ЮД Windows (ЙЮКi ЪМЮ ОПШЯСРМiВЮЕ ╒ БЮЬЮИ ЯiЯРЩЛЕ), Ю РЮЙЯЮЛЮ\n"
+#~ "ОПЮ ДЮОЮЛНФМiЙ ОЮ ╒ЯРЮМН╒ЙЕ ЦЩРЮИ ОПШКЮДШ. ъМШ ГЛЪЬВЮЧЖЭ РШЪ МЮЯРПНИЙi, "
+#~ "ЪЙiЪ\n"
+#~ "МЕЮАУНДМЮ ГЮДЮЖЭ ДПЮИБЕПС."
+
+#~ msgid "Shutting down"
+#~ msgstr "бШЙКЧВЩММЕ ЙЮЛО'ЧРЩПЮ"
+
#~ msgid "After %s partition %s,"
#~ msgstr "оЮЯКЪ %s ПЮГАЕИЖЕ %s,"
#~ msgid "Size: %s MB"
-#~ msgstr "оЮЛЕП: %s MB"
+#~ msgstr "оЮЛЕП: %s MА"
#~ msgid "changing type of"
#~ msgstr "гЛЪМЕММЕ РШОЮ"
@@ -4868,11 +7372,11 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ "Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
#~ "(Helios) or Gold 2000."
#~ msgstr ""
-#~ "бШАЕПШЖЕ \"сЯРЮМН╒ЙЮ\", ЙЮКi МЕЛЮ ╒ЯРЮМН╒КЕМШУ ПЮМЕИ БЕПЯiИ Linux,\n"
-#~ "ЮКЭАН ЙЮКi ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ МЕЙЮКЭЙi ДШЯРПШАСЖiБЮ╒ ЮКЭАН БЕПЯiИ.\n"
+#~ "бШАЪПШЖЕ \"сЯРЮК╦╒ЙЮ\", ЙЮКi МЕЛЮ ╒ЯРЮКЪБЮМШУ ПЮМЕИ БЕПЯiИ Linux,\n"
+#~ "ЮКЭАН ЙЮКi ФЮДЮЕЖЕ БШЙЮПШЯРН╒БЮЖЭ МЕЙЮКЭЙi ДШЯРПШАСРШБЮ╒ ЮКЭАН БЕПЯiИ.\n"
#~ "\n"
#~ "\n"
-#~ "бШАЕПШЖЕ \"юАМЮБiЖЭ\" ЙЮКi БШ ФЮДЮЕЖЕ ЮАМЮБiЖЭ ОЮОЪПЩДМЧЧ БЕПЯiЧ\n"
+#~ "бШАЪПШЖЕ \"юАМЮБiЖЭ\" ЙЮКi БШ ФЮДЮЕЖЕ ЮАМЮБiЖЭ ОЮОЪПЩДМЧЧ БЕПЯiЧ\n"
#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
#~ "6.1 (Helios) ЮКЭАН Gold 2000."
@@ -4894,22 +7398,22 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ "a highly customized installation, this Install Class is for you. You will\n"
#~ "be able to select the usage of your installed system as for \"Customized\"."
#~ msgstr ""
-#~ "бШАЕПШЖЕ:\n"
+#~ "бШАЪПШЖЕ:\n"
#~ "\n"
-#~ " - пЩЙЮЛЕМДЮЖШi: йЮКi БШ ПЮМЕИ МiЙНКi МЕ ╒ЯРЮМЮБКiБЮКi Linux.\n"
+#~ " - пЩЙЮЛЕМДСЕЖЖЮ: йЮКi БШ ПЮМЕИ МiЙНКi МЕ ╒ЯРЮК╦╒БЮКi Linux.\n"
#~ "\n"
-#~ " - г МЮЯРПНИЙЮИ: йЮКi БШ ГМЮ╦ЛШ Г Linux, РН ЛНФМЮ БШАПЮЖЭ МЮЯРСОМШЪ \n"
+#~ " - оЮ БШАЮПС: йЮКi БШ ГМЮ╦ЛШ Г Linux, РН ЛНФМЮ БШАПЮЖЭ МЮЯРСОМШЪ \n"
#~ "ЯОНЯЮАШ БШЙЮПШЯРЮММЪ ЯiЯРЩЛШ: МЮПЛЮКЭМШ, ДКЪ ПЮЯОПЮЖН╒ЬВШЙЮ, ЮКЭАН\n"
-#~ "ЯЕПБЕП. бШАЕПШЖЕ \"МЮПЛЮКЭМШ\" ДКЪ ╒ЯРЮМН╒Йi ЯiЯРЩЛШ ЮЦСКЭМЮЦЮ ОПШГМЮВЩММЪ.\n"
-#~ "пЩФШЛ \"пЮЯОПЮЖН╒ЙЮ\" ОПШГМЮВЮМШ ДКЪ РШУ, УРН БШЙЮПШЯРН╒БЮЕ ЙЮЛОЩЧРЮП\n"
-#~ "ЛЕМЮБiРЮ ДКЪ ПЮЯОПЮЖН╒Йi ОПЮЦПЮЛ. йЮКi БШ ФЮДЮЕЖЕ ╒ЯРЮМЮБiЖЭ ЯЕПБЕП "
+#~ "ЯЕПБЕП. бШАЪПШЖЕ \"гБШВЮИМШ\" ДКЪ ╒ЯРЮМН╒Йi ЯiЯРЩЛШ ЮЦСКЭМЮЦЮ ОПШГМЮВЩММЪ.\n"
+#~ "пЩФШЛ \"дКЪ ПЮЯОПЮЖН╒Йi\" ОПШГМЮВЮМШ ДКЪ РШУ, УРН БШЙЮПШЯРН╒БЮЕ ЙЮЛО'ЧРЩП\n"
+#~ "ЛЕМЮБiРЮ ДКЪ ПЮЯОПЮЖН╒Йi ОПЮЦПЮЛ. йЮКi БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ ЯЕПБЕП "
#~ "ЮЦСКЭМЮЦЮ\n"
-#~ "ОПШГМЮВЩММЪ (ДКЪ ОНЬРШ, ДПСЙС, ...), РН БШАЕПШЖЕ \"яЕПБЕП\".\n"
+#~ "ОПШГМЮВЩММЪ (ДКЪ ОНЬРШ, ДПСЙС, ...), РН БШАЪПШЖЕ \"яЕПБЕП\".\n"
#~ "\n"
#~ "\n"
#~ " - щЙЯОЕПР: йЮКi БШ ЯБЮАНДМЮ БЮКНДЮЕЖЕ GNU/Linux i ФЮДЮЕЖЕ ОПЮБЕЯЖi\n"
-#~ "╒ЯРЮМН╒ЙС Г ОЮЦКШАКЕММЮИ МЮЯРПНИЙЮИ, ЦЩРШ йКЮЯ сЯРЮМН╒Йi - ДКЪ БЮЯ. бШ \n"
-#~ "РЮЙЯЮЛЮ ЯЛНФЮЖЕ БШАПЮЖЭ ОПШГМЮВЩММЕ ЯiЯРЩЛШ, ЪЙ С БЮПШЪМЖЕ \"г МЮЯРПНИЙЮИ\"."
+#~ "╒ЯРЮК╦╒ЙС Г ОЮЦКШАКЕММЮИ МЮЯРПНИЙЮИ, ЦЩРШ йКЮЯ сЯРЮМН╒Йi - ДКЪ БЮЯ. бШ \n"
+#~ "РЮЙЯЮЛЮ ЯЛНФЮЖЕ БШАПЮЖЭ ОПШГМЮВЩММЕ ЯiЯРЩЛШ, ЪЙ С БЮПШЪМЖЕ \"оЮ БШАЮПС\"."
#~ msgid ""
#~ "You may now select the packages you wish to install.\n"
@@ -4927,18 +7431,22 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ "install. It is impossible to install a package without installing all\n"
#~ "of its dependencies."
#~ msgstr ""
-#~ "гЮПЮГ ЛНФМЮ БШАПЮЖЭ ОЮЙЕРШ ОПЮЦПЮЛ, ЪЙiЪ БШ ФЮДЮЕЖЕ ╒ЯРЮМЮБiЖЭ.\n"
+#~ "гЮПЮГ ЛНФМЮ БШАПЮЖЭ ОЮЙЕРШ ОПЮЦПЮЛ, ЪЙiЪ БШ ФЮДЮЕЖЕ ╒ЯРЮКЪБЮЖЭ.\n"
+#~ "\n"
+#~ "\n"
+#~ "оЮ-ОЕПЬЮЕ, БШ ЛНФЮЖЕ БШАПЮЖЭ ЦПСОС ОЮЙЕРЮ╒ ЙЮА СЯРЮКЪБЮЖЭ Жi ЮАМЮБiЖЭ. "
+#~ "оЮЯКЪ\n"
+#~ "БШ ЛНФЮЖЕ ЮДГМЮВШЖЭ АНКЭЬ ОЮЙЕРЮ╒ С ЮДОЮБЕДМЮЯЖi Г ЪЦСКЭМШЛ ОЮЛЕПЮЛ, ЪЙi\n"
+#~ "БШ ФЮДЮЕЖЕ БШАПЮЖЭ.\n"
#~ "\n"
#~ "\n"
#~ "йЮКi БШ ОПЮЖСЕЖЕ ╒ ПЩФШЛЕ ЩЙЯОЕПРЮ, РН ОЮЙЕРШ ЛНФМЮ БШАiПЮЖЭ iМДШБiДСЮКЭМЮ.\n"
-#~ "лЕИЖЕ МЮ ╒БЮГЕ, ЬРН МЕЙЮРНПШЪ ОЮЙЕРШ ОЮРПЮАСЧЖЭ СЯРЮМН╒Йi iМЬШУ ОЮЙЕРЮ╒.\n"
+#~ "лЕИЖЕ МЮ ╒БЮГЕ, ЬРН МЕЙЮРНПШЪ ОЮЙЕРШ ОЮРПЮАСЧЖЭ СЯРЮК╦╒Йi iМЬШУ ОЮЙЕРЮ╒.\n"
#~ "цЩРЮ МЮГБЮЕЖЖЮ ГЮКЕФМЮЯЖЖЧ ОЮЙЕРЮ╒. оЮЙЕРШ, ЪЙiЪ БШ БШАПЮКi, i ОЮЙЕРШ,\n"
-#~ "ЮД ЪЙiУ ЪМi ГЮКЕФЮЖЭ, АСДСЖЭ Ю╒РЮЛЮРШВМЮ БШАПЮМШ ДКЪ ╒ЯРЮМН╒Йi.\n"
-#~ "мЕЛЮЦВШЛЮ ╒ЯРЮМЮБiЖЭ ОЮЙЕР ДЮ ╒ЯРЮМН╒Йi ╒ЯiУ ОЮЙЕРЮ╒, ЮД ЪЙiУ ╦М ГЮКЕФШЖЭ.\n"
+#~ "ЮД ЪЙiУ ЪМi ГЮКЕФЮЖЭ, АСДСЖЭ Ю╒РЮЛЮРШВМЮ БШАПЮМШ ДКЪ ╒ЯРЮК╦╒Йi.\n"
+#~ "мЕЛЮЦВШЛЮ ╒ЯРЮКЪБЮЖЭ ОЮЙЕР ДЮ ╒ЯРЮК╦╒Йi ╒ЯiУ ОЮЙЕРЮ╒, ЮД ЪЙiУ ╦М ГЮКЕФШЖЭ.\n"
#~ "\n"
#~ "\n"
-#~ "IМТЮПЛЮЖШЪ ОЮ ╒ЯiУ ЙЮРЩЦНПШЪУ i ЮЯНАМШУ ОЮЙЕРЮУ ДЮЯРСОМЮ ╒ ГНМЕ, ЪЙЮЪ\n"
-#~ "ОЮГМЮВЮМЮ \"IМТЮ\" i ПЮГЛЕЬВЮМЮ ЯОПЮБЮ ЮД ЯОiЯЮ ОЮЙЕРЮ╒."
#~ msgid "Help"
#~ msgstr "дЮОЮЛНЦЮ"
@@ -4954,7 +7462,7 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ "it now (a boot disk will be needed to boot it)."
#~ msgstr ""
#~ "LILO (LInux LOader) ЛНФЮ ГЮЦПСФЮЖЭ Linux i iМЬШЪ ЮОЕПЮЖШИМШЪ ЯiЯРЩЛШ.\n"
-#~ "гБШВЮИМЮ ЪМШ ЙЮПЩЙРМЮ ГМЮУНДГЪЖЖЮ ОПШ ╒ЯРЮМН╒ЙЕ. йЮКi БШ МЕ ╒АЮВЮКi\n"
+#~ "гБШВЮИМЮ ЪМШ ЙЮПЩЙРМЮ ГМЮУНДГЪЖЖЮ ОПШ ╒ЯРЮМН╒ЙЕ. йЮКi БШ МЕ ╒АЮВШКi\n"
#~ "РШУ ЯiЯРЩЛ, ЪЙiЪ АШКi ╒ЯРЮМН╒КЕМШ МЮ ЛЮЬШМЕ, БШ ЛНФЮЖЕ ДЮДЮЖЭ ГЮПЮГ\n"
#~ "ЮДМС Г iУ ЮКЭАН МЕЙЮКЭЙi.\n"
#~ "\n"
@@ -4966,7 +7474,7 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ msgstr "мЮЯРПНИЙЮ SCSI"
#~ msgid "Choose install or upgrade"
-#~ msgstr "сЯРЮМН╒ЙЮ Жi ЮАМЮ╒КЕММЕ"
+#~ msgstr "бШАЪПШЖЕ ╒ЯРЮК╦╒ЙС Жi ЮАМЮ╒КЕММЕ"
#~ msgid "beginner"
#~ msgstr "ОЮВШМЮЧВШ"
@@ -4984,28 +7492,19 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ msgstr "дПЩММШ ЯРЮПРЮБШ (kickstart) ТЮИК %s (ОЮЛШКЙЮ %s)"
#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "аСДГЕ ╒ЯРЮМН╒КЕМЮ %d MB. лНФМЮ БШАПЮЖЭ АНКЭЬ ОПЮЦПЮЛ ДКЪ ╒ЯРЮМН╒Йi."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "бШАЕПШЖЕ ЛНБС"
-
-#~ msgid "Recommended"
-#~ msgstr "пЩЙЮЛЕМДСЕЖЖЮ"
+#~ msgstr "аСДГЕ ╒ЯРЮМН╒КЕМЮ %d MА. лНФМЮ БШАПЮЖЭ АНКЭЬ ОПЮЦПЮЛ ДКЪ ╒ЯРЮК╦╒Йi."
#~ msgid "What usage do you want?"
#~ msgstr "ъЙНЕ БШЙЮПШЯРЮММЕ БШАiПЮЕЖЕ?"
#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "бШАПЮМЮ ГЮЬЛЮР ОЮЙЕРЮ╒: %dMB МЕ ╒КЮГiЖЭ С %dMB"
-
-#~ msgid "Dialup with modem"
-#~ msgstr "оЮДЙКЧВЩММЕ ОПЮГ ЛЮДЩЛ"
+#~ msgstr "бШАПЮМЮ ГЮЬЛЮР ОЮЙЕРЮ╒: %dMА МЕ ╒КЮГiЖЭ С %dMА"
#~ msgid "Local LAN"
#~ msgstr "кЮЙЮКЭМЮЪ ЯЕРЙЮ"
#~ msgid "Which packages do you want to install"
-#~ msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮМН╒Йi"
+#~ msgstr "бШАЮП ОЮЙЕРЮ╒ ДКЪ ╒ЯРЮК╦╒Йi"
#~ msgid "Downloading cryptographic packages"
#~ msgstr "гЮЦПСГЙЮ ЙПШОРЮЦПЮТiВМШУ ОЮЙЕРЮ╒"
@@ -5014,7 +7513,7 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ msgstr "кiМЕИМЮ (МЕЮАУНДМЮ ДКЪ МЕЙЮРНПШУ ЮДЮОРЩПЮ╒ SCSI)"
#~ msgid "linear"
-#~ msgstr "КiМЕИМЮ"
+#~ msgstr "кiМЕИМЮ"
#~ msgid ""
#~ "Linux does not yet fully support ultra dma 66 HPT.\n"
@@ -5022,31 +7521,28 @@ msgstr "оНЬСЙ КiЯРН╒ ОЮРПЮАСЕ МЕЙЮРНПШ ВЮЯ"
#~ "ide2 and ide3"
#~ msgstr ""
#~ "Linux ОЮЙСКЭ ЪЬВЩ МЕ ГСЯiЛ ОЮДРПШЛКiБЮЕ ultra dma 66 HPT.\n"
-#~ "ъЙ БЮПШЪМР, ЛЮЦС ЯРБЮПШЖЭ ДШЯЙЕРС, ЪЙЮЪ ГЮАЪЯОЕВШЖЭ ДНЯРСО ДЮ ДШЯЙС МЮide2 i "
-#~ "ide3"
+#~ "ъЙ БЮПШЪМР, ЛЮЦС ЯРБЮПШЖЭ ДШЯЙЕРС, ЪЙЮЪ ГЮАЪЯОЕВШЖЭ ДНЯРСО ДЮ ДШЯЙС МЮ ide2 "
+#~ "i ide3"
#~ msgid ""
#~ "Enter a floppy to create an HTP enabled boot\n"
#~ "(all data on floppy will be lost)"
#~ msgstr ""
-#~ "сЯРЮБЭЖЕ ДШЯЙЕРС ДКЪ ГЮОiЯС ГЮЦПСГВШЙЮ Г HTP\n"
+#~ "сЯРЮ╒ЖЕ ДШЯЙЕРС ДКЪ ГЮОiЯС ГЮЦПСГВШЙЮ Г HTP\n"
#~ "(СЯЕ ДЮДГЕМШЪ МЮ ЦЩРЮИ ДШЯЙЕЖЕ ГМiЙМСЖЭ)"
#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "мЕЮАУНДМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮМН╒ЙС i ГЮЦПСГiЖЖЮ Г ДШЯЙЕРШ"
+#~ msgstr "мЕЮАУНДМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮК╦╒ЙС i ГЮЦПСГiЖЖЮ Г ДШЯЙЕРШ"
#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "мЕЮАУНДМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮМН╒ЙС Г МНБШЛi ОЮПЮЛЕРПЮЛi"
+#~ msgstr "мЕЮАУНДМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮК╦╒ЙС Г МНБШЛi ОЮПЮЛЕРПЮЛi"
#~ msgid ""
#~ "Failed to create an HTP boot floppy.\n"
#~ "You may have to restart installation and give ``%s'' at the prompt"
#~ msgstr ""
#~ "мЕ ЮРПШЛЮКЮЯЭ ЯРБЮПШЖЭ ГЮЦП. ДШЯЙЕРС Г HTP.\n"
-#~ "лЮЦВШЛЮ, ОЮРПЩАМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮМН╒ЙС Г ``%s'' С ОПШЦКЮЬЩММi"
-
-#~ msgid "Local Printer Options"
-#~ msgstr "нОЖШi КЮЙЮКЭМЮЦЮ ОПШМРЩПЮ"
+#~ "лЮЦВШЛЮ, ОЮРПЩАМЮ ОЕПЮГЮОСЯЖiЖЭ СЯРЮК╦╒ЙС Г ``%s'' С ГЮОПЮЬЩММi"
#~ msgid "Password:"
#~ msgstr "оЮПНКЭ:"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 12a0f6c69..fa5f5fcf3 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -3,58 +3,118 @@
# Elena Radeva <ely@triada.bg>, 1999.
# Pavel Cholakov <pavel@linux.home.bg>, 1999.
# Boyan Ivanov <boyan17@bulgaria.com>, 1999-2000
-# Valery Dachev <valery@linux.home.bg>, 2000
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
+# Valery Dachev <v.dachev@mail.com>, 2000
#
# Bulgarians on Linux use microsoft-cp1251 encoding
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 1999-11-22 17:01+0100\n"
-"Last-Translator: Valery Dachev <valery@linux.home.bg>\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-08-15 15:29+0200\n"
+"Last-Translator: Valery Dachev <v.dachev@mail.com>\n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "нАЫ"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "цПЮТХВМЮ ЙЮПРЮ"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "хГАЕПЕРЕ ЦПЮТХВМЮ ЙЮПРЮ"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "хГАЕПЕРЕ X ЯЗПБЗП"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X ЯЗПБЗП"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "йНЪ МЯРПНИЙЮ МЮ XFree ХЯЙЮРЕ ДЮ ХЛЮРЕ ?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"йЮПРЮРЮ БХ ЛНФЕ ДЮ ХЛЮ ОНДДПЗФЙЮ МЮ УЮПДСЕПМН 3D СЯЙНПЕМХЕ, МН ЯЮЛН Я Xfree "
+"%s.\n"
+"йЮПРЮРЮ БХ ЯЕ ОНДДЗПФЮ НР XFree %s, ЙНИРН ЛНФЕ ДЮ ХЛЮ ОН-ДНАПЮ ОНДДПЗФЙЮ МЮ "
+"2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "йЮПРЮРЮ БХ ЛНФЕ ДЮ ХЛЮ ОНДДПЗФЙЮ МЮ УЮПДСЕПМН 3D СЯЙНПЕМХЕ Б XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s Я УЮПДСЕПМН 3D СЯЙНПЕМХЕ"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"йЮПРЮРЮ БХ ЛНФЕ ДЮ ХЛЮ ОНДДПЗФЙЮ МЮ УЮПДСЕПМН 3D СЯЙНПЕМХЕ, МН ЯЮЛН Я XFree "
+"%s,\n"
+"нраекефере, ве рнбю е ейяоепхлемрюкмю онддпзфйю х лнфе дю гюахе йнлочрзпю "
+"бх.\n"
+"йЮПРЮРЮ БХ ЯЕ ОНДДЗПФЮ НР XFree %s, ЙНИРН ЛНФЕ ДЮ ХЛЮ ОН-ДНАПЮ ОНДДПЗФЙЮ МЮ "
+"2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"йЮПРЮРЮ БХ ЛНФЕ ДЮ ХЛЮ ОНДДПЗФЙЮ МЮ УЮПДСЕПМН 3D СЯЙНПЕМХЕ Я XFree %s.\n"
+"нраекефере, ве рнбю е ейяоепхлемрюкмю онддпзфйю х йнлочрзпзр бх лнфе дю "
+"гюахе."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s Я ейяоепхлемрюкмO УЮПДСЕПМН 3D СЯЙНПЕМХЕ"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "мЮЯРПНИЙЮ МЮ XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "хГАЕПЕРЕ ЙЮОЮЖХРЕР МЮ ОЮЛЕРРЮ МЮ ЦПЮТХВМЮРЮ ЯХ ЙЮПРЮ"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "хГАЕПЕРЕ НОЖХХ ГЮ ЯЗПБЗПЮ"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "хГАЕПЕРЕ ЛНМХРНП"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "лНМХРНП"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -78,39 +138,40 @@ msgstr ""
"ОНБПЕДХРЕ ЛНМХРНПЮ ЯХ.\n"
" юЙН ХЛЮРЕ МЪЙЮЙБХ ЯЗЛМЕМХЪ, ХГАЕПЕРЕ ЙНМЯЕПБЮРХБМЮ МЮЯРПНИЙЮ."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "уНПХГНМРЮКМЮ ЯЙНПНЯР МЮ БЗГЯРЮМНБЪБЮМЕ"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "бЕПРХЙЮКМЮ ЯЙНПНЯР МЮ БЗГЯРЮМНБЪБЮМЕ"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
-msgstr "лНМХРНПЗР МЕ Е ЙНМТХЦСПХПЮМ"
+msgstr "лНМХРНПЗР МЕ Е МЮЯРПНЕМ"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
-msgstr "цПЮТХВМЮРЮ ЙЮПРЮ БЯЕ НЫЕ МЕ Е ЙНМТХЦСПХПЮМЮ"
+msgstr "цПЮТХВМЮРЮ ЙЮПРЮ БЯЕ НЫЕ МЕ Е МЮЯРПНЕМЮ"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "нЫЕ МЕ Е ХГАПЮМЮ ПЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
-msgstr "хЯЙЮРЕ КХ ДЮ РЕЯРБЮРЕ ЙНМТХЦСПЮЖХЪРЮ?"
+msgstr "хЯЙЮРЕ КХ ДЮ РЕЯРБЮРЕ МЮЯРПНИЙХРЕ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "бМХЛЮМХЕ: РЕЯРБЮМЕРН Е НОЮЯМН ГЮ РЮГХ ЦПЮТХВМЮ ЙЮПРЮ"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"бМХЛЮМХЕ: РЕЯРБЮМЕРН МЮ РЮГХ ЦПЮТХВМЮ ЙЮПРЮ ЛНФЕ ДЮ \"ГЮЛПЮГХ\" ЙНЛОЧРЗПЮ БХ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
-msgstr "оПНАМЮ ЙНМТХЦСПЮЖХЪ"
+msgstr "оПНБЕПЙЮ МЮ МЮЯРПНИЙЮРЮ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -118,414 +179,395 @@ msgstr ""
"\n"
"НОХРЮИРЕ ЯЕ ДЮ ОПНЛЕМХРЕ МЪЙНХ ОЮПЮЛЕРПХ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "хГУНД ДН %d ЯЕЙСМДХ"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "бЕПМХ КХ ЯЮ МЮЯРПНИЙХРЕ ?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
-msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ; НОХРЮИРЕ ЯЕ ДЮ ОПНЛЕМХРЕ МЪЙНХ ОЮПЮЛЕРПХ"
-
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "юБРНЛЮРХВМХ ЯРНИМНЯРХ МЮ ПЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"гЮ ДЮ МЮЛЕПЪ ПЮГДЕКХРЕКМХРЕ ЯОНЯНАМНЯРХ МЮ ЛНМХРНПЮ бХ, ЫЕ НОХРЮЛ Я МЪЙНКЙН "
-"ПЮГКХВМХ.\n"
-"еЙПЮМЗР бХ ЫЕ ЯЕ ХГВХЯРХ...\n"
-"лНФЕРЕ ДЮ ЦН ХГЙКЧВХРЕ, ЮЙН ХЯЙЮРЕ, ЙНЦЮРН Е ЦНРНБН ЫЕ ВСЕРЕ ЮКЮПЛЮРЮ"
+msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ, НОХРЮИРЕ ЯЕ ДЮ ОПНЛЕМХРЕ МЪЙНХ ОЮПЮЛЕРПХ"
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "пЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "хГАЕПЕРЕ ПЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР Х ДЗКАНВХМЮ МЮ ЖБЕРНБЕРЕ"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "цПЮТХВМЮ ЙЮПРЮ: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ЯЗПБЗП: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "оНЙЮФХ БЯХВЙХ"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "пЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"лНЦЮ ДЮ НОХРЮЛ ДЮ МЮЛЕПЪ УЮПЮЙРЕПМХРЕ ГЮ ЛНМХРНПЮ бХ ПЮГДЕКХРЕКМХ "
-"ЯОНЯНАМНЯРХ (МЮОПХЛЕП: 800x600).\n"
-"оНМЪЙНЦЮ, НАЮВЕ, РНБЮ ЛНФЕ ДЮ ГЮАХЕ ЛЮЬХМЮРЮ.\n"
-"хЯЙЮРЕ КХ ДЮ НОХРЮРЕ?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"мЕ ЯЮ НРЙПХРЕ БЮКХДМХ ПЕФХЛХ\n"
-"нОХРЮИРЕ Я ДПСЦЮ БХДЕН ЙЮПРЮ ХКХ ЛНМХРНП"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "рХО ЙКЮБХЮРСПЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "рХО ЛХЬЙЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "сЯРПНИЯРБН МЮ ЛХЬЙЮРЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "лНМХРНП: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "уНПХГНМРЮКМЮ ЯХМУПНМХГЮЖХЪ МЮ ЛНМХРНПЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "бЕПРХЙЮКМН НОПЕЯМЪБЮМЕ МЮ ЛНМХРНПЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "цПЮТХВМЮ ЙЮПРЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "цПЮТХВМЮ ОЮЛЕР: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "дЗКАНВХМЮ МЮ ЖБЕРЮ: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "пЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ЯЗПБЗП: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 ДПЮИБЕП: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
-msgstr "оНДЦНРНБЙЮ ГЮ ЙНМТХЦСПХПЮМЕ МЮ X-Window"
+msgstr "оНДЦНРНБЙЮ ГЮ МЮЯРПНИБЮМЕ МЮ X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "оПНЛЕМЕРЕ ЛНМХРНПЮ"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "оПНЛЕМЕРЕ ЦПЮТХВМЮРЮ ЙЮПРЮ"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "оПНЛЕМЕРЕ НОЖХХРЕ МЮ ЯЗПБЗПЮ"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "оПНЛЕМЕРЕ ПЮГДЕКХРЕКМЮРЮ ЯОНЯНАМНЯР"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "юБРНЛЮРХВМН РЗПЯЕМЕ МЮ ПЮГДЕКХРЕКМЮРЮ ЯОНЯНАМНЯР"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "оНЙЮФХ ХМТНПЛЮЖХЪРЮ"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "рЕЯРБЮИ НРМНБН"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "хГКХГЮМЕ"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "йЮЙБН ХЯЙЮРЕ ДЮ МЮОПЮБХРЕ?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "дЮ ГЮАПЮБЪ КХ ОПНЛЕМХРЕ?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"дЮ ГЮОЮГЪ КХ ОПНЛЕМХРЕ ?\n"
+"рЕЙСЫЮРЮ МЮЯРПНИЙЮ Е:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "лНКЪ БКЕГРЕ НРМНБН Б %s, ГЮ ДЮ ЮЙРХБХПЮРЕ ОПНЛЕМХРЕ"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "лНКЪ ХГКЕГРЕ НР ЯЕЯХЪРЮ Х ХГОНКГБЮИРЕ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X ОПХ ЯРЮПРХПЮМЕ МЮ ЯХЯРЕЛЮРЮ"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"лНЦЮ ДЮ МЮЯРПНЪ ЙНЛОЧРЗПЮ БХ ЮБРНЛЮРХВМН, РЮЙЮ ВЕ ДЮ ЯРЮПРХПЮ X ОПХ "
-"ЯРЮПРХПЮМЕ.\n"
-"хЯЙЮРЕ КХ X ДЮ ЯЕ ЯРЮПРХПЮ, ЙНЦЮРН ПЕЯРЮПРХПЮРЕ ЯХЯРЕЛЮРЮ ?"
+"KНЛОЧРЗПЮ БХ ЛНФЕ ЮБРНЛЮРХВМН, ДЮ БКЕГЕ Б X ОПХ ЯРЮПРХПЮМЕ.\n"
+"хЯЙЮРЕ КХ X ДЮ ЯЕ ЯРЮПРХПЮ, ЙНЦЮРН ПЕЯРЮПРХПЮРЕ ЯХЯРЕЛЮРЮ?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"лНЦЮ ДЮ МЮЯРПНЪ ЙНЛОЧРЗПЮ БХ ГЮ ЮБРНЛЮРХВМН БКХГЮМЕ Б ЯХЯРЕЛЮРЮ ЙЮРН "
+"ОНРПЕАХРЕК.\n"
+"юЙН МЕ БХ УЮПЕЯБЮ РЮГХ БЗГЛНФМНЯР,МЮРХЯМЕРЕ БЗПУС АСРНМЮ НРЙЮГ"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "хГАЕПЕРЕ ОНДПЮГАХПЮЫ ЯЕ ОНРПЕАХРЕК :"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "хГАЕПЕРЕ Windows Manager ГЮ ЯРЮПРХПЮМЕ:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 ЖБЪРЮ (8 АХРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 УХКЪДХ ЖБЪРЮ (15 АХРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 УХКЪДХ ЖБЪРЮ (16 АХРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 ЛХКХНМЮ ЖБЪРЮ (24 АХРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 ЛХКХЮПДЮ ЖБЪРЮ (32 АХРЮ)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ХКХ ОНБЕВЕ"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 МЮ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 МЮ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-ЯЗБЛЕЯРХЛ, 1024x768 МЮ 87 Hz interlaced (МЪЛЮ 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 МЮ 87 Hz interlaced, 800x600 МЮ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 МЮ 60 Hz, 640x480 МЮ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 МЮ 60 Hz, 800x600 МЮ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "бХЯНЙНВЕЯРНРЕМ SVGA, 1024x768 МЮ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "лМНЦНВЕЯРНРЕМ ЛНМХРНП, ЙНИРН ДНЯРХЦЮ 1280x1024 МЮ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "лМНЦНВЕЯРНРЕМ ЛНМХРНП, ЙНИРН ДНЯРХЦЮ 1280x1024 МЮ 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "лМНЦНВЕЯРНРЕМ ЛНМХРНП, ЙНИРН ДНЯРХЦЮ 1280x1024 МЮ 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "лНМХРНП, ЙНИРН ДНЯРХЦЮ 1600x1200 МЮ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "лНМХРНП, ЙНИРН ДНЯРХЦЮ 1600x1200 МЮ 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "ЙЗДПЮБ"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "оН ОНДПЮГАХПЮМЕ"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "юЙРХБХПЮИ"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "АПЧМЕРЙЮ"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "ЛНЛХВЕ"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "АКНМДХМЙЮ"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "ЮБРНЛЮЦХВЕМ"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "оЗПБХ ЯЕЙРНП НР ЯРЮПРХПЮЫХЪ ЯЕ ДЪК"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "оЗПБХЪР ЯЕЙРНП НР ДПЮИБЮ (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub ХМЯРЮКЮЖХЪ"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO ХМЯРЮКЮЖХЪ"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "йЗДЕ ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ bootloader-Ю?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub ХМЯРЮКЮЖХЪ"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "аЕГ ТНМ"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
-msgstr "йЮЙБЮ ОПНЦПЮЛЮ ГЮ МЮВЮКМН ГЮПЕФДЮМЕ ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ?"
+msgstr "йЮЙБЮ ОПНЦПЮЛЮ ГЮ МЮВЮКМН ГЮПЕФДЮМЕ ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ?"
+
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Bootloader ХМЯРЮКЮЖХЪ"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "яРЮПРХПЮЫН СЯРПНИЯРБН"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (МЕ ПЮАНРХ МЮ ЯРЮПХ BIOS-Х)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "йНЛОЮЙРЕМ"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "ЙНЛОЮЙРЕМ"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "гЮАЮБЪМЕ ОПЕДХ ЯРЮПРХПЮМЕРН МЮ default ДЪКЮ"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "бХДЕН ПЕФХЛ"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "гЮАЮБЪМЕ ОПЕДХ ЯРЮПРХПЮМЕРН МЮ default ДЪКЮ"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "оЮПНКЮ"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "оЮПНКЮ (НРМНБН)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "нЦПЮМХВХ НОЖХХРЕ, ГЮДЮБЮМХ НР ЙНЛЮМДМХЪ ПЕД"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "НЦПЮМХВХ"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "нОЖХХ МЮ ГЮПЕФДЮЫЮРЮ ОПНЦПЮЛЮ"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "нОЖХЪРЮ ``нЦПЮМХВХ НОЖХХРЕ НР ЙНЛЮМДМХЪ ПЕД'' Е АЕГОНКЕГМЮ АЕГ ОЮПНКЮ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "лНКЪ, НОХРЮИРЕ НРМНБН"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "оЮПНКХРЕ МЮ ЯЗБОЮДЮР"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -533,167 +575,355 @@ msgstr ""
"рНБЮ ЯЮ ПЮГКХВМХРЕ ГЮОХЯХ.\n"
"лНФЕРЕ ДЮ ДНАЮБХРЕ НЫЕ ХКХ ДЮ ОПНЛЕМХРЕ ЯЗЫЕЯРБСБЮЫХРЕ."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "дНАЮБХ"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "цНРНБН"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "йЮЙЗБ РХО ХМТНПЛЮЖХЪ ХЯЙЮРЕ ДЮ ОПХАЮБХРЕ"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
-msgstr "дПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ (Windows...)"
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "дПСЦЮ ня (SunOS...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "йЮЙЗБ РХО ХМТНПЛЮЖХЪ ХЯЙЮРЕ ДЮ ОПХАЮБХРЕ"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "дПСЦЮ ня (Windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "нАПЮГ"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "цКЮБЕМ"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "дНОЗКБЮМЕ"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "вЕРЕМЕ-ГЮОХЯ"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "рЮАКХЖЮ"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "нОЮЯЕМ"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "еРХЙЕР"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "оН ОНДПЮГАХПЮМЕ"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "оПЕЛЮУМХ ГЮОХЯ"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "оПЮГЕМ ЕРХЙЕР МЕ Е ПЮГПЕЬЕМ"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "рНГХ ЕРХЙЕР БЕВЕ ЯЕ ХГОНКГБЮ"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "мЮЛЕПЕМХ ЯЮ %s %s ХМРЕПТЕИЯХ"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "хЛЮРЕ КХ ДПСЦ(Х) ?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "хЛЮРЕ КХ МЪЙЮЙЗБ %s ХМРЕПТЕИЯ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "мЕ"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "дЮ"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "бХФ УЮПДСЕПМЮРЮ ХМТНПЛЮЖХЪ"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "хМЯРЮКХПЮМЕ МЮ ДПЮИБЕП ГЮ %s ОКЮРЙЮ %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(ЛНДСК %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "йНИ %s ДПЮИБЕП ДЮ ОПНАБЮЛ ?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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"
+"НР ЙНЪРН ЯЕ МСФДЮЕ ? оН ОПХМЖХО РНБЮ ЛНФЕ ДЮ ГЮАХЕ ЙНЛОЧРЗПЮ БХ, МН МЪЛЮ ДЮ "
+"ЦН ОНБПЕДХ."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "юБРНЛЮРХВМН ГЮЯХВЮМЕ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "гЮДЮИ НОЖХХ"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "яЕЦЮ ЛНФЕРЕ ДЮ ОНДЮДЕРЕ НОЖХХРЕ ЛС ЙЗЛ ЛНДСКЮ %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its 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''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "нОЖХХ МЮ ЛНДСКЮ:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"гЮПЕФДЮМЕРН МЮ ЛНДСКЮ %s МЕ СЯОЪ.\n"
+"хЯЙЮРЕ КХ ДЮ НОХРЮРЕ НРМНБН Я ДПСЦХ ОЮПЮЛЕРПХ ?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"To list the possible choices, press <TAB>.\n"
+"\n"
+"To load one of them, write its name and press <ENTER> or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "хГОНКГБЮИРЕ ЙКЮБХЬХРЕ %c Х %c, ГЮ ДЮ ХГАЕПЕРЕ НЯБЕРЕМХРЕ."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "мЮРХЯМЕРЕ Enter, ГЮ ДЮ ЯРЮПРХПЮРЕ ХГАПЮМЮРЮ ня, 'e' ГЮ ОНОПЮБЙЮ МЮ"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "ЙНЛЕМДХРЕ ОПЕДХ ЯРЮПРХПЮМЕ, ХКХ 'c' ГЮ ЙНЛЮМДЕМ ПЕД."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "нЯБЕРЕМХРЕ ГЮОХЯХ ЫЕ АЗДЮР ЯРЮПРХПЮМХ ЮБРНЛЮРХВМН ЯКЕД %d ЯЕЙСМДХ."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "МЪЛЮ ДНЯРЮРЗВМН ЛЪЯРН ГЮ /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "дЕЯЙРНО"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "яРЮПРНБН лЕМЧ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d ЛХМСРХ"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 ЛХМСРЮ"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d ЯЕЙСМДХ"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "яЗГДЮИ"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "дЕЛНМРХПЮИ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "хГРПХИ"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "тНПЛЮРХПЮИ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "оПНЛЕМХ ЦНКЕЛХМЮРЮ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "бХД"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "лЪЯРН МЮ ЛНМРХПЮМЕ"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "гЮОХЬХ /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "оПЕЛХМХ Б еЙЯОЕПРЕМ ПЕФХЛ"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "оПЕЛХМХ Б мНПЛЮКЕМ ПЕФХЛ"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "бЗГЯРЮМНБХ НР ТЮИК"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "гЮОЮГХ БЗБ ТЮИК"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "лЮЦЭНЯМХЙ"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "бЗГЯРЮМНБХ НР ДХЯЙЕРЮ"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "гЮОЮГХ МЮ ДХЯЙЕРЮ"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "хГВХЯРХ БЯХВЙН"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "тНПЛЮРХПЮИ БЯХВЙН"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "юБРНЛЮРХВМН ПЮГОПЕДЕКЕМХЕ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "бЯХВЙХ ОЗПБХВМХ ДЪКНБЕ ЯЕ ХГОНКГБЮР"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "мЕ ЛНЦЮ ДЮ ДНАЮБЪ ОНБЕВЕ ДЪКНБЕ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -701,59 +931,63 @@ msgstr ""
"юЙН ХЯЙЮРЕ НЫЕ ДЪКНБЕ, ЛНКЪ ХГРПХИРЕ ЕДХМ, ГЮ ДЮ ЛНФЕРЕ ДЮ ЯЗГДЮДЕРЕ ЕДХМ "
"ПЮГЬХПЕМ ДЪК"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "гЮОХЯБЮМЕ МЮ РЮАКХЖЮРЮ Я ДЪКНБЕ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "бЗГЯРЮМНБЪБЮМЕ МЮ ХГРПХРНРН"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "гЮОХЯБЮМЕ МЮ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "оПЕГЮПЕФДЮМЕ"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "оПЮГМЮ"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "дПСЦЮ"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "оПЮГМЮ"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "дПСЦЮ"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "бХДНБЕ ТЮИКНБЮ ЯХЯРЕЛЮ:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "оНДПНАМНЯРХ"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -765,17 +999,17 @@ msgstr ""
"оПЕДКЮЦЮЛ ОЗПБН ДЮ ОПНЛЕМХРЕ ЦНКЕЛХМЮРЮ МЮ РНГХ ДЪК\n"
"(ЫПЮЙМЕРЕ БЗПУС МЕЦН, Ю ЯКЕД РНБЮ ЫПЮЙМЕРЕ БЗПУС \"оПНЛЕМХ ЦНКЕЛХМЮРЮ\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "оЗПБН ЯЗГДЮИРЕ backup МЮ ЯБНХРЕ ДЮММХ"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "оПНВЕРЕРЕ БМХЛЮРЕКМН !"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -785,77 +1019,77 @@ msgstr ""
"ЯЕЙРНПЮ\n"
"ЯЮ ДНЯРЮРЗВМХ) Б МЮВЮКНРН МЮ ДХЯЙЮ"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "бМХЛЮМХЕ: РЮГХ НОЕПЮЖХЪ Е НОЮЯМЮ"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "цПЕЬЙЮ"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "лЪЯРН МЮ ЛНМРХПЮМЕ: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "сЯРПНИЯРБН: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "аСЙБЮ МЮ СЯРПНИЯРБНРН ОНД DOS: %s (ОПНЯРН ОПЕДОНКНФЕМХЕ)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "бХД: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "мЮВЮКН: ЯЕЙРНП %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "пЮГЛЕП: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s ЯЕЙРНПЮ"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "нР ЖХКХМДЗП %d ДН ЖХКХМДЗП %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "тНПЛЮРХПЮМ\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "мЕТНПЛЮРХПЮМ\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "лНМРХПЮМ\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback ТЮИК(НБЕ): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -863,79 +1097,79 @@ msgstr ""
"дЪК, ЙНИРН ЯЕ ЯРЮПРХПЮ ОН ОНДПЮГАХПЮМЕ\n"
" (ГЮ MS-DOS boot, МЕ ГЮ lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "мХБН %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "пЮГЛЕП МЮ ОЮПВЕРН %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-ДХЯЙНБЕ %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "хЛЕ МЮ loopback ТЮИКЮ: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "хГАЕПЕРЕ ДЪК ЙЮРН ЫПЮЙМЕРЕ БЗПУС МЕЦН"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "пЮГЛЕП: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "цЕНЛЕРПХЪ: %s ЖХКХМДПХ, %s ЦКЮБХ, %s ЯЕЙРНПХ\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "рХО МЮ РЮАКХЖЮРЮ Я ДЪКНБЕ: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "МЮ ЬХМЮ %d ЮДПЕЯ %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "лНМРХПЮИ"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "юЙРХБХПЮИ"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "оПХАЮБХ ЙЗЛ RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "оПЕЛЮУМХ НР RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "лНДХТХЖХПЮИ RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "хГОНКГБЮИ ГЮ loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "хГАЕПЕРЕ ДЕИЯРБХЕ"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -947,7 +1181,7 @@ msgstr ""
"хКХ ХГОНКГБЮРЕ LILO Х РН МЕ ПЮАНРХ, ХКХ МЕ ХГОНКГБЮРЕ LILO Х МЪЛЮРЕ МСФДЮ НР "
"/boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -959,67 +1193,68 @@ msgstr ""
"юЙН ЯЛЪРЮРЕ ДЮ ХГОНКГБЮРЕ boot ЛЕМХДФЗПЮ LILO, АЗДЕРЕ БМХЛЮРЕКМХ ОПХ\n"
"ОПХАЮБЪМЕРН МЮ /boot ДЪК"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"лЮПЙХПЮКХ ЯРЕ ЯНТРСЕПЕМ RAID ДЪК ЙЮРН root (/).\n"
-"мЪЛЮ ГЮПЕФДЮЫЮ ОПНЦПЮЛЮ, ЙНЪРН ЛНФЕ ДЮ ЯЕ ЯОПЮБХ АЕГ /boot ДЪК.\n"
-"рЮЙЮ ВЕ ДНАЮБЕРЕ /boot ДЪК, ЮЙН ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ LILO ХКХ GRUB"
+"мЪЛЮ ГЮПЕФДЮЫЮ ОПНЦПЮЛЮ, ЙНЪРН ДЮ ЛНФЕ ДЮ ЯЕ ЯОПЮБХ Я МЕЦН АЕГ /boot ДЪК.\n"
+"рЮЙЮ ВЕ ДНАЮБЕРЕ /boot ДЪК"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "бЛЕЯРН РНБЮ ХГОНКГБЮИРЕ ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "оЗПБН ХГОНКГБЮИРЕ 'дЕЛНМРХПЮМЕ'"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"яКЕД ОПНЛЪМЮ МЮ РХОЮ МЮ ДЪКЮ %s, БЯХВЙХ ДЮММХ БЗПУС МЕЦН ЫЕ АЗДЮР ГЮЦСАЕМХ"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "оПНДЗКФЕМХЕ БЗОПЕЙХ БЯХВЙН ?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "хГУНД АЕГ ГЮОХЯ"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "хГУНД, АЕГ ДЮ ГЮОХЯ МЮ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ ?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "оПНЛЪМЮ РХОЮ МЮ ДЪКЮ"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "йЮЙЗБ РХО ДЪК ФЕКЮЕРЕ ?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "гЮ ЙЮЙБЮ ЖЕК БХ РПЪАБЮ ?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "мЕ ЛНФЕРЕ ДЮ ХМЯРЮКХПЮМЕ ReiserFS МЮ ДЪК ОН-ЛЮКЗЙ НР 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "йЗДЕ ХЯЙЮРЕ ДЮ ЛНМРХПЮРЕ loopback-ТЮИКЮ %s ?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "йЗДЕ ХЯЙЮРЕ ДЮ ЛНМРХПЮРЕ СЯРПНИЯРБН %s ?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1028,139 +1263,144 @@ msgstr ""
"loopback.\n"
"оЗПБН ЛЮУМЕРЕ loopback"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "яКЕД ТНПЛЮРХПЮМЕ МЮ ДЪКЮ %s, БЯХВЙХ ДЮММХ БЗПУС МЕЦН ЫЕ АЗДЮР ГЮЦСАЕМХ"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "тНПЛЮРХПЮМЕ"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "тНПЛЮРХПЮМЕ МЮ loopback ТЮИКЮ %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "тНПЛЮРХПЮМЕ МЮ ДЪКЮ %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "яКЕД ТНПЛЮРХПЮМЕ МЮ БЯХВЙХ ДЪКНБЕ,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "БЯХВЙХ ДЮММХ БЗПУС РЪУ ЫЕ АЗДЮР ГЮЦСАЕМХ"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "оПЕЛЕЯРХ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "мЮ ЙНИ ДХЯЙ ХЯЙЮРЕ ДЮ ЦН ОПЕЛЕЯРХРЕ ?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "яЕЙРНП"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "мЮ ЙНИ ЯЕЙРНП ХЯЙЮРЕ ДЮ ЦН ОПЕЛЕЯРХРЕ?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "лЕЯРЕМЕ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "лЕЯРБЪ ДЪКЮ ... "
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "рЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ МЮ СЯРПНИЯРБН %s ЫЕ АЗДЕ ГЮОХЯЮМЮ БЗПУС ДХЯЙЮ !"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "рПЪАБЮ ДЮ ПЕЯРЮПРХПЮРЕ, ОПЕДХ ОПНЛЕМХРЕ ДЮ БКЪГЮР Б ЯХКЮ"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "хГВХЯКЪБЮЛ ЦПЮМХЖХРЕ МЮ fat ТЮИКНБЮРЮ ЯХЯРЕЛЮ"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "оПНЛЪМЮ МЮ ЦНКЕЛХМЮРЮ"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "йНИ ДЪК ФЕКЮЕРЕ ДЮ ОПНЛЕМХРЕ?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "бЯХВЙХ ДЮММХ МЮ РНГХ ДЪК РПЪАБЮ ДЮ АЗДЮР ЮПУХБХПЮМХ"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"яКЕД ОПНЛЪМЮ ЦНКЕЛХМЮРЮ МЮ ДЪКЮ %s, ДЮММХte БЗПУС МЕЦН ЫЕ АЗДЮР ГЮЦСАЕМХ"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "хГАЕПЕРЕ МНБЮ ЦНКЕЛХМЮ"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "яЗГДЮИ МНБ ДЪК"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "мЮВЮКЕМ ЯЕЙРНП: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "цНКЕЛХМЮ Б MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "бХД ТЮИКНБЮ ЯХЯРЕЛЮ: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "оПЕДОНВХРЮМХЕ: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "рНГХ ДЪК МЕ ЛНФЕ ДЮ АЗДЕ ХГОНКГБЮМ ГЮ loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "хЛЕ МЮ loopback ТЮИКЮ: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "тЮИКЗР БЕВЕ ЯЕ ХГОНКГБЮ РН ДПСЦ loopback, ХГАЕПЕРЕ ДПСЦ ТЮИК."
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "тЮИКЗР БЕВЕ ЯЗЬЕЯРБСБЮ. дЮ ЦН ХГОНКГБЮЛ КХ ?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "хГАЕПЕРЕ ТЮИК"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1168,11 +1408,11 @@ msgstr ""
"пЕГЕПБМЮРЮ РЮАКХЖЮ МЮ ДЪКНБЕРЕ МЕ Е ЯЗЯ ЯЗЫЮРЮ ЦНКЕЛХМЮ\n"
"дЮ ОПНДЗКФЮ КХ БЯЕ ОЮЙ ?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "оПЕДСОПЕФДЕМХЕ"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1180,79 +1420,79 @@ msgstr ""
"яКНФЕРЕ ДХЯЙЕРЮ БЗБ ТКНОХРН\n"
"бЯХВЙХ ДЮММХ, МЮЛХПЮЫХ ЯЕ БЗПУС ДХЯЙЕРЮРЮ, ЫЕ АЗДЮР ГЮЦСАЕМХ"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "нОХРБЮЛ ЯЕ ДЮ ЯОЮЯЪ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "СЯРПНИЯРБН"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "МХБН"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "ЦНКЕЛХМЮ МЮ ОЮПВЕРН"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "хГАЕПЕРЕ ЯЗЫЕЯРБСБЮЫ RAID ГЮ ОПХАЮБЪМЕ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "МНБ"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ТНПЛЮРХПЮМЕ НР %s ОПНБЮКЕМН"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "МЕ ГМЮЛ ЙЮЙ ДЮ ТНПЛЮРХПЮЛ %s Б РХО %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs ЛНМРХПЮМЕРН МЕ СЯОЪ"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "ЛНМРХПЮМЕРН МЕ СЯОЪ: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "ЦПЕЬЙЮ ОПХ ДЕЛНМРХПЮМЕРН МЮ %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "рНВЙХРЕ МЮ ЛНМРХПЮМЕ РПЪАБЮ ДЮ ГЮОНВБЮР Я /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "бЕВЕ ХЛЮ ДЪК Я РЮГХ ЛЪЯРН МЮ ЛНМРХПЮМЕ %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "\"нЛЮЦЭНЯЮМ ЙПЗЦ\" НР ЛНМРХПЮМХЪ: %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "рЮГХ ДХПЕЙРНПХЪ РПЪАБЮ ДЮ НЯРЮМЕ Б ПЮЛЙХРЕ МЮ root ТЮИКНБЮРЮ ЯХЯРЕЛЮ."
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"мСФДЮЕРЕ ЯЕ НР ХЯРХМЯЙЮ ТЮИКНБЮ ЯХЯРЕЛЮ (ext2, reiserfs) ГЮ РЮГХ РНВЙЮ МЮ "
"ЛНМРХПЮМЕ\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "цПЕЬЙЮ ОПХ НРБЮПЪМЕ МЮ %s ГЮ ГЮОХЯ: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1261,76 +1501,81 @@ msgstr ""
"ЯЗГДЮДЕМХ МНБХ ТЮИКНБХ ЯХЯРЕЛХ. лНКЪ ОПНБЕПЕРЕ УЮПД ДХЯЙЮ ЯХ ГЮ ОПХВХМЮРЮ ГЮ "
"РНГХ ОПНАКЕЛ"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "мЪЛЮРЕ МХЙЮЙБХ ДЪКНБЕ!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "хГАЕПЕРЕ ОПЕДОНВХРЮМ ЕГХЙ ГЮ ХМЯРЮКЮЖХЪ Х ЯХЯРЕЛМН ОНКГБЮМЕ"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "хГАЕПЕРЕ ЕГХЙЗР МЮ ЙКЮБХЮРСПЮРЮ БХ НР ЯОХЯЗЙЮ ОН-ДНКС"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "хГАЕПЕРЕ ЕГХЙЗР МЮ ЙКЮБХЮРСПЮРЮ БХ НР ЯОХЯЗЙЮ ОН-ДНКС"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"хГАЕПЕРЕ \"хМЯРЮКЮЖХЪ\", ЮЙН МЪЛЮ ХМЯРЮКХПЮМЮ ОПЕДХЬМЮ БЕПЯХЪ МЮ Linux\n"
-"ХКХ ЮЙН ХЯЙЮРЕ ДЮ ОНКГБЮРЕ ПЮГКХВМХ ДХЯРПХАСЖХХ/БЕПЯХХ.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"хГАЕПЕРЕ \"нАМНБЪБЮМЕ\", ЮЙН ХЯЙЮРЕ ДЮ НАМНБХРЕ ОПЕДХЬМЮ БЕПЯХЪ МЮ\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 or 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"хГАЕПЕРЕ:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - юБРНЛЮРХГХПЮМЮ(ОПЕОНПЗВХРЕКМЮ): юЙН МЕ ЯРЕ ХМЯРЮКХПЮКХ кХМСЙЯ, ХГАЕПЕРЕ\n"
-"ХГАЕПЕРЕ РНБЮ. нраекефере:\n"
-" лПЕФЮРЮ МЪЛЮ ДЮ АЗДЕ ЙНМТХЦСПХПЮМЮ ОН БПЕЛЕ МЮ ХМЯРЮКЮЖХЪРЮ, ХГОНКГБЮИРЕ "
-"\"LinuxConf\",\n"
-" ГЮ ДЮ Ъ ЙНМТХЦСПХПЮРЕ ЯКЕД ОПХЙКЧВБЮМЕ МЮ ХМЯРЮКЮЖХЪРЮ.\n"
"\n"
-" - яОЕЖХЮКХГХПЮМЮ: юЙН ЯРЕ ДНЯРЮРЗВМН ГЮОНГМЮР Я GNU/Linux, ЫЕ ЛНФЕРЕ ДЮ "
-"ХГАЕПЕРЕ\n"
-" ОПЕДМЮГМЮВЕМХЕРН МЮ ЛЮЬХМЮРЮ ЯХ. бХФРЕ ОН-ДНКС ГЮ ОНДПНАМНЯРХ.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - еЙЯОЕПР: рНБЮ ОПЕДОНКЮЦЮ, ВЕ ЯРЕ МЮ \"РХ\" Я GNU/Linux Х ХЯЙЮРЕ ДЮ\n"
-" МЮОПЮБХРЕ БХЯНЙН ЯОЕЖХЮКХГХПЮМЮ ХМЯРЮКЮЖХЪ. йЮЙРН Х Б "
-"\"яОЕЖХЮКХГХПЮМХЪ\"\n"
-" ХМЯРЮКЮЖХНМЕМ ЙКЮЯ, ЫЕ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ СОНРПЕАЮРЮ МЮ ЯХЯРЕЛЮРЮ ЯХ.\n"
-" мН ЛНКЪ, ЛНКЪ, ме хгахпюире, нябем юйн ме гмюере йюйбн опюбхре !\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1338,49 +1583,50 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"хГАЕПЕРЕ:\n"
"\n"
-" - оПЕОНПЗВХРЕКМЮ: юЙН МХЙНЦЮ ОПЕДХ МЕ ЯРЕ ХМЯРЮКХПЮКХ кХМСЙЯ..\n"
+" - яОЕЖХЮКХГХПЮМЮ: юЙН ЯРЕ ДНЯРЮРЗВМН ГЮОНГМЮР Я GNU/Linux, ЫЕ ЛНФЕРЕ ДЮ "
+"ХГАЕПЕРЕ\n"
+" ЦКЮБМНРН ОПЕДМЮГМЮВЕМХЕ МЮ ЛЮЬХМЮРЮ ЯХ. бХФРЕ ОН-ДНКС ГЮ ОНДПНАМНЯРХ.\n"
"\n"
"\n"
-" - яОЕЖХЮКХГХПЮМЮ: юЙН ЯРЕ ГЮОНГМЮР Я кХМСЙЯ, ЫЕ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ \n"
-"ХМЯРЮКХПЮМЮРЮ ЯХЯРЕЛЮ ЛЕФДС МНПЛЮКМЮ, ГЮ ПЮГПЮАНРЙЮ ХКХ ГЮ ЯЗПБЗП. хГАЕПЕРЕ\n"
-"\"мНПЛЮКМЮ\" ГЮ НАЫН ОНКГБЮМЕ МЮ БЮЬХЪ ЙНЛОЧРЗП. лНФЕРЕ ДЮ ХГАЕПЕРЕ\n"
-"\"пЮГПЮАНРВХЙ\" ЮЙН ЫЕ ХГОНКГБЮРЕ ЙНЛОЧРЗПЮ ГЮ ОПНЦПЮЛХПЮМЕ ХКХ \"яЗПБЗП\"\n"
-"ЮЙН ХЯЙЮРЕ ДЮ ЯЗГДЮДЕРЕ ЯЗПБЗП ГЮ ЕКЕЙРПНММЮ ОНЫЮ, ОЕВЮР, ...\n"
+" - еЙЯОЕПРМЮ: рНБЮ ОПЕДОНКЮЦЮ, ВЕ ЯРЕ МЮ \"РХ\" Я GNU/Linux Х ХЯЙЮРЕ ДЮ\n"
+" МЮОПЮБХРЕ БХЯНЙН ЯОЕЖХЮКХГХПЮМЮ ХМЯРЮКЮЖХЪ. йЮЙРН Х Б "
+"\"яОЕЖХЮКХГХПЮМХЪ\"\n"
+" ХМЯРЮКЮЖХНМЕМ ЙКЮЯ, ЫЕ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ СОНРПЕАЮРЮ МЮ ЯХЯРЕЛЮРЮ ЯХ.\n"
+" мН ЛНКЪ, ЛНКЪ, ме хгахпюире рнбю, нябем юйн ме гмюере йюйбн опюбхре!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"пЮГКХВМХРЕ БЗГЛНФМНЯРХ ГЮ СОНРПЕАЮРЮ МЮ ЛЮЬХМЮРЮ БХ (НЯХЦСПЕМХ, РЗИ ЙЮРН ЯРЕ "
"ХГАПЮКХ\n"
@@ -1405,151 +1651,367 @@ msgstr ""
"ДЮММХ Х Р.М.. йЮРН РЮЙЗБ, МЕ НВЮЙБЮИРЕ ХМЯРЮКХПЮМХ ЬЮПХМХИЙХ (KDE, "
"GNOME...).\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX ЫЕ МЮОПЮБХ ОПНБЕПЙЮ ГЮ ЕДХМ ХКХ МЪЙНКЙН PCI SCSI ЮДЮОРЕПЮ.\n"
-"юЙН НРПЙХЕ Х ГМЮЕ,ЙНИ ДПЮИБЕП ДЮ ХМЯРЮКХПЮ,ЫЕ ЦН МЮОПЮБХ\n"
-"ЮБРНЛЮРХВМН АЕГ БЮЬЮ МЮЛЕЯЮ.\n"
+"DrakX ЫЕ ЯЕ НОХРЮ ДЮ ОНРЗПЯХ PCI SCSI ЮДЮОРЕП(Х).\n"
+"юЙН DrakX НРЙПХЕ SCSI ЮДЮОРЕП Х ГМЮЕ ЙНИ ДПЮИБЕП ДЮ ХГОНКГБЮ, ЫЕ ЦН\n"
+"(ЦХ) ХМЯРЮКХПЮ ЮБРНЛЮРХВМН.\n"
+"\n"
+"юЙН МЪЛЮРЕ SCSI ЮДЮОРЕП, ISA SCSI ЮДЮОРЕ, ХКХ PCI SCSI ЮДЮОРЕП, ЙНИРН\n"
+"DrakX МЕ ПЮГОНГМЮБЮ, ЫЕ АЗДЕРЕ ОНОХРЮМХ ДЮКХ SCSI ЮДЮОРЕПЗР ОПХЯЗЯРБЮ Б\n"
+"ЯХЯЕРЛЮРЮ БХ. юЙН МЪЛЮ ЮДЮОРЕП, ОПНЯРН ЖЗЙМЕРЕ БЗПУС 'мЕ'. юЙН ЖЗЙМЕРЕ\n"
+"БЗПУС 'дЮ', ЫЕ БХ АЗДЕ ОПЕДНЯРЮБЕМ ЯОХЯЗЙ НР ДПЮИБЕПХ, НР ЙНХРН ЛНФЕРЕ\n"
+"ДЮ ХГАЕПЕРЕ БЮЬХЪ НОПЕДЕКЕМ ЮДЮОРЕП.\n"
+"\n"
+"\n"
+"юЙН РПЪАБЮ ПЗВМН ДЮ НОПЕДЕКХРЕ ЮДЮОРЕПЮ ЯХ, DrakX ЫЕ ОНОХРЮ ДЮКХ,\n"
+"ХЯЙЮРЕ ДЮ НОПЕДЕКХРЕ НОЖХХ ГЮ МЕЦН. рПЪАБЮ ДЮ ОНГБНКХРЕ МЮ DrakX ДЮ\n"
+"ОПНАБЮ УЮПДСЕПЮ ГЮ НОЖХХРЕ. нАХЙМНБЕМН РНБЮ ПЮАНРХ ДНАПЕ.\n"
+"\n"
+"юЙН МЕ, ЫЕ ЯЕ МЮКНФХ ДЮ НОПЕДЕКХРЕ НОЖХХРЕ МЮ ДПЮИБЕПЮ.\n"
+"оПЕЦКЕДЮИРЕ хМЯРЮКЮЖХНММНРН ПЗЙНБНДЯРБН ГЮ МЮЯНЙЮ ЙЗЛ ОПХДНАХБЮМЕРН МЮ\n"
+"РЮГХ ХМТНПЛЮЖХЪ НР Windows (ЮЙН ЦН ХЛЮРЕ МЮ ЯХЯРЕЛЮРЮ ЯХ), НР УЮПДСЕПМЮРЮ\n"
+"ДНЙСЛЕМРЮЖХЪ, НР ЯЮИРЮ МЮ ОПНХГБНДХРЕКЪ (ЮЙН ХЛЮРЕ ДНЯРЗО ДН хМРЕПМЕР)."
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
-"юЙН БЮЬХЪР SCSI ЮДЮОРЕП Е МЮ ISA board , ХКХ МЮ PCI board,МН DrakX\n"
-"МЕГМЮЕ ЙНИ ДПЮИБЗП ДЮ ХГОНКГБЮ , ЫЕ АЗДЕРЕ ОНОХРЮМ ХЛЮРЕ КХ РЮЙХБЮ\n"
-"ЮДЮОРЕПХ. юЙН МЪЛЮРЕ НРЦНБНПЕРЕ \"мЕ\".юЙН ХЛЮРЕ - \"дЮ\" Х ЫЕ ЯЕ ОНЙЮФЕ\n"
-"ЯОХЯЗЙ Я ДПЮИБЕПХ.\n"
-"рЮЛ ХГАЕПЕРЕ МЮИ-ОНДУНДЪЫХЪ ГЮ БЮЬХЪ ЮДЮОРЕП.\n"
"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
-"яКЕД РЮГХ ОПНЖЕДСПЮ, DrakX ЫЕ БХ ОНОХРЮ ХЯЙЮРЕ КХ ДЮ ЛНДХТХЖХПЮРЕ НОЖХХРЕ\n"
-"ГЮ ЮДЮОРЕПЮ. оЗПБН ОПНАБЮИРЕ ДПЮИБЕПЮ ДЮ МЮЛЕПХ УЮПДСЕПЮ: НАХЙМНБЕМН ПЮАНРХ\n"
-"ДНАПЕ.\n"
"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
-"юЙН КХ МЕ,МЕ ГЮАПЮБЪИРЕ ДЮ БГЕЛЕРЕ ХМТНПЛЮЖХЪРЮ НР ДНЙСЛЕМРЮЖХЪРЮ МЮ\n"
-"ДПЮИБЕПЮ,ХКХ НР Windows."
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-"яЕЦЮ РПЪАБЮ ДЮ ХГАЕПЕРЕ МЮ ЙНИ/ЙНХ ДЪКНБЕ ЫЕ ХМЯРЮКХПЮРЕ БЮЬЮРЮ\n"
-"Linux-Mandrake ЯХЯРЕЛЮ, ЮЙН РЕ ЯЮ БЕВЕ ЯЗГДЮДЕМХ (НР ОПЕДХЬМЮ Linux\n"
-"ХМЯРЮКЮЖХЪ ХКХ МЪЙЮЙЗБ ДПСЦ ХМЯРПСЛЕМР). рНБЮ НГМЮВЮБЮ КНЦХВЕЯЙН ПЮГДЕКЪМЕ\n"
-"МЮ ОПНЯРПЮМЯРБНРН МЮ УЮПД ДХЯЙЮ Б НРДЕКМХ НАКЮЯРХ (ДЪКНБЕ).\n"
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
-"юЙН РПЪАБЮ ДЮ ЯЗГДЮБЮРЕ МНБ ДЪК, ХГАЕПЕРЕ \"юБРНЛЮРХВМН ЯЗГДЮБЮМЕ\"ГЮ ДЮ "
-"МЮОПЮБХРЕ ДЪКНБЕ ГЮ Linux. лНФЕ ДЮ ХГАЕПЕРЕ ДХЯЙЮ ГЮ ПЮГДЕКЪМЕ ЙЮРН\n"
-"МЮРХЯМЕРЕ БЗПУС \"hda\" ГЮ ОЗПБХЪ IDE ДХЯЙ, \"hdb\" ГЮ БРНПХЪ ХКХ\n"
-"\"sda\" ГЮ ОЗПБХЪ SCSI Х Р.М.\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"дБЮРЮ БХДЮ ДЪКНБЕ, ЙНХРН ЫЕ БХ РПЪАБЮР ЯЮ: root ДЪК (/), ЙНИРН Е МЮВЮКМЮРЮ\n"
-"РНВЙЮ МЮ ДХПЕЙРНПХИМЮРЮ ЯРПСЙРСПЮ Х /boot, ЙНИРН ЯЗДЗПФЮ МЕНАУНДХЛХРЕ ГЮ\n"
-"МЮВЮКМН ГЮПЕФДЮМЕ ТЮИКНБЕ.\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"рЗИ ЙЮРН ЕТЕЙРХРЕ НР РНГХ ОПНЖЕЯ ЯЮ МЮОЗКМН МЕНАПЮРХЛХ, РНБЮ ЛНФЕ ДЮ Е\n"
-"ЯРПЕЯНБН ГЮ МЕНОХРЕМ ОНРПЕАХРЕК. DiskDrake НОПНЯРЪБЮ ОПНЖЕЯЮ. хГОНКГБЮИРЕ\n"
-"ДНЙСЛЕМРЮЖХЪРЮ.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"лНФЕРЕ ДЮ ДНЯРХЦМЕРЕ БЯЪЙЮ НОЖХЪ Я ЙКЮБХЮРСПЮРЮ: ДБХФЕРЕ ОПЕГДЪКНБЕРЕ\n"
-"ХГОНКГБЮИЙХ Tab Х ЯРЕКЙХРЕ Up/Down. йНЦЮРН ЛЮПЙХПЮРЕ ДЪК, ЛНФЕРЕ ДЮ "
-"ХГОНКГБЮРЕ:\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c ГЮ ДЮ ЯЗГДЮДЕРЕ МНБ ДЪК (ЙНЦЮРН Е ХГАПЮМ ОПЮГЕМ)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d ГЮ ДЮ ХГРПХЕРЕ ДЪК\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m ГЮ ДЮ НОПЕДЕКХРЕ ЛЪЯРН ГЮ ЛНМРХПЮМЕ\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"мНБХРЕ ДЪКНБЕ РПЪАБЮ ДЮ АЗДЮР ТНПЛЮХРПЮМХ ГЮ ДЮ ЯЮ ХГОНКГБЮЕЛХ\n"
-"(ТНПЛЮРХПЮМЕ НГМЮВЮБЮ ЯЗГДЮБЮМЕ МЮ ТЮИКНБЮ ЯХЯРЕЛЮ). б РНГХ ЛНЛЕМР\n"
-"ЛНФЕ ДЮ ТНПЛЮРХПЮРЕ НРМНБН ЯРЮПХ ДЪКНБЕ, ГЮ ДЮ ХГРПХЕРЕ ТЮИКНБЕРЕ МЮ РЪУ.\n"
-"гЮ БЕВЕ ЯЗЫЕЯРБСБЮЫХРЕ ДЪКНБЕ НАЮВЕ РНБЮ МЕ Е ГЮДЗКФХРЕКМН. нАХЙМНБЕМН МЕ\n"
-"ЯЕ ТНПЛЮРХПЮР /home Х /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"яЕЦЮ ЛНФЕРЕ ЯЮ ЛЮПЙХПЮРЕ ЦПСОЮ ОЮЙЕРХ, ЙНЪРН ХЯЙЮРЕ ДЮ\n"
"ХМЯРЮКХПЮРЕ ХКХ НАМНБХРЕ.\n"
@@ -1563,157 +2025,185 @@ msgstr ""
"ОЮЙЕР\";\n"
"Б РНГХ ЯКСВЮИ, ЫЕ РПЪАБЮ ДЮ НАУНДХРЕ ОНБЕВЕ НР 1000 ОЮЙЕРЮ ..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"юЙН ХЛЮРЕ БЯХВЙХ CD-РЮ НР ЯОХЯЗЙЮ ОН-ЦНПЕ, МЮРХЯМЕРЕ Ok.\n"
"юЙН МЪЛЮРЕ МХРН ЕДМН НР РЕГХ CD-РЮ, МЮРХЯМЕРЕ нРЙЮГ.\n"
"юЙН БХ КХОЯБЮР МЪЙНХ CD-РЮ, ЛЮУМЕРЕ ЦХ, Х МЮРХЯМЕРЕ Ok. "
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"оЮЙЕРХРЕ, ЙНХРН ЯРЕ ЛЮПЙХПЮКХ, ЫЕ АЗДЮР ХМЯРЮКХПЮМХ ЯЕЦЮ. рЮГХ НОЕПЮЖХЪ\n"
-"ЫЕ НРМЕЛЕ МЪЙНКЙН ЛХМСРХ, НЯБЕМ ЮЙН МЕ ЯРЕ ХГАПЮКХ ДЮ НАМНБХРЕ ЯХЯРЕЛЮРЮ.\n"
-"рНЦЮБЮ НАМНБЪБЮМЕРН ЛНФЕ ДЮ НМРЕЛЕ ОНБЕВЕ БПЕЛЕ."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"юЙН DrakX МЕ СЯОЕЕ ДЮ МЮЛЕПХ ЛХЬЙЮРЮ БХ, ХКХ ХЯЙЮРЕ ДЮ\n"
-"ОПНБЕПХРЕ ЙЮЙБН Е НРЙПХК, ОН-ЦНПЕ ЫЕ БХ АЗДЕ ОПЕДНЯРЮБЕМ ЯОХЯЗЙ ЯДПЮИБЕПХ ГЮ "
-"ЛХЬЙХ.\n"
-"\n"
-"\n"
-"юЙН ЯРЕ ЯЗЦКЮЯМХ Я НРЙПХРНРН НР DrakX, ОПНЯРН НРХДЕРЕ МЮ ЯЕЙЖХЪРЮ, ЙНЪРН\n"
-"ХЯЙЮРЕ, ЙЮРН ЖЗЙМЕРЕ БЗПУС МЕЪ Б ЛЕМЧРН Б КЪБН. б ОПНРХБЕМ ЯКСВЮИ,\n"
-"ХГАЕПЕРЕ РНГХ БХД ЛХЬЙЮ НР ЛЕМЧРН, ЙЮЙЗБРН ЛХЯКХРЕ ГЮ МЮИ-АКХГЗЙ ДН\n"
-"БЮЬЮРЮ.\n"
-"\n"
-"\n"
-"б ЯКСВЮИ ВЕ ЛХЬЙЮРЮ БХ Е ЯЕПХИМЮ, ЫЕ РПЪАБЮ ЯЗЫН РЮЙЮ ДЮ ОНЯНВЕРЕ\n"
-"ЙНИ ОНПР Е ЯБЗПГЮМЮ."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"лНКЪ, ХГАЕПЕРЕ БЕПМХЪ ОНПР. мЮОПХЛЕП, ОНПРЗР COM1 (ОНД Windows) ЯЕ МЮПХВЮ\n"
-"ttyS0 (ОНД кХМСЙЯ)."
+"лНКЪ, ХГАЕПЕРЕ БЕПМХЪ ОНПР. мЮОПХЛЕП, ОНПРЗР COM1 ОНД Windows ЯЕ МЮПХВЮ\n"
+"ttyS0 ОНД GNU/Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"рЮГХ ЯЕЙЖХЪ Е ОНЯБЕРЕМЮ МЮ ЙНМТХЦСПХПЮМЕРН МЮ КНЙЮКМЮРЮ ЛПЕФЮ\n"
-"(LAN) ХКХ ЛНДЕЛ.\n"
-"\n"
-"хГАЕПЕРЕ \"кНЙЮКМЮ ЛПЕФЮ\" Х DrakX ЫЕ\n"
-"НОХРЮ ДЮ МЮЛЕПХ Ethernet ЮДЮОРЕПЮ МЮ ЛЮЬХМЮРЮ БХ. PCI aДЮОРЕПХРЕ\n"
-"ЫЕ АЗДЮР НРЙПХРХ Х МЮЯРПНЕМХ ЮБРНЛЮРХВМН.\n"
-"нАЮВЕ, ЮЙН ОЕПХТЕПХЪРЮ БХ Е ISA, РНБЮ МЪЛЮ ДЮ ЯРЮМЕ Х ЫЕ РПЪАБЮ\n"
-"ДЮ ХГАЕПЕРЕ ДПЮИБЕП НР ЯОХЯЗЙЮ, ЙНИРН ЫЕ ЯЕ ОНЪБХ ЯКЕД РНБЮ.\n"
-"\n"
-"\n"
-"гЮ SCSI ЮДЮОРЕПХРЕ, МЮ ОЗПБН БПЕЛЕ ОПНАБЮИРЕ ДЮ ЦН ГЮЯЕВЕРЕ\n"
-"МН, ЮЙН РНБЮ МЕ ЯРЮМЕ, ХГАЕПЕРЕ РНГХ ДПЮИБЕП, ЙНИРН ЯРЕ БГЕКХ\n"
-"НР ДНЙСЛЕМРЮЖХЪРЮ ОПЕДНЯРЮБЕМЮ БХ Я РНГХ\n"
-"УЮПДСЕП.\n"
-"\n"
-"\n"
-"юЙН ХМЯРЮКХПЮРЕ Linux-Mandrake ЯХЯРЕЛЮ МЮ ЛЮЬХМЮ, ЙНЪРН Е ВЮЯР\n"
-"НР БЕВЕ ЯЗЫЕЯРБСБЮЫЮ ЛПЕФЮ, ЮДЛХМХЯРПЮРНПЗР МЮ ЛПЕФЮРЮ АХ РПЪАБЮКН\n"
-"ДЮ БХ Е ДЮК МЕНАУНДХЛЮРЮ ХМТНПЛЮЖХЪ (IP ЮДПЕЯ Х ЛПЕФНБЮ Submask ХКХ\n"
-"Netmask ГЮ ОН-ЙПЮРЙН, Х ХЛЕ МЮ ЛЮЬХМЮРЮ). юЙН ЯКЮЦЮРЕ ВЮЯРМЮ ЛПЕФЮ\n"
-"БЙЗЫХ МЮОПХЛЕП, ЫЕ БХ ЯЕ МЮКНФХ ДЮ ХГАЕПЕРЕ\n"
-"ЮДПЕЯХ.\n"
-"\n"
-"\n"
-"хГАЕПЕРЕ \"мЮАХПЮМЕ Я ЛНДЕЛ\", ГЮ ДЮ АЗДЕ ЙНМТХЦСПХПЮМЮ БПЗГЙЮРЮ\n"
-"БХ ОН хМРЕПМЕР. DrakX ЫЕ НОХРЮ ДЮ МЮЛЕПХ ЛНДЕЛЮ БХ, МН, ЮЙН МЕ\n"
-"СЯОЕЕ, ЫЕ РПЪАБЮ БХЕ ДЮ ХГАЕПЕРЕ ЯЕПХИМХЪ ОНПР, ЙЗЛ ЙНИРН Е\n"
-"ЯБЗПГЮМ БЮЬХЪ ЛНДЕЛ."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"яЕЦЮ ЛНФЕРЕ ДЮ БЗБЕДЕРЕ НОЖХХРЕ ГЮ МЮАХПЮМЕ. юЙН МЕ ЯРЕ ЯХЦСПМХ,\n"
+"ОПЮБХКМЮ ХМТНПЛЮЖХЪ ЛНФЕРЕ ДЮ ОНКСВХРЕ НР хМРЕПМЕР ДНЯРЮБВХЙЮ ЯХ."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"бЗБЕДЕРЕ:\n"
"\n"
-" - IP ЮДПЕЯ: ЮЙН МЕ ЦН ГМЮЕРЕ, ОНОХРЮИРЕ ЮДЛХМХЯРПЮРНПЮ МЮ ЛПЕФЮРЮ ХКХ "
-"ДНЯРЮБВХЙЮ ЯХ МЮ хМРЕПМЕР.\n"
+" - IP ЮДПЕЯ: ЮЙН МЕ ЦН ГМЮЕРЕ, ОНОХРЮИРЕ ЛПЕФНБХЕ ЯХ ЮДЛХМХЯРПЮРНП ХКХ "
+"хМРЕПМЕР ДНЯРЮБВХЙЮ ЯХ.\n"
"\n"
"\n"
" - лПЕФНБЮ ЛЮЯЙЮ: \"255.255.255.0\" НАХЙМНБЕММН Е ДНАЗП ХГАНП. юЙН МЕ ЯРЕ\n"
-"ЯХЦСПМХ, ОНОХРЮИРЕ ЛПЕФНБХЪ ЯХ ЮДЛХМХЯРПЮРНП ХКХ хМРЕПМЕР ДНЯРЮБВХЮЙ ЯХ.\n"
+"ЯХЦСПМХ, ОНОХРЮИРЕ ЛПЕФНБХЪ ЯХ ЮДЛХМХЯРПЮРНП ХКХ хМРЕПМЕР ДНЯРЮБВХЙЮ ЯХ.\n"
"\n"
"\n"
-" - юБРНЛЮРХВМН IP: юЙН ЛПЕФЮРЮ БХ ХГОНКГБЮ bootp ХКХ dhcp ОПНРНЙНК,\n"
+" - юБРНЛЮРХВМН IP: юЙН ЛПЕФЮРЮ БХ ХГОНКГБЮ BOOTP ХКХ DHCP ОПНРНЙНК,\n"
"ЛЮПЙХПЮИРЕ РЮГХ НОЖХЪ. юЙН Ъ ХГАЕПЕРЕ, МЕ ЯЕ МСФДЮЕРЕ НР \"IP ЮДПЕЯ\". юЙН\n"
"МЕ ЯРЕ ЯХЦСПМХ, ОНОХРЮИРЕ ЛПЕФНБХЪ ЯХ ЮДЛХМХЯРПЮРНП ХКХ хМРЕПМЕР ДНЯРЮБВХЙЮ "
"ЯХ.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"юЙН ЛПЕФЮРЮ БХ ХГОНКГБЮ NIS, ХГАЕПЕРЕ \"хГОНКГБЮИ NIS\". юЙН МЕ ГМЮЕРЕ,\n"
+"ОНОХРЮИРЕ ЛПЕФНБХЪ ЮДЛХМХЯРПЮРНП."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1721,7 +2211,7 @@ msgstr ""
"яЕЦЮ ЛНФЕРЕ ДЮ БЗБЕДЕРЕ НОЖХХРЕ ГЮ МЮАХПЮМЕ. юЙН МЕ ЯРЕ ЯХЦСПМХ,\n"
"ОПЮБХКМЮ ХМТНПЛЮЖХЪ ЛНФЕРЕ ДЮ ОНКСВХРЕ НР хМРЕПМЕР ДНЯРЮБВХЙЮ ЯХ."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1729,13 +2219,15 @@ msgstr ""
"юЙН ЫЕ ХГОНКГБЮРЕ proxy ЯЗПБЗПХ, ЛНКЪ, МЮЯРПНИРЕ ЦХ ЯЕЦЮ. юЙН МЕГМЮЕРЕ,\n"
"ОНОХРЮИРЕ ЛПЕФНБХЪ ЮДЛХМХЯРПЮРНП ХКХ хМРЕПМЕР ДНЯРЮБВХЙЮ ЯХ."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1747,29 +2239,43 @@ msgstr ""
"нРАЕКЕФЕРЕ, ВЕ РПЪАБЮ ДЮ ХГАЕПЕРЕ НЦКЕДЮКЕМ ЯЮИР Х ЙПХОРНЦПЮТЯЙХ ОЮЙЕРХ\n"
"БЗНАПЮГМН БЮЬЕРН ГЮЙНМНДЮРЕКЯРБН."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"яЕЦЮ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ БПЕЛЕБЮРЮ ГНМЮ, Б ЙНЪРН ЯЕ МЮЛХПЮРЕ.\n"
+"яЕЦЮ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ БПЕЛЕБЮРЮ ГНМЮ Б ГЮБХЯХЛНЯР НР РНБЮ, ЙЗДЕ ЯЕ "
+"МЮЛХПЮРЕ.\n"
"\n"
"\n"
-"Linux ПЮАНРХ Я БПЕЛЕ ОН цПХМСХВ Х ЦН ОПЕБЕФДЮ Б КНЙЮКМН ГЮ ГНМЮРЮ, ЙНЪРН\n"
-"ЯРЕ ХГАПЮКХ."
+"GNU/Linux ПЮАНРХ Я БПЕЛЕ ОН бц ХКХ \"бПЕЛЕ ОН цПХМСХВ\" Х ЦН ОПЕБЕФДЮ Б\n"
+"КНЙЮКМН БПЕЛЕ Б ГЮБХЯХЛНЯР НР ГНМЮРЮ, ЙНЪРН ЯРЕ ХГАПЮКХ."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"яЕЦЮ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ ЙНЪ НР СЯКСЦХРЕ ХЯЙЮРЕ ДЮ ЯЕ ОСЯЙЮ ОПХ ЯРЮПРХПЮМЕ.\n"
"йНЦЮРН ЛХЬЙЮРЮ БХ ЛХМЮБЮ МЮД РЪУ, ЫЕ ХГЙЮВЮ ЛЮКЗЙЮ АЮКНМННАПЮГМЮ ОНЛНЫ, "
@@ -1780,81 +2286,159 @@ msgstr ""
"ЛЮЬХМЮРЮ ЯХ ЙЮРН ЯЗПБЗП: ЛНФЕ АХ ХЯЙЮРЕ ДЮ МЕ ЯЕ ЯРЮПРХПЮР СЯКСЦХ, ЙНХРН МЕ\n"
"ХЯЙЮРЕ."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"кХМСЙЯ ЛНФЕ ДЮ ХГОНКГБЮ ЛМНЦН БХДНБЕ ОПХМРЕПХ. бЯЕЙХ НР РЕГХ\n"
-"БХДНБЕ ХГХЯЙБЮ ПЮГКХВМЮ МЮЯРПНИЙЮ. нРАЕКЕФЕРЕ НАЮВЕ, ВЕ ОН ОНДПЮГАХПЮМЕ\n"
-"ОПНЦПЮЛЮРЮ ГЮ ОПХМРЕПЮ ХГОНКГБЮ ЙЮРН ХЛЕ МЮ ОПХМРЕПЮ 'lp', РЮЙЮ ВЕ\n"
-"РПЪАБЮ ДЮ ХЛЮРЕ ОПХМРЕП Я РНБЮ ХЛЕ; МН БХЕ ЛНФЕРЕ ДЮ ГЮДЮДЕРЕ МЪЙНКЙН\n"
-"ХЛЕМЮ МЮ ОПХМРЕПЮ ЯХ НРДЕКЕМХ ЯЗЯ ЯХЛБНКЮ '|'.\n"
-"рЮЙЮ ВЕ, ЮЙН ОПЕДОНВХРЮРЕ ОН-ЯКХЯКЕМН ХЛЕ, ОПНЯРН ЫЕ РПЪАБЮ ДЮ\n"
-"ЦН ЯКНФХРЕ ОЗПБН, МЮОП.: \"My Printer|lp\".\n"
-"оПХМРЕПЗР, ЙНИРН ХЛЮ\"lp\" Б ХЛЕ(РН/ЮРЮ) ЯХ ЫЕ АЗДЕ ОПХМРЕПЮ ОН "
-"ОНДПЮГАХПЮМЕ.\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"юЙН ОПХМРЕПЗР БХ Е ЯБЗПГЮМ ДХПЕЙРМН ЙЗЛ БЮЬХЪ ЙНЛОЧРЗП, ХГАЕПЕРЕ\n"
-"\"кНЙЮКЕМ ОПХМРЕП\". рНЦЮБЮ ЫЕ РПЪАБЮ ДЮ СЙЮФЕРЕ ОНПРЮ Х ОНДУНДЪЫХЪ\n"
-"ТХКРЗП.\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
"\n"
-"юЙН ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ОПХМРЕП МЮ ДПСЦЮ Unix ЛЮЬХМЮ, ЫЕ РПЪАБЮ\n"
-"ДЮ ХГАЕПЕРЕ \"нРДЮКЕВЕМН lpd\". гЮ ДЮ ЦН МЮЙЮПЮРЕ ДЮ ПЮАНРХ, МЪЛЮ\n"
-"ДЮ ЯЕ МСФДЮЕРЕ НР ХЛЕ Х ОЮПЮКЮ, МН ЫЕ РПЪАБЮ ДЮ ГМЮЕРЕ ХЛЕРН МЮ\n"
-"НОЮЬЙЮРЮ ГЮ ОЕВЮРЮМЕ МЮ РНГХ ЯЗПБЗП.\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
"\n"
-"юЙН ХЯЙЮРЕ ДНЯРЗО ДН SMB ОПХМРЕП (ЙНЕРН ГМЮВХ ОПХМРЕП ЯБЗПГЮМ ЙЗЛ\n"
-"НРДЮКЕВЕМЮ Windows 9x/NT ЛЮЬХМЮ), ЫЕ РПЪАБЮ ДЮ ГМЮЕРЕ МЕЦНБНРН\n"
-"SMB ХЛЕ (МЕ TCP/IP ХЛЕРН), Х ЕБЕМРСЮКМН IP ЮДПЕЯЮ ОКЧЯ ОНРПЕАХРЕКЯЙХ\n"
-"ЮЙЮСМР, ПЮАНРМЮ ЦПСОЮ Х ОЮПНКЮ МЕНАУНДХЛХ ГЮ ДНЯРЗОЮ ДН МЕЦН, ЙЮЙРН Х,\n"
-", ПЮГАХПЮ ЯЕ, ХЛЕРН МЮ ОПХМРЕПЮ. яЗЫНРН БЮФХ Х ГЮ NetWare ОПХМРЕП,\n"
-"НАЮВЕ АЕГ ДЮ ХЛЮРЕ МСФДЮ НР ХЛЕ МЮ ПЮАНРМЮ ЦПСОЮ."
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:567
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"яЕЦЮ ЛНФЕРЕ ДЮ БЗБЕДЕРЕ ОЮПНКЮРЮ МЮ ЯЗЯРЕЛМХЪ ЮДЛХМХЯРПЮРНП.\n"
"рЪ РПЪАБЮ ДЮ ЯЕ БЗБЕДЕ 2 ОЗРХ ГЮ ОПНБЕПЙЮ.\n"
@@ -1864,7 +2448,7 @@ msgstr ""
"ЙНИРН ХЛЮ ОПЮБЮ БЗПУС БЯХВЙХ ТЮИКНБЕ Х СЯРПНИЯРБЮ.гЮРНБЮ МЮОПЮБЕРЕ\n"
"ОЮПНКЮРЮ ЯХ ДНЯРЮРЗВМН РПСДМЮ ГЮ МЮКСВЙБЮМЕ."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1872,7 +2456,7 @@ msgstr ""
"гЮ ОН-ЯХЦСПМЮ ЯХЯРЕЛЮ, РПЪАБЮ ДЮ ХГАЕПЕРЕ \"хГОНКГБЮИ shadow ТЮИК\"\n"
"Х \"хГОНКГБЮИ MD5 ОЮПНКХ\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1880,7 +2464,7 @@ msgstr ""
"юЙН ЛПЕФЮРЮ БХ ХГОНКГБЮ NIS, ХГАЕПЕРЕ \"хГОНКГБЮИ NIS\". юЙН МЕ ГМЮЕРЕ,\n"
"ОНОХРЮИРЕ ЛПЕФНБХЪ ЮДЛХМХЯРПЮРНП."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1908,7 +2492,7 @@ msgstr ""
"ЮЙЮСМР \"root\". лНФЕРЕ ДЮ ЯЗГДЮДЕРЕ ОН ЕДХМ ХКХ ОНБЕВЕ ГЮ БЯЕЙХ, ЙНИРН\n"
"АХУРЕ ХЯЙЮКХ ДЮ ОНКГБЮ ЙНЛОЧРЗПЮ БХ. нРАЕКЕФЕРЕ ВЕ БЯЕЙХ ЮЙЮСМР ЫЕ ХЛЮ\n"
"ЯБНХРЕ ОПЕДОНВХРЮМХЪ (ЦПЮТХВМЮ ЯПЕДЮ, ОПНЦПЮЛМХ МЮЯРПНИЙХ Х Р.М.)\n"
-"Х ДЮ ЙНМТХЦСПХПЮ ЯБНЪРЮ \"Home\" ДХПЕЙРНПХЪ, ЙЗДЕРН ДЮ ГЮОХЯБЮ РЕГХ\n"
+"Х ДЮ МЮЯРПНХ ЯБНЪРЮ \"Home\" ДХПЕЙРНПХЪ, ЙЗДЕРН ДЮ ГЮОХЯБЮ РЕГХ\n"
"ЯБНХ ОПЕДОНВХРЮМХЪ.\n"
"\n"
"\n"
@@ -1919,34 +2503,30 @@ msgstr ""
"гЮРНБЮ БКХГЮИРЕ Я ОНРПЕАХРЕКЯЙХЪ ЯХ ЮЙЮСМР Б ЯХЯРЕЛЮРЮ Х, ЯЮЛН ЮЙН БХ ЯЕ\n"
"МЮКНФХ, ХГОНКГБЮИРЕ ЮДЛХМХЯРПЮРНПЯЙХЪ ЮЙЮСМР."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"цНПЕЫН БХ ОПЕОНПЗВБЮЛЕ ДЮ НРЦНБНПХРЕ Я \"дЮ\" РСЙ. юЙН ХМЯРЮКХПЮРЕ\n"
-"Microsoft Windows ОН ЙЗЯМН, РНИ ЫЕ ОПЕГЮОХЬЕ boot-ЯЕЙРНПЮ.\n"
-"нЯБЕМ ЮЙН МЕ ЯРЕ ЯЗГДЮКХ ЯОЮЯХРЕКМЮ ДХЯЙЕРЮ ЙЮЙРН Е ОПЕОНПЗВЮМН, МЪЛЮ\n"
-"ДЮ ЛНФЕРЕ ДЮ ЯРЮПРХПЮРЕ ЯХЯРЕЛЮРЮ Б кХМСЙЯ."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"рПЪАБЮ ДЮ ОНЯНВХРЕ ЙЗДЕ ФЕКЮЕРЕ\n"
-"ДЮ ОНЯРЮБХРЕ ХМТНПЛЮЖХЪРЮ,МЕНАУНДХЛЮ ГЮ ЯРЮПРХПЮМЕРН МЮ Linux.\n"
+"рПЪАБЮ ДЮ ОНЯНВХРЕ ЙЗДЕ ФЕКЮЕРЕ ДЮ\n"
+"ОНЯРЮБХРЕ ХМТНПЛЮЖХЪРЮ, МЕНАУНДХЛЮ ГЮ ЯРЮПРХПЮМЕРН МЮ GNU/Linux.\n"
"\n"
"\n"
-"юЙН МЕ ГМЮЕРЕ ЙЮЙБН ОПЮБХРЕ,ХГАЕПЕРЕ \"оЗПБХЪ ЯЕЙРНП МЮ ДПЮИБЮ (MBR)"
+"юЙН МЕ ЯРЕ ЯХЦСПМХ Б РНБЮ, ЙНЕРН ОПЮБХРЕ, ХГАЕПЕРЕ \"оЗПБХЪ ЯЕЙРНП МЮ\n"
+"СЯРПНИЯРБНРН (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1954,10 +2534,10 @@ msgstr ""
"нЯБЕМ ЮЙН МЕ ЯРЕ ЯХЦСПМХ Б НАПЮРМНРН, НАХЙМНБЕМХЪ ХГАНП Е \"/dev/hda\"\n"
"(ОЗПБХ БНДЕЫН IDE ДХЯЙ) ХКХ \"/dev/sda\" (ОЗПБХ SCSI ДХЯЙ)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1968,9 +2548,10 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (ХКХ LInux LOader) Х Grub ЯЮ bootloader-Х: РЕ ЛНЦЮ ДЮ ЯРЮПРХПЮР\n"
-"Linux ХКХ ЙНЪ ДЮ Е ДПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ, ЙНЪРН ХЛЮРЕ МЮ ЙНЛОЧРЗПЮ ЯХ.\n"
+"GNU/Linux ХКХ ЙНЪ ДЮ Е ДПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ ЯЗЫЕЯРБСБЮЫЮ МЮ ЙНЛОЧРЗПЮ "
+"БХ.\n"
"нАХЙМНБЕММН, РЕГХ ДПСЦХ НОЕПЮЖХНММХ ЯХЯРЕЛЮ ЯЕ ГЮЯХВЮР Х ХМЯРЮКХПЮР\n"
-"ОПЮБХКМН. юЙН РНБ МЕ ЯРЮБЮ ОПХ БЮЯ, ЛНФЕРЕ ДЮ ДНАЮБЪРЕ ГЮОХЯХ МЮ ПЗЙЮ Б\n"
+"ОПЮБХКМН. юЙН РНБЮ МЕ ЯРЮБЮ ОПХ БЮЯ, ЛНФЕРЕ ДЮ ДНАЮБЪРЕ ГЮОХЯХ МЮ ПЗЙЮ Б\n"
"РНГХ ЕЙПЮМ. цКЕДЮИРЕ ДЮ ХГАЕПЕРЕ БЕПМХ ОЮПЮЛЕРПХ.\n"
"\n"
"\n"
@@ -1978,7 +2559,8 @@ msgstr ""
"Б ЙНИРН ЯКСВЮИ ЛНФЕРЕ ДЮ ХГРПХЕРЕ ЯЗНРБЕРМХРЕ ГЮОХЯХ. мН Б РЮЙЗБ ЯКСВЮИ,\n"
"ЫЕ ЯЕ МСФДЮЕРЕ НР boot-ДХЯЙЕРЮ, ГЮ ДЮ ЦХ ЯРЮПРХПЮРЕ !"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1995,7 +2577,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"цКЮБМХРЕ НОЖХХ МЮ LILO Х GRUB ЯЮ:\n"
@@ -2016,10 +2600,61 @@ msgstr ""
" * normal: ХГАХПЮ НАХЙМНБЕМ 80x25 РЕЙЯРНБ ПЕФХЛ.\n"
" * <number>: ХГОНКГБЮ ЯЗНРБЕРМХЪ РЕЙЯРНБ ПЕФХЛ."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO Е bootloader ГЮ SPARC: РoИ ЛНФЕ ДЮ ЯРЮПРХПЮ\n"
+"GNU/Linux ХКХ ЙНЪ ДЮ Е ДПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ, ЯЗЫЕЯРБСБЮЫЮ МЮ ЙНЛОЧРЗПЮ "
+"БХ.\n"
+"нАХЙМНБЕММН, РЕГХ ДПСЦХ НОЕПЮЖХНММХ ЯХЯРЕЛЮ ЯЕ ГЮЯХВЮР Х ХМЯРЮКХПЮР\n"
+"ОПЮБХКМН. юЙН РНБЮ МЕ ЯРЮБЮ ОПХ БЮЯ, ЛНФЕРЕ ДЮ ДНАЮБЪРЕ ГЮОХЯХ МЮ ПЗЙЮ Б\n"
+"РНГХ ЕЙПЮМ. цКЕДЮИРЕ ДЮ ХГАЕПЕРЕ БЕПМХ ОЮПЮЛЕРПХ.\n"
+"\n"
+"\n"
+"лНФЕ ДЮ МЕ ХЯЙЮРЕ ДЮ ДЮБЮРЕ ДНЯРЗО ДН РЕГХ НОЕПЮЖХНММХ ЯХЯРЕЛХ МЮ МХЙНИ,\n"
+"Б ЙНИРН ЯКСВЮИ ЛНФЕРЕ ДЮ ХГРПХЕРЕ ЯЗНРБЕРМХРЕ ГЮОХЯХ. мН Б РЮЙЗБ ЯКСВЮИ,\n"
+"ЫЕ ЯЕ МСФДЮЕРЕ НР boot-ДХЯЙЕРЮ, ГЮ ДЮ ЦХ ЯРЮПРХПЮРЕ !"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"цКЮБМХРЕ НОЖХХ МЮ SILO ЯЮ:\n"
+" - bootloader ХМЯРЮКЮЖХЪ: ОНЙЮГБЮ, ЙЗДЕРН ХЯЙЮРЕ ДЮ ОНЯРЮБХРЕ ХМТНПЛЮЖХЪРЮ\n"
+"МЕНАУНДХЛЮ ГЮ ЯРЮПРХПЮМЕРН МЮ GNU/Linux. нЯБЕМ ЮЙН МЕ ГМЮЕРЕ РНВМН ЙЮЙБН\n"
+"ОПЮБХРЕ, ХГАЕПЕРЕ \"оЗПБХ ЯЕЙРНП МЮ СЯРПНИЯРБНРН (MBR)\".\n"
+"\n"
+"\n"
+" - хГВЮЙБЮМЕ ОПЕДХ ЯРЮПРХПЮМЕ МЮ ОНДПЮГАХПЮЫХЪ ЯЕ НАПЮГ: нОПЕДЕКЪ ДЕЯЕРХРЕ\n"
+"НР ЯЕЙСМДЮРЮ, ЙНХРН ГЮПЕФДЮЫЮ ОПНЦПЮЛЮ ДЮ ХГВЮЙЮ ОПЕДХ ОСЯЙЮМЕРН МЮ ОЗПБХЪ\n"
+"НАПЮГ. оНКЕГМН Е ГЮ ЯХЯРЕЛХ, ЙНХРН ЯРЮПРХПЮР НР ДХЯЙЮ БЕДМЮЦЮ ЯКЕД ЙЮРН\n"
+"ЯЕ БЙКЧВХ ЙКЮБХЮРСПЮРЮ. гЮПЕФДЮЫЮРЮ ОПНЦПЮЛЮ МЕ ВЮЙЮ, ЮЙН \"delay\" Е\n"
+"ОПНОСЯМЮР ХКХ Е МСКЮ."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2030,25 +2665,27 @@ msgid ""
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
-"яЕЦЮ Е БПЕЛЕ ДЮ ЙНМТХЦСПХПЮРЕ X Window,ЙНЪРН Е ЪДПНРН МЮ \n"
-"ЦПЮТХВМХЪ ХМРЕПТЕИЯ ГЮ кХМСЙЯ.гЮ РЮГХ ЖЕК РПЪАБЮ ДЮ ЙНМТХЦСПХПЮРЕ\n"
-"БЮЬЮРЮ БХДЕНЙЮПРЮ Х ЛНМХРНП.оН-ЦНКЪЛЮ ВЮЯР НР ПЮАНРЮРЮ Е ЮБРНЛЮРХВМЮ.\n"
-"рЮЙЮ ВЕ БХЕ ЫЕ РПЪАБЮ ЯЮЛН ДЮ ОПНБЕПХРЕ МЮЯРПНИЙХРЕ Х ДЮ ЦХ ОПХЕЛЕРЕ\n"
+"яЕЦЮ Е БПЕЛЕ ДЮ МЮЯРПНХРЕ X Window System, ЙНЪРН Е ЪДПНРН МЮ \n"
+"GNU/Linux GUI (цПЮТХВЕМ оНПЕАХРЕКЯЙХ хМРЕПТЕИЯ). гЮ РЮГХ ЖЕК РПЪАБЮ ДЮ\n"
+"МЮЯРПНХРЕ БХДЕНЙЮПРЮРЮ Х ЛНМХРНПЮ ЯХ. оН-ЦНКЪЛЮРЮ ВЮЯР НР ЯРЗОЙХРЕ ЯЮ\n"
+"ЮБРНЛЮРХГХПЮМХ, РЮЙЮ ВЕ ПЮАНРЮРЮ БХ ЛНФЕ АХ ЫЕ ЯЕ ЯЗЯРНХ ЯЮЛН НР ОПНБЕПЙЮ\n"
+"ЙЮЙБН Е МЮОПЮБЕМН Х ОПХЕЛЮМЕРН МЮ МЮЯРПНИЙХРЕ :)\n"
"\n"
"\n"
-"йНЦЮРН ЙНМТХЦСПХПЮМЕРН ГЮБЗПЬХ, X ЫЕ АЗДЕ ЯРЮПРХПЮМ,ГЮ ДЮ ОПНБЕПХРЕ\n"
-"ДЮКХ МЮЯРПНИЙХРЕ БХ СЯРПНИБЮР.юЙН МЕ БХ СЯРПНИБЮР ЛНФЕРЕ ДЮ ЯЕ\n"
-"БЗПМЕРЕ Х ДЮ ЦН ОПНЛЕМХРЕ,ЙНКЙНРН ОЗРХ Е МЕНАУНДХЛН."
+"йНЦЮРН МЮЯРПНИЙЮРЮ ГЮБЗПЬХ, X ЫЕ АЗДЕ ЯРЮПРХПЮМ (НЯБЕМ ЮЙН МЕ СЙЮФЕРЕ МЮ\n"
+"DrakX ДЮ МЕ ЦН ОПЮБХ), ГЮ ДЮ ОПНБЕПХРЕ ДЮКХ МЮЯРПНИЙХРЕ БХ СЯРПНИБЮР. юЙН\n"
+"МЕ БХ СЯРПНИБЮР, ЛНФЕРЕ ДЮ ЯЕ БПЗЫЮРЕ Х ДЮ ЦХ ОПНЛЕМЪРЕ, ЙНКЙНРН ОЗРХ БХ\n"
+"Е МЕНАУНДХЛН."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
"юЙН МЕЫН МЕ Е МЮПЕД Я МЮЯРПНИЙЮРЮ МЮ X, ХГОНКГБЮИРЕ РЕГХ НОЖХХ ГЮ\n"
-"ОПЮБХКМН ЙНМТХЦСПХПЮМЕ МЮ X Window ЯХЯРЕЛЮРЮ."
+"ОПЮБХКМЮ МЮЯРПНИЙЮ МЮ X Window ЯХЯРЕЛЮРЮ."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2056,42 +2693,47 @@ msgstr ""
"юЙН ОПЕДОНВХРЮРЕ ДЮ ХГОНКГБЮРЕ ЦПЮТХВМН БКХГЮМЕ, ХГАЕПЕРЕ \"дЮ\". б\n"
"ОПНРХБЕМ ЯКСВЮИ, ХГАЕПЕРЕ \"мЕ\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"яЕЦЮ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ ДНОЗКМХРЕКМХ НОЖХХ ГЮ ЯХЯРЕЛЮРЮ ЯХ.\n"
"\n"
@@ -2120,7 +2762,8 @@ msgstr ""
" - рНВМН ГЮДЮБЮМЕ НАЕЛЮ МЮ RAM, ЮЙН Е МСФМН: ГЮ ЯЗФЮКЕМХЕ, Б ДМЕЬМХЪ "
"PC-ЯБЪР, МЪЛЮ\n"
" ЯРЮМДЮПРЕМ ЛЕРНД ДЮ ЯЕ ОНОХРЮ BIOS ГЮ НАЕЛЮ МЮ RAM Б ЙНЛОЧРЗПЮ. йЮРН\n"
-" ОНЯКЕДЯРБХЕ, Linux ЛНФЕ ДЮ МЕ СЯОЕЕ ДЮ ГЮЯЕВЕ ОПЮБХКМН НАЕЛЮ МЮ RAM.\n"
+" ОНЯКЕДЯРБХЕ, GNU/Linux ЛНФЕ ДЮ МЕ СЯОЕЕ ДЮ ГЮЯЕВЕ ОПЮБХКМН НАЕЛЮ МЮ "
+"RAM.\n"
" юЙН РНБЮ Е ЯКСВЮЪ, РСЙ ЛНФЕРЕ ДЮ ГЮДЮДЕРЕ РНВМХЪ НАЕЛ МЮ RAM. "
"нРАЕКЕФЕРЕ,\n"
" ВЕ ПЮГКХЙЮ НР 2 ХКХ 4 MB Е МНПЛЮКМЮ.\n"
@@ -2134,7 +2777,7 @@ msgstr ""
" ЯРЮПРХПЮМЕ, ХГАЕПЕРЕ РЮГХ НОЖХЪ (аЕКЕФЙЮ: NumLock ЛНФЕ Х ДЮ МЕ ПЮАНРХ "
"ОНД X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2148,96 +2791,119 @@ msgstr ""
"ЮБРНЛЮРХВМН. юЙН ХЯЙЮРЕ ДЮ ОСЯМЕРЕ ДПСЦЮ ЯЗЫЕЯРБСБЮЫЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ,\n"
"ОПНВЕРЕРЕ ДНОЗКМХРЕКМХРЕ ХМЯРПСЙЖХХ."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "хГАНП МЮ ЕГХЙ"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "хГАНП МЮ ЙКЮЯ ХМЯРЮКЮЖХЪ"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "гЮЯХВЮМЕ МЮ ДХЯЙНБЕРЕ"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ЛХЬЙЮ"
+msgstr "мЮЯРПНИЙЮ МЮ ЛХЬЙЮ"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "хГАНП МЮ ЙКЮБХЮРСПЮ"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "дНОЗКМХРЕКМХ"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "тЮИКНБХРЕ ЯХЯРЕЛХ"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "тНПЛЮРХПЮМЕ МЮ ДЪКНБЕ"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "оЮЙЕРХ ГЮ ХМЯРЮКХПЮМЕ"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "хМЯРЮКХПЮМЕ МЮ ЯХЯРЕЛЮРЮ"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ЛПЕФЮРЮ"
-
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "йПХОРНЦПЮТХЪ"
+msgstr "мЮЯРНИЙЮ МЮ ЛПЕФЮРЮ"
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "бПЕЛЕБЮРЮ ГНМЮ"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
-msgstr "йНМТХЦСПХПЮМЕ СЯКСЦХРЕ"
+msgstr "мЮЯРПНИЙЮ МЮ СЯКСЦХРЕ"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ОПХМРЕПЮ"
+msgstr "мЮЯРПНИЙЮ МЮ ОПХМРЕПЮ"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "бЗБЕДЕРЕ ОЮПНКЮ ГЮ root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "дНАЮБЪМЕ МЮ ОНРПЕАХРЕК"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "яЗГДЮБЮМЕ МЮ boot-ДХЯЙЕРЮ"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "хМЯРЮКХПЮМЕ МЮ bootloader"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
-msgstr "йНМТХЦСПХПЮМЕ МЮ у"
+msgstr "мЮЯРПНИЙЮ МЮ у"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "юБРНЛЮРХВМН ХМЯРЮКХПЮМЕ НР ТКНОХ"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "хГУНД НР ХМЯРЮКЮЖХНММЮРЮ ОПНЦПЮЛЮ"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "цПЕЬЙЮ ОПХ ВЕРЕМЕ МЮ ТЮИКЮ $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "лНКЪ, ОПНАБЮИРЕ ЛХЬЙЮРЮ ЯХ."
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "лНКЪ, ОПНАБЮИРЕ ЛХЬЙЮРЮ ЯХ."
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, 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_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2247,234 +2913,254 @@ msgstr ""
"гЮРНБЮ ЯЗГДЮИРЕ ДЪК (ХКХ ЖЗЙМЕРЕ МЮ ЯЗЫЕЯРБСБЮЫ).\n"
"рНЦЮБЮ ХГАЕПЕРЕ ДЕИЯРБХЕ ``лЪЯРН МЮ ЛНМРХПЮМЕ'' Х ЦН ЯКНФЕРЕ `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"мЕ ЛНЦЮ ДЮ ПЮГВЕРЮ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ, ОПЕЙЮКЕМН Е ОНБПЕДЕМЮ :(\n"
-"ыЕ ЯЕ НОХРЮЛ ДЮ ОПНДЗКФЮ ДЮ ПЮГВХЯРБЮЛ КНЬХРЕ ДЪКНБЕ"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "рПЪАБЮ ДЮ ХЛЮРЕ swap-ДЪК"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake МЕ СЯОЪ ДЮ ПЮГВЕРЕ ОПЮБХКМН РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ.\n"
-"лНФЕРЕ ДЮ ОПНДЗКФХРЕ МЮ ЯНАЯРБЕМ ПХЯЙ !"
+"мЪЛЮРЕ swap-ДЪК\n"
+"\n"
+"дЮ ОПНДЗКФЮ КХ БЯЕ ОЮЙ ?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "рЗПЯЪ root-ДЪК"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "хГОНКГБЮИ ЯБНАНДМНРН ЛЪЯРН"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "хМТНПЛЮЖХЪ"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "мЪЛЮ ДНЯРЮРЗВМН ЛЪЮРН ГЮ ЯЗГДЮБЮМЕ МЮ МНБ ДЪК"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: рНБЮ МЕ Е root-ДЪК, ЛНКЪ ХГАЕПЕРЕ МЪЙНИ ДПСЦ."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "хГОНГБЮМЕ МЮ ЯЗЫЕЯРБСБЮЫ ДЪК"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "мЪЛЮ МЮЛЕПЕМ root-ДЪК"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "мЪЛЮ ДЪК, ЙНИРН ЛНЦЮ ДЮ ХГОНКГБЮЛ"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "мЕ ЛНЦЮ ДЮ ХГОНКГБЮЛ ОПЕДЮБЮМЕ АЕГ NIS domain"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "хГОНКГБЮИ ГЮ Windows ДЪКЗР ГЮ loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "цПЕЬЙЮ ОПХ ВЕРЕМЕ МЮ ТЮИКЮ $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "йНИ ДЪК ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ГЮ Linux4Win ?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"оНЪБХ ЯЕ ЦПЕЬЙЮ, МН МЕ ГМЮЛ ЙЮЙ ДЮ ЯЕ ЯОПЮБЪ Я МЕЪ ДЕКХЙЮРМН.\n"
-"лНФЕРЕ ДЮ ОПНДЗКФХРЕ МЮ ЯБНИ ПХЯЙ."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "хГАЕПЕРЕ ЦНКЕЛХМХРЕ"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "дСАКХПЮИ РНВЙЮРЮ МЮ ЛНМРХПЮМЕ %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "цНКЕЛХМЮ МЮ root-ДЪКЮ Б MB: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"мЪЙНХ БЮФМХ ОЮЙЕРХ МЕ ЯЕ ХМЯРЮКХПЮУЮ ЙЮЙРН РПЪАБЮ.\n"
-"хКХ CDROM СЯРПНИЯРБНРН БХ ХКХ ЙНЛОЮЙР ДХЯЙЮ БХ Е ДЕТЕЙРЕМ.\n"
-"оПНБЕПЕРЕ ЙНЛОЮЙР ДХЯЙЮ МЮ ХМЯРЮКХПЮМХЪ ЙНЛОЧРЗП ХГОНКГБЮИЙХ \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "цНКЕЛХМЮ МЮ swap-ДЪКЮ Б MB: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "дНАПЕ ДНЬКХ Б %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "хГОНКГБЮИ ЯБНАНДМНРН ЛЪЯРН МЮ Windows ДЪКЮ"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "мЪЛЮ ТКНОХ СЯРПНИЯРБН"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "йНИ ДЪК ФЕКЮЕРЕ ДЮ ОПНЛЕМХРЕ?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "хГВХЯКЪБЮЛ ЦПЮМХЖХРЕ МЮ Windows ТЮИКНБЮРЮ ЯХЯРЕЛЮ"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "мЮБКХГЮЛ Б ЕРЮО `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"мЕ БЗГЛНФМНЯР ГЮ ПЮАНРЮ Я БЮЬХЪ FAT ДЪК, \n"
+"ОНПЮДХ ОНКСВЕМЮРЮ ЦПЕЬЙЮ: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "рПЪАБЮ ДЮ ХЛЮРЕ swap-ДЪК"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"бЮЬХЪР Windows ДЪК Е ЛМНЦН ТПЮЦЛЕМРХПЮМ, ЛНКЪ ОЗПБН ЯРЮПРХПЮИРЕ ''defrag''"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"мЪЛЮРЕ swap-ДЪК\n"
+"бмхлюмхе!\n"
"\n"
-"дЮ ОПНДЗКФЮ КХ БЯЕ ОЮЙ ?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "хГАЕПЕРЕ ЦНКЕЛХМЮРЮ, ЙНЪРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ"
+"DrakX РПЪАБЮ ДЮ ОПЕПЮГДЕКХ бЮЬХЪ Windows ДЪК. аЗДЕРЕ БМХЛЮРЕКМХ: РЮГХ "
+"НОЕПЮЖХЪ Е\n"
+"НОЮЯМЮ. юЙН НЫЕ МЕ ЯРЕ ЦН МЮОПЮБХКХ, РПЪАБЮ ОЗПБН ДЮ ОСЯМЕРЕ scandisk (Х\n"
+"ЕБЕМРСЮКМН ДЮ ХГОНКГБЮРЕ defrag) ОНД Windows БЗПУС РНГХ ДЪК, РНЦЮБЮ \n"
+"ОНБРНПЕРЕ ХМЯРЮКЮЖХЮЪРЮ. аХ АХКН ДНАПЕ ДЮ МЮОПЮБХРЕ ЮПУХБ МЮ ДЮММХРЕ ЯХ.\n"
+"йНЦЮРН ЯРЕ ЯХЦСПМХ, МЮРХЯМЕРЕ нй."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "нАЫЮ ЦНКЕЛХМЮ: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "йНКЙН ХЯЙЮРЕ ДЮ НЯРЮБХРЕ ГЮ windows?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "бЕПЯХЪ: %s\n"
+msgid "partition %s"
+msgstr "ДЪК %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "цНКЕЛХМЮ: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "мЕСЯОЕЬМН ОПЕПЮГДЕКЪМЕ МЮ FAT: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "хГАЕПЕРЕ ОЮЙЕРХРЕ, ЙНХРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"мЪЛЮ FAT ЪКНБЕ ГЮ ОПЕПЮГОПЕДЕКЪМЕ ХКХ ГЮ loopback( ХКХ МЪЛЮ ДНЯРЮРЗВМН ЛЪЯРН "
+"МЮ ДХЯЙЮ"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "хМТНПЛЮЖХЪ"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "хГРПХИ ЖЕКХЪ ДХЯЙ"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "хМЯРЮКХПЮИРЕ"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "оПЕЛЮУМХ Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "хМЯРЮКХПЮЛ"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "ХЛЮРЕ ОНБЕВЕ НР ЕДХМ РБЗПДХ ДХЯЙНБЕ, ЙНИ ДЮ ХГОНКГБЮЛ ГЮ ХМЯРЮКЮЖХЪРЮ?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "лНКЪ, ХГВЮЙЮИРЕ, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"бяхвйх ЯЗЫЕЯРБСБЮЫХ ДЪКНБЕ Х ДЮММХРe БЗПУС РЪУ ЫЕ АЗДЮР ГЮЦСАЕМХ ГЮ "
+"СЯРПНИЯРБН %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "нЯРЮБЮЫН БПЕЛЕ "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "еЙЯОЕПРЕМ ПЕФХЛ"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "нАЫЮ ОПНДЗКФХРЕКМНЯР "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "хГОНКГБЮИ diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "оНДЦНРБЪЛ ХМЯРЮКЮЖХЪРЮ"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "хГОНКГБЮИ fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "хМЯРЮКХПЮМЕ МЮ ОЮЙЕРЮ %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"яЕЦЮ ЛНФЕРЕ ДЮ ПЮГДЕКХРЕ %s.\n"
+"йНЦЮРН ЯРЕ ЦНРНБХ, МЕ ГЮАПЮБЪИРЕ ДЮ ГЮОХЬЕРЕ ХГОНКГБЮИЙХ `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "дЮ ОПНДЗКФЮ КХ БЯЕ ОЮЙ ?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "хГОНКГБЮИ ЯБНАНДМНРН ЛЪЯРН МЮ Windows ДЪКЮ"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ ОПХ ОНПЗВБЮМЕРН МЮ ОЮЙЕРХРЕ:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "мЕ ЛНЦЮ ДЮ ДНАЮБЪ ОНБЕВЕ ДЪКНБЕ"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "дЮ ХГОНКГБЮЛ КХ ЯЕЦЮЬМЮРЮ ЙНМТХЦСПЮЖХЪ МЮ X11 ?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "оНЛНЫМХЙЗР ГЮ ПЮГДЕКХМЕ МЮ ДЪКНБЕ МЮ DrakX МЮЛЕПХ ЯКЕДМХРЕ ПЕЬЕМХЪ:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "лНКЪ, ХГАЕПЕРЕ ЕДХМ НР ЯКЕДМХРЕ ЙКЮЯНБЕ МЮ ХМЯРЮКЮЖХЪ:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "мЕСЯОЕЬМН ПЮГДЕКЪМЕ МЮ: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "мЪЛЮРЕ МХЙЮЙБХ windows ДЪКНБЕ!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "бЙКЧВБЮЛ ЛПЕФЮРЮ"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "мЪЛЮРЕ ДНЯРЮРЗВМН ЛЪЯРН ГЮ Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "хГЙКЧВБЮМЕ МЮ ЛПЕФЮРЮ"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"бмхлюмхе!\n"
-"\n"
-"DrakX РПЪАБЮ ДЮ ОПЕПЮГДЕКХ бЮЬХЪ Windows ДЪК. аЗДЕРЕ БМХЛЮРЕКМХ: РЮГХ "
-"НОЕПЮЖХЪ Е\n"
-"НОЮЯМЮ. юЙН НЫЕ МЕ ЯРЕ ЦН МЮОПЮБХКХ, РПЪАБЮ ОЗПБН ДЮ ОСЯМЕРЕ scandisk (Х\n"
-"ЕБЕМРСЮКМН ДЮ ХГОНКГБЮРЕ defrag) БЗПУС РНГХ ДЪК Х ДЮ МЮОПЮБХРЕ backup МЮ "
-"ДЮММХРЕ ЯХ.\n"
-"йНЦЮРН ЯРЕ ЯХЦСПМХ, МЮРХЯМЕРЕ нй."
+"оНЪБХ ЯЕ ЦПЕЬЙЮ, МН МЕ ГМЮЛ ЙЮЙ ДЮ ЯЕ ЯОПЮБЪ Я МЕЪ ДЕКХЙЮРМН.\n"
+"лНФЕРЕ ДЮ ОПНДЗКФХРЕ МЮ ЯБНИ ПХЯЙ."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "юБРНЛЮРХВМНРН ОПЕПЮГДЕКЕМХЕ МЕ СЯОЪ."
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "дСАКХПЮИ РНВЙЮРЮ МЮ ЛНМРХПЮМЕ %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "йНИ ДЪК ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ГЮ Linux4Win ?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"мЪЙНХ БЮФМХ ОЮЙЕРХ МЕ ЯЕ ХМЯРЮКХПЮУЮ ЙЮЙРН РПЪАБЮ.\n"
+"хКХ CDROM СЯРПНИЯРБНРН БХ ХКХ ЙНЛОЮЙР ДХЯЙЮ БХ Е ДЕТЕЙРЕМ.\n"
+"оПНБЕПЕРЕ ЙНЛОЮЙР ДХЯЙЮ МЮ ХМЯРЮКХПЮМХЪ ЙНЛОЧРЗП ХГОНКГБЮИЙХ \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "хГАЕПЕРЕ ЦНКЕЛХМХРЕ"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "дНАПЕ ДНЬКХ Б %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "цНКЕЛХМЮ МЮ root-ДЪКЮ Б MB: "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "мЪЛЮ ТКНОХ СЯРПНИЯРБН"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "цНКЕЛХМЮ МЮ swap-ДЪКЮ Б MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "мЮБКХГЮЛ Б ЕРЮО `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"бЮЬЮРЮ ЯХЯРЕЛЮ Е Я ЛЮКЙХ ПЕЯСПЯХ. лНФЕ ДЮ ХЛЮРЕ ОПНАКЕЛХ Я ХМЯРЮКХПЮМЕРН\n"
+"МЮ Linux-Mandrake. юЙН ЯЕ ОНЪБХ ОПНАКЕЛ НОХРЮИРЕ Я РЕЙЯРНБЮРЮ ХМЯЮКЮЖХЪ. "
+"гЮЖЕКРЮ,\n"
+"МЮРХЯМЕРЕ 'F1', ЙНЦЮРН ЯРЮПРХПЮРЕ НР CDROM Х БЗБЕДЕРЕ 'РЕЭР'."
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "лНКЪ, ХГАЕПЕРЕ ЕДХМ НР ЯКЕДМХРЕ ЙКЮЯНБЕ МЮ ХМЯРЮКЮЖХЪ:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "нАЫЮРЮ ЦНКЕЛХМЮ МЮ ЦПСОХРЕ, ЙНХРН ЯРЕ ЛЮПЙХПЮКХ, Е НЙНКН %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2488,7 +3174,7 @@ msgstr ""
"оПХ МХЯЗЙ ОПНЖЕМР ЫЕ ЯЕ ХМЯРЮКХПЮР ЯЮЛН МЮИ-БЮФМХРЕ ОЮЙЕРХ;\n"
"ОПХ 100%% ЫЕ ХМЯРЮКХПЮР БЯХВЙХ ЛЮПЙХПЮМХ ОЮЙЕРХ."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2504,58 +3190,100 @@ msgstr ""
"оПХ МХЯЗЙ ОПНЖЕМР ЫЕ ЯЕ ХМЯРЮКХПЮР ЯЮЛН МЮИ-БЮФМХРЕ ОЮЙЕРХ;\n"
"ОПХ %d%% ЫЕ ХМЯРЮКХПЮР БЯХВЙХ ХГАПЮМХ ОЮЙЕРХ."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "ыЕ ХЛЮРЕ БЗГЛНФМНЯРРЮ ДЮ ХГАЕПЕРЕ ОН-РНВМН ОПХ ЯКЕДБЮЫХЪ ЕРЮО."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "оПНЖЕМР ОЮЙЕРХ ГЮ ХМЯРЮКХПЮМЕ"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "хГАЕПЕРЕ ОЮЙЕРХРЕ, ЙНХРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "хМТНПЛЮЖХЪ"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "хМЯРЮКХПЮИРЕ"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "оПНБЕПЪБЮЛ ГЮБХЯХЛНЯРХРЕ"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "пЮГЬХПХ ДЗПБНРН"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "хГВХЯРХ ДЗПБНРН"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "оПЕБЙКЧВБЮМЕ ЛЕФДС МНПЛЮКМН Х ЯНПРХПЮМЕ ОН ЦПСОХ"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "кНЬ ОЮЙЕР"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "хЛЕ: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "бЕПЯХЪ: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "цНКЕЛХМЮ: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "бЮФМНЯР: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "нАЫЮ ЦНКЕЛХМЮ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"мЕ ЛНФЕРЕ ДЮ НЯРЮБХРЕ ОЮЙЕРЮ МЕЛЮПЙХПЮМ, ГЮЫНРН МЪЛЮРЕ ЛЪЯРН ДЮ ЦН "
+"ХМЯРЮКХПЮРЕ"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "яКЕДМХРЕ ОЮЙЕРХ ЫЕ АЗДЮР ХМЯРЮКХПЮМХ"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "яКЕДМХРЕ ОЮЙЕРХ ЫЕ АЗДЮР ОПЕЛЮУМЮРХ"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "мЕ ЛНФЕРЕ ДЮ НРАЕКЕФЕРЕ/ДЕНРАЕКЕФЕРЕ РНГХ ОЮЙЕР"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "рНБЮ Е МСФЕМ ОЮЙЕР, МЕ ЛНФЕ ДЮ АЗДЕ МЕЛЮПЙХПЮМ"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "мЕ ЛНФЕРЕ ДЮ НЯРЮБХРЕ РНГХ ОЮЙЕР МЕЛЮПЙХПЮМ. рНИ БЕВЕ Е ХМЯРЮКХПЮМ"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2563,46 +3291,88 @@ msgstr ""
"рНГХ ОЮЙЕР РПЪАБЮ ДЮ АЗДЕ НАМНБЕМ\n"
"яХЦСПМХ КХ ЯРЕ, ВЕ ХЯЙЮРЕ ДЮ ЦН ХГЙКЧВХРЕ ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "мЕ ЛНФЕРЕ ДЮ ХГЙКЧВХРЕ РНГХ ОЮЙЕР. рНИ РПЪАБЮ ДЮ АЗДЕ НАМНБЕМ"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"мЕ ЛНФЕРЕ ДЮ НЯРЮБХРЕ ОЮЙЕРЮ МЕЛЮПЙХПЮМ, ГЮЫНРН МЪЛЮРЕ ЛЪЯРН ДЮ ЦН "
-"ХМЯРЮКХПЮРЕ"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "яКЕДМХРЕ ОЮЙЕРХ ЫЕ АЗДЮР БЙКЧВЕМХ/ХГЙКЧВЕМХ"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "мЕ ЛНФЕРЕ ДЮ НРАЕКЕФЕРЕ/ДЕНРАЕКЕФЕРЕ РНГХ ОЮЙЕР"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "хМЯРЮКХПЮЛ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "оПЕЯЛЪРЮМЕ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "лНКЪ, ХГВЮЙЮИРЕ, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "нЯРЮБЮЫН БПЕЛЕ "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "нАЫЮ ОПНДЗКФХРЕКМНЯР "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "нРЙЮГ"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "оНДЦНРБЪЛ ХМЯРЮКЮЖХЪРЮ"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d ОЮЙЕРЮ"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "хМЯРЮКХПЮМЕ МЮ ОЮЙЕРЮ %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "оПХЕЛХ"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2617,182 +3387,386 @@ msgstr ""
"ЯРЕ ЦНРНБХ.\n"
"юЙН ЦН МЪЛЮРЕ, МЮРХЯМЕРЕ нРЙЮГ, ГЮ ДЮ ХГАЕЦМЕРЕ ХМЯРЮКХПЮМЕРН НР РНГХ CD-ROM."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "нРЙЮФХ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "дЮ ОПНДЗКФЮ КХ БЯЕ ОЮЙ ?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ ОПХ ОНПЗВБЮМЕРН МЮ ОЮЙЕРХРЕ:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ ОПХ ХМЯРЮКХПЮМЕ МЮ ОЮЙЕРХРЕ:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "оНЪБХ ЯЕ ЦПЕЬЙЮ"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "лНКЪ, ХГАЕПЕРЕ ХГОНКГБЮМ ЕГХЙ."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "йКЮБХЮРСПЮ"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "лНКЪ, ХГАЕПЕРЕ ОНДПЕФДЮМЕ МЮ ЙКЮБХЮРСПЮРЮ."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "лНФЕРЕ ДЮ ХГАЕПЕРЕ ДПСЦХ ЕГХЖХ, ЙНХРН ЫЕ АЗДЮР МЮКХЖЕ ЯКЕДХМЯРЮКЮЖХЪРЮ"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Root-ДЪК"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "йНИ Е root-ДЪКЗР (/) МЮ ЯХЯРЕЛЮРЮ БХ ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "бЯХВЙН"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "йКЮЯ ХМЯРЮКЮЖХЪ"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "йЮЙЗБ ЙКЮЯ ХМЯРЮКЮЖХЪ ФЕКЮЕРЕ ?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "хМЯРЮКЮЖХЪ/нАМНБЪБЮМЕ"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "рНБЮ МНБЮ ХМЯРЮКЮЖХЪ КХ Е ХКХ НАМНБЪБЮМЕ ?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "рНБЮ МНБЮ ХМЯРЮКЮЖХЪ КХ Е ХКХ ЯОЮЯЪБЮМЕ ?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "юБРНЛЮРХГХПЮМЮ"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "оПЕОНПЗВХРЕКМЮ"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
-msgstr "йКХЕМРЯЙЮ"
+msgstr "яОЕЖХЮКХГХПЮМЮ"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "еЙЯОЕПРМЮ"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"яХЦСПМХ КХ ЯРЕ, ВЕ ЯРЕ ЕЙЯОЕПР ?\n"
-"ыЕ БХ АЗДЮР ПЮГПЕЬЕМХ ЛНЫМХ, МН НОЮЯМХ МЕЫЮ."
+"рСЙ ЫЕ БХ АЗДЮР ОНГБНКЕМХ ЛНЫМХ, МН НОЮЯМХ МЕЫЮ.\n"
+"юЙН бХ АЗДЕ ГЮДЮДЕМ БЗОПНЯ: ``Use shadow file for passwords?'',\n"
+"ЫЕ ЛНФЕРЕ КХ ДЮ ЦН ПЮАЕПЕРЕ Х НРЦНБНПХРЕ?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "нАМНБЪБЮМЕ"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "мНПЛЮКМЮ"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "пЮАНРМЮ ЯРЮМЖХЪ"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "гЮ ПЮГПЮАНРЙЮ"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "яЗПБЗП"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "гЮ ЙЮЙБН ЫЕ ЯЕ СОНРПЕАЪБЮ ЯХЯРЕЛЮРЮ БХ ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "гЮ ЙЮЙБН ЯЕ СОНРПЕАЪБЮ ЯХЯРЕЛЮРЮ БХ ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "лНКЪ, ХГАЕПЕРЕ РХО МЮ ЛХЬЙЮРЮ."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "оНПР МЮ ЛХЬЙЮРЮ"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "лНКЪ, ХГАЕПЕРЕ ЙЗЛ ЙНИ ЯЕПХЕМ ОНПР Е ЯБЗПГЮМЮ ЛХЬЙЮРЮ БХ."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "мЮЯРПНИЙЮ МЮ PCMCIA ЙЮПРХРЕ ..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
-msgstr "йНМТХЦСПХПЮМЕ МЮ IDE"
+msgstr "мЮЯРПНИЙЮ МЮ IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "МЪЛЮ ДЪКНБЕ МЮ ПЮГОНКНФЕМХЕ"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "лНКЪ, ХГАЕПЕРЕ ДЪК ГЮ ЯБНИ root-ДЪК."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "хГАЕПЕРЕ ЛЕЯРЮ ГЮ ЛНМРХПЮМЕ"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"мЕ ЛНЦЮ ДЮ ПЮГВЕРЮ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ, ОПЕЙЮКЕМН Е ОНБПЕДЕМЮ ГЮ ЛЕМ :(\n"
+"лНЦЮ ДЮ ЯЕ НОХРЮЛ ДЮ ХГВХЯРЪ КНЬХРЕ ДЪКНБЕ (бяхвйх дюммх ЫЕ АЗДЮР "
+"ГЮЦСАЕМХ!).\n"
+"дПСЦН ПЕЬЕМХЕ Е ДЮ ГЮАПЮМХРЕ МЮ DrakX ОНОПЮБЪ РЮАКХЖЮРЮ Я ДЪКНБЕ.\n"
+"(ЦПЕЬЙЮРЮ Е %s)\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake МЕ СЯОЪ ДЮ ПЮГВЕРЕ ОПЮБХКМН РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ.\n"
+"лНФЕРЕ ДЮ ОПНДЗКФХРЕ МЮ ЯНАЯРБЕМ ПХЯЙ !"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Root-ДЪК"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "йНИ Е root-ДЪКЗР (/) МЮ ЯХЯРЕЛЮРЮ БХ ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "мЮКЮЦЮ ЯЕ ПЮ ПЕЯРЮПРХПЮРЕ, ОПЕДХ ЛНДХТХЙЮЖХХРЕ ДЮ ОПЕДХГБХЙЮР ЕТЕЙР"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "хГАЕПЕРЕ ДЪКНБЕРЕ, ЙНХРН ХЯЙЮРЕ ДЮ ТНПЛЮРХПЮРЕ"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "оПНБЕПЙЮ ГЮ КНЬХ ЯЕЙРНПХ ?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "тНПЛЮРХПЮМЕ МЮ ДЪКowe"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "яЗГДЮБЮМЕ Х ТНПЛЮРХПЮМЕ МЮ ТЮИКЮ %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
-"мЪЛЮ ДНЯРЮРЗВМН swap ГЮ ХГОЗКМБЮМЕ МЮ ХМЯРЮКЮЖХЪРЮ, ЛНКЪ ДНАЮБЕРЕ ЛЮКЙН"
+"мЪЛЮ ДНЯРЮРЗВМН swap ГЮ ОПХЙКЧВБЮМЕ МЮ ХМЯРЮКЮЖХЪРЮ, ЛНКЪ ДНАЮБЕРЕ ЛЮКЙН"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "рЗПЯЪ МЮКХВМХ ОЮЙЕРХ"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "рЗПЯЪ ОЮЙЕРХ ГЮ НАМНБЪБЮМЕ"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "яХЯРЕЛЮРЮ БХ МЪЛЮ ДНЯРЮРЗВМН ЛЪЯРН ГЮ ХМЯРЮКЮЖХЪ ХКХ НАМНБЪБЮМЕ"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"яХЯРЕЛЮРЮ БХ МЪЛЮ ДНЯРЮРЗВМН ЛЪЯРН ГЮ ХМЯРЮКЮЖХЪ ХКХ НАМНБЪБЮМЕ (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "оЗКМЮ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "лХМХЛЮКМЮ (%d Mb)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "оПЕОНПЗВХРЕКМЮ (%dMb)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "йКХЕМРЯЙЮ"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "хГАЕПЕРЕ ПЮГЛЕПЮ, ЙНИРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮЛ"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "хГАНП МЮ ЦПСОЮ ОЮЙЕРХ"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "хГАХПЮМЕ МЮ ОЮЙЕРХ ЕДХМ ОН ЕДХМ"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2803,12 +3777,12 @@ msgstr ""
"юЙН БХ КХОЯБЮР МЪЙНХ CD-РЮ, ЛЮУМЕРЕ ЦХ, Х МЮРХЯМЕРЕ Ok. "
# c-format
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM НГЮЦКЮБЕМ \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2816,173 +3790,11 @@ msgstr ""
"хМЯРЮКХПЮЛ ОЮЙЕР %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
-msgstr "яКЕД ХМЯРЮКЮЖХНММЮ ЙНМТХЦСПЮЖХЪ"
-
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "гЮОЮГХ ЯЕЦЮЬМЮРЮ ЙНМТХЦСПЮЖХЪ МЮ IP"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "оПЕЙНМТХЦСПХПЮИ ЛПЕФЮРЮ ЯЕЦЮ"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "мЕ ЙНМТХЦСПХПЮИ ЛПЕФЮРЮ"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "лПЕФНБЮ ЙНМТХЦСПЮЖХЪ"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "кНЙЮКМЮРЮ ЛПЕФЮ БЕВЕ Е ЙНМТХЦСПХПЮМЮ. хЯЙЮРЕ КХ ДЮ:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "хЯЙЮРЕ КХ ДЮ ЙНМТХЦСПХПЮРЕ ЯХЯРЕЛЮРЮ ЯХ ГЮ ПЮАНРЮ Б КНЙЮКМЮРЮ ЛПЕФЮ ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "МЕ Е НРЙПХРЮ ЛПЕФНБЮ ЙЮПРЮ"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ЛНДЕЛЮ"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "хЯЙЮРЕ КХ ДЮ ЙНМТХЦСПХПЮРЕ ЯХЯРЕЛЮРЮ ЯХ ГЮ ПЮАНРЮ Б ЛПЕФЮ ВПЕГ ЛНДЕЛ ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ЛПЕФНБНРН СЯРПНИЯРБН %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "юБРНЛЮРХВЕМ IP ЮДПЕЯ"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP ЮДПЕЯ:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ЮДПЕЯЗР РПЪАБЮ ДЮ АЗДЕ БЗБ ТНПЛЮР 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "йНМТХЦСПХПЮМЕ МЮ ЛПЕФЮРЮ"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"лНКЪ, БЗБЕДЕРЕ host name ГЮ ЛЮЬХМЮРЮ.\n"
-"Host ХЛЕРН РПЪАБЮ ДЮ АСДЕ МЮОЗКМН ЙБЮКХТХЖХПЮМН ХЛЕ,\n"
-"ЙЮРН ``mybox.mylab.myco.com''.\n"
-"лНФЕРЕ ЯЗЫН ДЮ БЗБЕДЕРЕ IP ЮДПЕЯЮ МЮ бЮЬХЪ gateway, ЮЙН ХЛЮРЕ РЮЙЗБ"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS ЯЗПБЗП:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Gateway СЯРПНИЯРБН:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "хЛЕ МЮ УНЯР:"
+msgstr "яКЕД ХМЯРЮКЮЖХНММЮ МЮЯРПНИЙЮ"
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "нОХР ГЮ НРЙПХБЮМЕ МЮ ЛНДЕЛ ?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "лНКЪ, ХГАЕПЕРЕ ЯЕПХЕМ ОНПР ЙЗЛ ЙНИРН ЯБЗПГЮМ ЛНДЕЛЗР БХ."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "нОЖХХ ГЮ ХГАХПЮМЕ ОН РЕКЕТНМ"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "хЛЕ МЮ БПЗГЙЮРЮ"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "рЕКЕТНМЕМ МНЛЕП"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "оНРПЕАХРЕКЯЙН ХЛЕ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "хДЕМРХТХЙЮЖХЪ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "аЮГХПЮМЮ МЮ ЯЙПХОР"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "аЮГХПЮМЮ МЮ РЕПЛХМЮК"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "хЛЕ МЮ ДНЛЕИМЮ"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "оЗПБХ DNS ЯЗПБЗП"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "бРНПХ DNS ЯЗПБЗП"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3048,88 +3860,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "хГАЕПЕРЕ НЦКЕДЮКЕМ ЯЗПБЗП,НР ЙНИРН ДЮ ОНКСВХРЕ ОЮЙЕРХРЕ"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "яБЗПГБЮМЕ Я НЦКЕДЮКМХЪ ЯЗПБЗП ГЮ ОНКСВЮБЮМЕ МЮ ЯОХЯЗЙЮ Я ОЮЙЕРХРЕ"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "лНКЪ, ХГАЕПЕРЕ ОЮЙЕРХРЕ, ЙНХРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "йНИ Е бЮЬХЪР ВЮЯНБХ ОНЪЯ?"
+msgstr "йНЪ Е БПЕЛЕБЮРЮ БХ ГНМЮ ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "уЮДПСЕПМХЪР БХ ВЮЯНБМХЙ МЮЯРПНЕМ КХ Е ОН GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "йЮЙБЮ ЯХЯРЕЛЮ МЮ ОЕВЮР ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "аЕГ ОЮПНКЮ"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "хГОНКГБЮИ shadow ТЮИК"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "хГОНКГБЮИ MD5 ОЮПНКХ"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "хГОНКГБЮИ NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "ФЗКРХ ЯРПЮМХЖХ"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "оЮПНКЮРЮ Е ОПЕЙЮКЕМН ОПНЯРЮ (РПЪАБЮ ДЮ АЗДЕ ДЗКЦЮ ОНМЕ %d ЯХЛБНКЮ)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "хДЕМРХТХЙЮЖХЪ ОН NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS ДНЛЕИМ"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS ЯЗПБЗП"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "оПХЕЛХ ОНРПЕАХРЕК"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "дНАЮБХ ОНРПЕАХРЕК"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(БЕВЕ ОПХАЮБХУ %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3139,61 +3955,90 @@ msgstr ""
"бЗБЕДЕРЕ ОНРПЕАХРЕК\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "хЯРХМЯЙН ХЛЕ"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "оНРПЕАХРЕКЯЙН ХЛЕ"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "ьЕК"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "хЙНМЮ"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "рЮГХ ОЮПНКЮ Е ОПЕЙЮКЕМН ОПНЯРЮ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "лНКЪ, ГЮДЮИРЕ ОНРПЕАХРЕКЯЙН ХЛЕ"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"оНРПЕАХРЕКЯЙНРН ХЛЕ ЛНФЕ ДЮ БЙКЧВБЮ ЯЮЛН ЛЮКЙХ АСЙБХ, МНЛЕПЮ, `-' Х `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "рНБЮ ОНРПЕАХРЕКЯЙН ХЛЕ Е БЕВЕ ДНАЮБЕМН"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"йКХЕМРЯЙЪР bootdisk Е МЕНАУНДХЛ ГЮ ЯРЮПРХПЮМЕ Б Linux ЯХЯРЕЛЮРЮ БХ "
+"МЕГЮБХЯХЛН\n"
+"НР НАХЙМНБЕМХЪ bootloader. рНБЮ Е ОНКЕГМН, ЮЙН МЕ ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ\n"
+"SILO МЮ ЯХЯРЕЛЮРЮ ЯХ, ЮЙН МЪЙНЪ ДПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ ЛЮУМЕ SILO\n"
+"ХКХ ЮЙН SILO МЕ ПЮАНРХ Я УЮПДСЕПМЮРЮ БХ МЮЯРПНИЙЮ. йКХЕМРЯЙХЪР bootdisk\n"
+"ЛНФЕ ДЮ АЗДЕ ХГОНКГБЮМ ЯЗЯ\n"
+"ЯОЮЯХРЕКМХЪР НАПЮГ МЮ Mandrake, СКЕЯМЪБЮЙХ БЗГЯРЮМНБЪБЮМЕРН ОПХ ПЕДЙХ\n"
+"ЯКСВЮХ МЮ ЯПХБ.\n"
+"\n"
+"юЙН ХЯЙЮРЕ ДЮ ЯЗГДЮДЕРЕ bootdisk ГЮ БЮЬЮРЮ ЯХЯРЕЛЮ, ОНЯРЮБЕРЕ ДХЯЙЕРЮ Б\n"
+"ОЗПБНРН СЯРПНИЯРБН Х МЮРХЯМЕРЕ \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "оЗПБН ТКНОХ СЯРПНИЯРБН"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "бРНПН ТКНОХ СЯРПНИЯРБН"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "оПЕЯЙНВХ"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3212,69 +4057,36 @@ msgstr ""
"ХМЯРЮКХПЮРЕ\n"
"LILO (ХКХ GRUB) МЮ ЯХЯРЕЛЮРЮ ЯХ ХКХ ЮЙН МЪЙНЪ ДПСЦЮ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ "
"ЛЮУМЕ LILO ХКХ LILO МЕ\n"
-"ПЮАНРХ Я УЮПДСЕПМЮРЮ БХ ЙНМТХЦСПЮЖХЪ. Bootdisk-ЗР ЛНФЕ ДЮ АЗДЕ ХГОНКГБЮМ "
-"ЯЗЯ\n"
+"ПЮАНРХ Я УЮПДСЕПМЮРЮ БХ МЮЯРПНИЙЮ. Bootdisk-ЗР ЛНФЕ ДЮ АЗДЕ ХГОНКГБЮМ ЯЗЯ\n"
"ЯОЮЯХРЕКМЮРЮ ДХЯЙЕРЮ МЮ Mandrake, СКЕЯМЪБЮЫЮ БЗГЯРЮМНБЪБЮМЕРН ОПХ ПЕДЙХ\n"
"ЯКСВЮХ МЮ ЯПХБ. хЯЙЮРЕ КХ ДЮ ЯЗГДЮЛ bootdisk ГЮ ЯХЯРЕЛЮРЮ БХ ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "яЗФЮКЪБЮЛ МЪЛЮ ТКНОХ"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "хГАЕПЕРЕ ТКНОХ ДПЮИБ,ЙЗДЕРН ДЮ МЮОПЮБХРЕ ЯРЮПРХПЮЫЮ ДХЯЙЕРЮ"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "яКНФЕРЕ ДХЯЙЕРЮ Б СЯРПНИЯРБН %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "яЗГДЮБЮМЕ МЮ ЯРЮПРХПЮЫЮ ДХЯЙЕРЮ"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "хМЯРЮКЮЖХЪРЮ МЮ LILO ОПНБЮКЕМЮ. оНЪБХ ЯЕ ЯКЕДМЮРЮ ЦПЕЬЙЮ:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "хЯЙЮРЕ КХ ДЮ ХГОНКГБЮРЕ SILO ?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "цКЮБМХ НОЖХХ МЮ SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"рНБЮ ЯЮ ОЮПЮЛЕРПХРЕ МЮ SILO.\n"
-"лНФЕРЕ ДЮ БЗБЕДЕРЕ НЫЕ ХКХ ДЮ ОПНЛЕМХРЕ ЯЗЫЕЯРБСБЮЫХРЕ."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "дЪК"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "рНГХ ЕРХЙЕР БЕВЕ ЯЕ ХГОНКГБЮ"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "хМЯРЮКЮЖХЪРЮ МЮ SILO ОПНБЮКЕМЮ. оНЪБХ ЯЕ ЯКЕДМЮРЮ ЦПЕЬЙЮ:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "оНДЦНРНБЙЮ МЮ bootloader"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "хЯЙЮРЕ КХ ДЮ ХГОНКГБЮРЕ aboot ?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3282,127 +4094,122 @@ msgstr ""
"цПЕЬЙЮ ОПХ ХМЯРЮКХПЮМЕ МЮ aboot, \n"
"ДЮ ЯЕ НОХРЮЛ КХ ДЮ ОПНДЗКФЮ ХМЯРЮКЮЖХЪРЮ ДНПХ, ЮЙН РНБЮ СМХФРНФХ ОЗПБХЪ ДЪК ?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "мЮЯРПНИЙЮ МЮ proxy-ЯЗПБЗП"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy-ЯЗПБЗПЮ РПЪАБЮ ДЮ Е http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ЯЗПБЗПЮ РПЪАБЮ ДЮ Е ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "хМЯРЮКЮЖХЪРЮ МЮ bootloader ОПНБЮКЕМЮ. оНЪБХ ЯЕ ЯКЕДМЮРЮ ЦПЕЬЙЮ:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "дНАПЕ ДНЬКХ ОПХ Cracker-ХРЕ"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "кНЬН"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "яКЮАН"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "яПЕДЕМН"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "бХЯНЙН"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "оЮПЮМНХВМН"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "дНОЗКМХРЕКМХ БЗОПНЯХ"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(ЛНФЕ ДЮ ОПХВХМХ ГЮЦСАЮ МЮ ДЮММХ)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "хЯЙЮРЕ КХ НОРХЛХГЮЖХЪ МЮ ДХЯЙНБЕРЕ ?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "хГАЕПЕРЕ МХБН МЮ ЯХЦСПМНЯР"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "рНВЕМ ПЮГЛЕП МЮ RAM-ОЮЛЕРРЮ, ЮЙН Е МЕНАУНДХЛН (МЮЛЕПЕМХ %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "юБРНЛЮРХВМН ЛНМРХПЮМЕ МЮ ЯЛЕМЪЕЛХРЕ ДХЯЙНБЕ"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "оНВХЯРБЮМЕ МЮ /tmp ОПХ БЯЪЙН ГЮПЕФДЮМЕ"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "бЙКЧВХ ЛМНЦН ОПНТХКХ"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "гЮДЕИЯРБЮМЕ Num Lock-Ю ОПХ ГЮПЕФДЮМЕ"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "дЮИРЕ ПЮГЛЕПЮ RAM-ОЮЛЕР Б Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "мЕ ЛНФЕ ДЮ ХГОНКГБЮРЕ supermount ОПХ БХЯНЙН МХБН МЮ ЯХЦСПМНЯР"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX ЫЕ ЯЗГДЮДЕ ЙНМТХЦСПЮЖХНММХ ТЮИКНБЕ Х ГЮ XFree 3.3 Х ГЮ XFree 4.0.\n"
-"оН ОНДПЮГАХПЮМЕ ЯЕ ХГОНКГБЮ 3.3 ЯЗПБЗП, ГЮЫНРН ПЮАНРХ МЮ ОНБЕВЕ ЦПЮТХВМХ "
-"ЙЮПРХ.\n"
-"\n"
-"хЯЙЮРЕ КХ ДЮ ХГОПНАБЮРЕ XFree 4.0 ?"
+"БМХЛЮМХЕ: б рнбю мхбн мю яхцспмняр, ROOT бкхгюмерн мю йнмгнкюрю ме е "
+"онгбнкемн !\n"
+"юЙН ХЯЙЮРЕ ДЮ ЯРЕ root, РПЪАБЮ ДЮ БКЕГЕРЕ ЙЮРН ОНРПЕАХРЕК Х РНЦЮБЮ ДЮ "
+"ХГОНКГБЮРЕ \"su\".\n"
+"йЮРН ЖЪКН, МЕ НВЮЙБЮИРЕ ДЮ ХГОНКГБЮРЕ ЛЮЬХМЮРЮ ЯХ ГЮ МЕЫН ДПСЦН, НЯБЕМ ГЮ "
+"ЯЗПБЗП.аЪУРЕ ОПЕДСОПЕДЕМ."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"бМХЛЮМХЕ, ЮЙН Е БЙКЧВЕМ numlock ЛНФЕ ДЮ ДНБЕДЕ ДН ХГБЕФДЮМЕРН МЮ\n"
+"ВХЯКЮ БЛЕЯРН АСЙБХ (МЮОПХЛЕП: МЮРХЯЙЮИЙХ 'p' ДЮБЮ '6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ PCI СЯРПНИЯРБЮ ?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "дЮ ХГОНКГБЮЛ КХ ЯЕЦЮЬМЮРЮ МЮЯРПНИЙЮ МЮ X11 ?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-"хЯЙЮРЕ КХ ДЮ ЯЗГДЮЛ ЮБРНЛЮРХВМН ХМЯРЮКХПЮЫЮ ДХЯЙЕРЮ ГЮ Linux ПЕОКХЙЮЖХЪ ?"
+"хЯЙЮРЕ КХ ДЮ ЯЗГДЮЛ ЮБРНЛЮРХВМН ХМЯРЮКХПЮЫЮ ДХЯЙЕРЮ ГЮ Linux ПЕОКХЙЮЖХЪ?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "яКНФЕРЕ ОПЮГМЮ ДХЯЙЕРЮ Б СЯРПНИЯРБН %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "оНДЦНРБЪЛ ДХЯЙЕРЮ Я ЮБРНЛЮПХВМЮ ХМЯРЮКЮЖХЪ"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3412,7 +4219,7 @@ msgstr ""
"\n"
"мЮХЯРХМЮ КХ ХЯЙЮРЕ ДЮ ХГКЕГЕРЕ ЯЕЦЮ ?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3430,158 +4237,21 @@ msgstr ""
"гЮ ХМТНПЛЮЖХЪ НРМНЯМН ОНОПЮБЙХ, МЮ РЮГХ БЕПЯХЪ МЮ Linux-Mandrake,\n"
"ЯЕ ЙНМЯСКРХПЮИРЕ Я Errata, МЮ ЮДПЕЯ : http://www.linux-mandrake.com/.\n"
"\n"
-"хМТНПЛЮЖХЪ ГЮ ЙНМТХЦСПХПЮМЕ МЮ ЯХЯРЕЛЮРЮ БХ ЛНФЕРЕ ДЮ МЮЛЕПХРЕ Б\n"
+"хМТНПЛЮЖХЪ ГЮ МЮЯРПНИБЮМЕ МЮ ЯХЯРЕЛЮРЮ БХ ЛНФЕРЕ ДЮ МЮЛЕПХРЕ Б\n"
"ЯКЕДХМЯРЮКЮЖХНММЮРЮ ЦКЮБЮ НР Official Linux-Mandrake User's Guide."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "хГЙКЧВБЮМЕ"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "хМЯРЮКХПЮМЕ МЮ ДПЮИБЕП ГЮ %s ОКЮРЙЮ %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(ЛНДСК %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "йНИ %s ДПЮИБЕП ДЮ ОПНАБЮЛ ?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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"
-"НР ЙНЪРН ЯЕ МСФДЮЕ ? оН ОПХМЖХО РНБЮ ЛНФЕ ДЮ ГЮАХЕ ЙНЛОЧРЗПЮ БХ, МН МЪЛЮ ДЮ "
-"ЦН ОНБПЕДХ."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "юБРНЛЮРХВМН ГЮЯХВЮМЕ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "гЮДЮИ НОЖХХ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "яЕЦЮ ЛНФЕРЕ ДЮ ОНДЮДЕРЕ НОЖХХРЕ ЛС ЙЗЛ ЛНДСКЮ %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its 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''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "нОЖХХ МЮ ЛНДСКЮ:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"гЮПЕФДЮМЕРН МЮ ЛНДСКЮ %s МЕ СЯОЪ.\n"
-"хЯЙЮРЕ КХ ДЮ НОХРЮРЕ НРМНБН Я ДПСЦХ ОЮПЮЛЕРПХ ?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ PCMCIA ЙЮПРХ ?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "йНМТХЦСПХПЮМЕ МЮ PCMCIA ЙЮПРХРЕ ..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ %s СЯРПНИЯРБЮ ?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "мЮЛЕПЕМХ ЯЮ %s %s ХМРЕПТЕИЯХ"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "хЛЮРЕ КХ ДПСЦ(Х) ?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "хЛЮРЕ КХ МЪЙЮЙЗБ %s ХМРЕПТЕИЯ?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "мЕ"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "дЮ"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "бХФ УЮПДСЕПМЮРЮ ХМТНПЛЮЖХЪ"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "бЙКЧВБЮЛ ЛПЕФЮРЮ"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "хГЙКЧВБЮМЕ МЮ ЛПЕФЮРЮ"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "хМЯРЮКЮЖХЪ МЮ Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> ЛЕФДС ЕКЕЛЕМРХРЕ | <Space> ХГАХПЮ | <F12> ЯКЕДБЮЫ ЕЙПЮМ"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"яЕЦЮ ЛНФЕРЕ ДЮ ПЮГДЕКХРЕ МЮ ДЪКНБЕ УЮПД ДХЯЙЮ ЯХ %s.\n"
-"йНЦЮРН ЯРЕ ЦНРНБХ, МЕ ГЮАПЮБЪИРЕ ДЮ ГЮОХЬЕРЕ ХГОНКГБЮИЙХ `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "лНКЪ ХГВЮЙЮИРЕ"
@@ -3591,7 +4261,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "..... (%s), АЗДЕРЕ ОН-РНВЕМ\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "кНЬ ХГАНП, НОХРЮИРЕ НРМНБН\n"
@@ -3605,446 +4275,948 @@ msgstr " ? (ОН ОНДПЮГАХПЮМЕ Е %s)"
msgid "Your choice? (default %s) "
msgstr "бЮЬХЪР ХГАНП ? (ОН ОНДПЮГАХПЮМЕ Е %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "бЮЬХЪР ХГАНП ? (ОН ОНДПЮГАХПЮМЕ %s, БЗБЕДЕРЕ 'none' ГЮ МХЙНИ)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "вЕЬЙХ"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "мЕЛЯЙХ"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "дБНПФЮЙ"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "хЯОЮМЯЙХ"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "тХМКЮМДЯЙХ"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "тПЕМЯЙХ"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "мНПБЕФЙХ"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "оНКЯЙХ"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "пСЯЙХ"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Uй ЙКЮБХЮРСПЮ"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US ЙКЮБХЮРСПЮ"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "юПЛЕМЯЙХ (ЯРЮП)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "юПЛЕМЯЙХ (ОХЬЕЫЮ ЛЮЬХМЮ)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "юПЛЕМЯЙХ (ТНМЕРХВЕМ)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "юГЕПАЮИДФЮМЯЙХ (КЮРХМХЖЮ)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "юГЕПАЮИДФЮМЯЙХ (ЙХПХКХЖЮ)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "аЕКЦХИЯЙХ"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "аЗКЦЮПЯЙХ"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "аПЮГХКЯЙХ (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "аЕКЮПСЯЙХ"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "ьБЕИЖЮПЯЙХ (МЕЛЯЙЮ МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "ьБЕИЖЮПЯЙХ (ТПЕМЯЙХ МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "мЕЛЯЙХ (АЕГ МЕПЮАНРЕЫХ ЙКЮБХЬХ)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "дЮРЯЙХ"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "дБНПФЮЙ (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "дБНПФЮЙ (мНПБЕФЙХ)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "еЯРНМЯЙХ"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "цПСГХМЯЙХ (\"пСЯЙЮ\" МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "цПСГХМЯЙХ (\"кЮРХМЯЙЮ\" МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "цПЗЖЙХ"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "сМЦЮПЯЙХ"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "уЗПБЮРЯЙХ"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "хГПЮЕКЯЙХ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "хГПЮЕКЯЙХ (ТНМЕРХВЕМ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "хПЮМЯЙХ"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "хЯКЮМДЯЙХ"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "хРЮКХЮМЯЙХ"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "ъОНМЯЙЮ 106 ЙКЮБХЬЮ"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "кЮРХМНЮЛЕПХЙЮМЯЙХ"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "уНКЮМДЯЙХ"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "кХРБХИЯЙХ AZERTY (ЯРЮП)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "кХРБХИЯЙХ AZERTY (МНБ)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "кХРБХИЯЙХ \"ВХЯКНБЮ ПЕДХЖЮ\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "кХРБХИЯЙХ \"ТНМЕРХВЕМ\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "оНКЯЙХ (QWERTY МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "оНКЯЙХ (QWERTZ МЮПЕДАЮ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "оНПРСЦЮКЯЙХ"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "йЮМЮДЯЙХ (йБЕАЕЙ)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "пСЯЙХ (ъбепрх)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "ьБЕДЯЙХ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "яКНБЕМЯЙХ"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "яКНБЮЬЙХ"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "рЮИБЮМЯЙЮ ЙКЮБХЮРСПЮ"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "рСПЯЙХ (РПЮДХЖХНМЕМ \"F\" ЛНДЕК)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "рСПЯЙХ (ЛНДЕПЕМ \"Q\" ЛНДЕК)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "сЙПЮХМЯЙХ"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US ЙКЮБХЮРСПЮ (ЛЕФДСМЮПНДМЮ)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "бХЕРМЮЛЯЙХ \"ВХЯКНБЮ ПЕДХЖЮ\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "чЦНЯКЮБЪМЯЙХ (КЮРХМЯЙЮ МЮПЕДАЮ)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "лХЬЙЮ МЮ Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "яРЮМДЮПРМЮ"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington THinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genuis NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "нАЫ"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "рНОВЕ"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "ЯЕПХИМЮ"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "нАХЙМНБЕММЮ 2-АСРНММЮ ЛХЬЙЮ"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "нАХЙМНБЕММЮ 3-АСРНММЮ ЛХЬЙЮ"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (ЯЕПХИМЮ, НР ЯРЮПХЪ РХО C7)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "аЕГ ЛХЬЙЮ"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 АСРНМЮ"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 АСРНМЮ"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "АЕГ ТНМ"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "аЕГ ЛХЬЙЮ"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "мЮРЮЙЗЙ ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "бЯХВЙН ОПЮБХКМН КХ Е ?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "хЯЙЮРЕ КХ ЯЕЦЮ ДЮ НОХРЮРЕ ХГОПНАБЮРЕ ЯХ ЙЗЛ хМРЕПМЕР ?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "мЕ ЯЕ ЯБЗПГБЮИ ЙЗЛ хМРЕПМЕР"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР / мЮЯРПНИ КНЙЮКМЮРЮ ЛПЕФЮ"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "мЮЯРПНИЙЮ МЮ IDSN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"оНЯНВЕРЕ ДНЯРЮБВХЙЮ ЯХ.\n"
+" юЙН МЕ Е Б ЯОХЯЗЙЮ, ХГАЕПЕРЕ Unlisted"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "мЮЯРПНИЙЮ МЮ БПЗГЙЮРЮ"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "лНКЪ, ОНОЗКМЕРЕ ХКХ ОПНБЕПЕРЕ ОНКЕРН ОН-ДНКС"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ МЮ ЙЮПРЮРЮ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "оЮЛЕР (DMA) МЮ ЙЮПРЮРЮ"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO МЮ ЙЮПРЮРЮ"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 МЮ ЙЮПРЮРЮ"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 МЮ ЙЮПРЮРЮ"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "кХВМХЪ БХ РЕКЕТНМЕМ МНЛЕП"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "хЛЕ МЮ ДНЯРЮБВХЙЮ (МЮОП. provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "рЕКЕТНМЕМ МНЛЕП МЮ ДНЯРЮБВХЙЮ"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "1-БХ DNS МЮ ДНЯРЮБВХЙЮ"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "2-ПХ DNS МЮ ДНЯРЮБВХЙЮ"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "пЕФХЛ МЮ МЮАХПЮМЕ"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "хЛЕ МЮ ЮЙЮСМРЮ (ОНРЕАХРЕКЯЙН ХЛЕ)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "оЮПНКЮ МЮ ЮЙЮСМРЮ"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "оНРБЗПФДЕМХЕ МЮ ОЮПНКЮРЮ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "еБПНОЮ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "еБПНОЮ (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "нЯРЮМЮКХЪ ЯБЪР"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "нЯРЮМЮКХЪ ЯБЪР - АЪУ D-йЮМЮК (МЮЕРЮ КХМХЪ)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "йЮЙЗБ ОПНРНЙНК ФЕКЮЕРЕ ДЮ ОПНЛЕМХРЕ ?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "мЕ ГМЮЛ"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "йЮЙЗБ РХО ЙЮПРЮ ХЛЮРЕ ?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "мЮРЮРЗЙ"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "нРЙЮГ"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\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"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"юЙН ХЛЮРЕ ISA ЙЮПРЮ, ЯРНИМНЯРХРЕ МЮ ЯКЕДБЮЫХЪ ЕЙПЮМ РПЪАБЮ ДЮ ЯЮ БЕПМХ.\n"
"\n"
+"юЙН ХЛЮРЕ PCMCIA ЙЮПРЮ, ЫЕ РПЪАБЮ ДЮ ГМЮЕРЕ IRC Х IO МЮ ЙЮПРЮРЮ ЯХ.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "йНЪ Е ISDN ЙЮПРЮРЮ БХ ?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "мЮЛЕПЕУ ISDN ЙЮПРЮ:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"нРЙПХРЮ Е ISDN PCI ЙЮПРЮ, МН Я МЕОНГМЮР РХО. лНКЪ ХГАЕПЕРЕ МЪЙНЪ PCI ЙЮПРЮ "
+"НР ЯКЕДБЮЫХЪР ЕЙПЮМ."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "мЕ Е МЮЛЕПЕМЮ ISDN PCI ЙЮПРЮ. лНКЪ ХГАЕПЕРЕ НР ЯКЕДБЮЫХЪР ЕЙПЮМ."
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"дНАПЕ ДНЬКХ Б LILO - МЮВХМЮ ДЮ ХГАЕПЕРЕ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ !\n"
+"б ЯХЯРЕЛЮРЮ МЕ Е НРЙПХР ethernet ЛПЕФНБ ЮДЮОРЕП. лНКЪ, ЯРЮПРХПЮИРЕ "
+"ХМЯРПСЛЕМРЮ ГЮ МЮЯРПНИЙЮ МЮ УЮПДСЕП."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "хГАЕПЕРЕ ЛПЕФНБ ХМРЕПТЕИЯ"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "лНКЪ, ХГАЕПЕРЕ ЛПЕФНБХЪ ЮДЮОРЕП, ВПЕГ ЙНИРН ДЮ ЯЕ ЯБПЗФЮ ЙЗЛ хМРЕПМЕР"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "лПЕФНБ ХМРЕПТЕИЯ"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"гЮ ДЮ ОНКСВХРЕ ЯОХЯЗЙ МЮ БЗГЛНФМНЯРХРЕ, МЮРХЯМЕРЕ <TAB>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "мЮ ОЗР ЯЗЛ ДЮ ПЕЯРЮПРХПЮЛ ЛПЕФНБХЪ ХМРЕПТЕИЯ. яЗЦКЮЯМХ КХ ЯРЕ ?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "мЮЯРПНИЙЮ МЮ ADSL"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "хЯЙЮРЕ КХ ДЮ ЯРЮПРХПЮРЕ БПЗГЙЮРЮ ЯХ ОПХ ГЮПЕФДЮМЕ ?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ НРЙПХЪ ЛНДЕЛ ?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "лНКЪ, ХГАЕПЕРЕ ЯЕПХЕМ ОНПР ЙЗЛ ЙНИРН ЯБЗПГЮМ ЛНДЕЛЗР БХ."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "нОЖХХ ГЮ ХГАХПЮМЕ ОН РЕКЕТНМ"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "хЛЕ МЮ БПЗГЙЮРЮ"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "рЕКЕТНМЕМ МНЛЕП"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "оНРПЕАХРЕКЯЙН ХЛЕ"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "хДЕМРХТХЙЮЖХЪ"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "аЮГХПЮМЮ МЮ ЯЙПХОР"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "аЮГХПЮМЮ МЮ РЕПЛХМЮК"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "хЛЕ МЮ ДНЛЕИМЮ"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "оЗПБХ DNS ЯЗПБЗП"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "бРНПХ DNS ЯЗПБЗП"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"гЮ ДЮ ГЮПЕДХРЕ ЕДМЮ НР РЪУ, МЮОХЬЕРЕ ХЛЕРН Х МЮРХЯМЕРЕ <ENTER> ХКХ ХГВЮЙЮИРЕ "
-"%d ЯЕЙСМДХ ГЮ ЯРЮПРХПЮМЕ ОН ОНДПЮГАХПЮМЕ.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР / мЮЯРПНИ КНЙЮКМЮРЮ ЛПЕФЮ"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "дНАПЕ ДНЬКХ ОПХ GRUB - МЮВХМЮ ДЮ ХГАЕПЕРЕ НОЕПЮЖХНММ ЯХЯРЕЛЮ !"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "хГОНКГБЮИРЕ ЙКЮБХЬХРЕ %c Х %c, ГЮ ДЮ ХГАЕПЕРЕ НЯБЕРЕМХРЕ."
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "мЕ ЯЕ ЯБЗПГБЮИ ЙЗЛ хМРЕПМЕР"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "мЮРХЯМЕРЕ Enter, ГЮ ДЮ ЯРЮПРХПЮРЕ ХГАПЮМЮРЮ ня, 'e' ГЮ ОНОПЮБЙЮ МЮ"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ЙНЛЕМДХРЕ ОПЕДХ ЯРЮПРХПЮМЕ, ХКХ 'c' ГЮ ЙНЛЮМДЕМ ПЕД."
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "мЕ ЯЕ ЯБЗПГБЮИ ЙЗЛ хМРЕПМЕР"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "нЯБЕРЕМХРЕ ГЮОХЯХ ЫЕ АЗДЮР ЯРЮПРХПЮМХ ЮБРНЛЮРХВМН ЯКЕД %d ЯЕЙСМДХ."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "МЪЛЮ ДНЯРЮРЗВМН ЛЪЯРН ГЮ /boot"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "нРБЗПФХ ЯЕ НР хМРЕПМЕР"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "дЕЯЙРНО"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "яРЮПРНБН лЕМЧ"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "хМРЕПМЕР БПЗГЙЮ Х МЮЯРПНИЙЮ"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "лХЬЙЮ МЮ Sun"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+#, fuzzy
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "мЮ ОЗР ЯЗЛ ДЮ ПЕЯРЮПРХПЮЛ ЛПЕФНБХЪ ХМРЕПТЕИЯ. яЗЦКЮЯМХ КХ ЯРЕ ?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB ЛХЬЙЮ (2 АСРНМЮ)"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB ЛХЬЙЮ (3+ АСРНМЮ)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "бЗРПЕЬМЮ ISDN ЙЮПРЮ"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "бЗМЬЕМ ЛНДЕЛ"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB ЛХЬЙЮ (2 АСРНМЮ)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB ЛХЬЙЮ (3+ АСРНМЮ)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "йЮЙЗБ Е РХОЗР МЮ ISDN БПЗГЙЮРЮ ?"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "нАХЙМНБЕММЮ ЛХЬЙЮ (PS/2)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "тПЮМЖХЪ"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "нАХЙМНБЕММЮ 3-АСРНММЮ ЛХЬЙЮ (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "дПСЦХ ЯРПЮМХ"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "б ЙНЪ ЯРПЮМЮ ЯЕ МЮЛХПЮРЕ ?"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "лНДЕЛ Alcatel"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington THinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "лНДЕЛ ECI"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "юЙН ADSL ЛНДЕЛЗР БХ Е Alcatel, ХГАЕПЕРЕ Alcatel. хМЮВЕ, ХГАЕПЕРЕ ECI."
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genuis NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "ХГОНКГБЮИ PPPOE"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "МЕ ХГОНКГБЮИ PPPOE"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"мЮИ-НАЫХЪ ЯКСВЮИ ГЮ ЯБЗПГБЮМЕ ВПЕГ ADSL Е DHCP + PPPOE.\n"
+"нАЮВЕ, ЯЗЫЕЯРБСБЮР МЪЙНХ БПЗГЙХ, ЙНХРН ХГОНКГБЮР ЯЮЛН DHCP.\n"
+"юЙН МЕ ГМЮЕРЕ, ХГАЕПЕРЕ 'ХГОНКГБЮИ PPPOE'."
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"йЮЙЗБ DHCP ЙКХЕМР ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ?\n"
+"оН ОНДПЮГАХПЮМЕ Е DHCPD ?"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "мЮЯРПНИЙЮ МЮ хМРЕПМЕР ЯБПЗГЙЮРЮ"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "мЮЯРНИЙЮ МЮ КНЙЮКМЮРЮ ЛПЕФЮ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "мЮЯРПНИЙЮ МЮ ЛПЕФЮРЮ"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB ЛХЬЙЮ (3+ АСРНМЮ)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "хЯЙЮРЕ КХ ДЮ РЕЯРБЮРЕ МЮЯРПНИЙХРЕ?"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "аЕГ ЛХЬЙЮ"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "хГЙКЧВХ ЛПЕФЮРЮ"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ХКХ ОН-МНБЮ (ЯЕПХИМЮ)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР / мЮЯРПНИ КНЙЮКМЮРЮ ЛПЕФЮ"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (ЯЕПХИМЮ)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"кНЙЮКМЮРЮ ЛПЕФЮ БЕВЕ Е МЮЯРПНЕМЮ.\n"
+"хЯЙЮРЕ КХ ДЮ:"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (ЯЕПХИМЮ)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "йЮЙ ХЯЙЮРЕ ДЮ ЯЕ ЯБЗПФЕРЕ ЙЗЛ хМРЕПМЕР ?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (ЯЕПХИМЮ)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "мЮЯРПНИЙЮ МЮ ЛПЕФЮРЮ"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (ЯЕПХИМЮ)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"яЕЦЮ, ЯКЕД ЙЮРН хМРЕПМЕР БПЗГЙЮРЮ БХ Е МЮЯРПНЕМЮ,\n"
+"ЙНЛОЧРЗПЗР БХ ЛНФЕ ДЮ АЗДЕ МЮЯРПНЕМ МЮ ОНДЕКЪ хМРЕПМЕР БПЗГЙЮРЮ ЯХ.\n"
+"нРАЕКЕФЕРЕ: РПЪАБЮ БХ НРДЕКЕМ ГЮ РНБЮ ЛПЕФНБ ЮДЮОРЕП, ГЮ ДЮ СЯРЮМНБХРЕ "
+"БЗРПЕЬМЮРЮ ЯХ ЛПЕФЮ (LAN).\n"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "МЕ Е НРЙПХРЮ ЛПЕФНБЮ ЙЮПРЮ"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "мЮЯРНИЙЮ МЮ ЛПЕФЮРЮ"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"лНКЪ, БЗБЕДЕРЕ ХЛЕ МЮ УНЯР ЮЙН ЦН ГМЮЕРЕ.\n"
+"мЪЙНИ DHCP ЯЗПБЗПХ ХГХЯЙБЮР РНБЮ ГЮ ДЮ ПЮАНРЪР.\n"
+"Host ХЛЕРН РПЪАБЮ ДЮ АСДЕ МЮОЗКМН ЙБЮКХТХЖХПЮМН ХЛЕ,\n"
+"ЙЮРН ``mybox.mylab.myco.com''."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (ЯЕПХИМЮ, НР ЯРЮПХЪ РХО C7)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "хЛЕ МЮ УНЯР:"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"бмхлюмхе: рНБЮ СЯРПНИЯРБН БЕВЕ Е МЮЯРПНЕМН ДЮ ЯЕ ЯБЗПГБЮ ЙЗЛ хМРЕПМЕР.\n"
+"оПНЯРН МЮРХЯМЕРЕ OK, ГЮ ДЮ ГЮОЮГХРЕ МЮЯРПНИЙЮРЮ МЮ СЯРПНИЯРБНРН.\n"
+"оНОПЮБЙЮРЮ МЮ ОНКЕРЮРЮ ОН-ДНКС ЫЕ ОПЕГЮОХЬЕ РЮГХ МЮЯРПНИЙЮ."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "нАХЙМНБЕММЮ ЛХЬЙЮ (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:302
+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)."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft-ЯЗБЛЕЯРЛЮ (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "мЮЯРПНИЙЮ МЮ ЛПЕФНБНРН СЯРПНИЯРБН %s"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "нАХЙМНБЕММЮ 3-АСРНММЮ ЛХЬЙЮ (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "юБРНЛЮРХВЕМ IP ЮДПЕЯ"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (ЯЕПХИМЮ)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP ЮДПЕЯ"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "бЯХВЙН ОПЮБХКМН КХ Е ?"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "лПЕФНБЮ ЛЮЯЙЮ"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ЮДПЕЯЗР РПЪАБЮ ДЮ АЗДЕ БЗБ ТНПЛЮР 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"лНКЪ, БЗБЕДЕРЕ host name ГЮ ЛЮЬХМЮРЮ.\n"
+"Host ХЛЕРН РПЪАБЮ ДЮ АСДЕ МЮОЗКМН ЙБЮКХТХЖХПЮМН ХЛЕ,\n"
+"ЙЮРН ``mybox.mylab.myco.com''.\n"
+"лНФЕРЕ ЯЗЫН ДЮ БЗБЕДЕРЕ IP ЮДПЕЯЮ МЮ бЮЬХЪ gateway, ЮЙН ХЛЮРЕ РЮЙЗБ"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS ЯЗПБЗП"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Gateway СЯРПНИЯРБН"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "мЮЯРПНИЙЮ МЮ proxy"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy-ЯЗПБЗПЮ РПЪАБЮ ДЮ Е http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy-ЯЗПБЗПЮ РПЪАБЮ ДЮ Е ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "пЮГЬХПЕМХ ДЪКНБЕ МЕ ЯЕ ОНДДЗПФЮР МЮ РЮГХ ОКЮРТНПЛЮ"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4054,21 +5226,21 @@ msgstr ""
"еДХМЯРБЕМХЪР МЮВХМ Е ДЮ ОПЕЛЕЯРХРЕ ЦКЮБМХРЕ ЯХ ДЪКНБЕ, ГЮ ДЮ ХЛЮРЕ ОПЮГМН "
"ЛЪЯРН ЯКЕД extended-ДЪКНБЕРЕ"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "цПЕЬЙЮ ОПХ ВЕРЕМЕРН МЮ ТЮИКЮ %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "бЗГЯРЮМНБЪБЮМЕРН НР ТЮИКЮ %s МЕ СЯОЪ: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "кНЬ backup-ТЮИК"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "цПЕЬЙЮ ОПХ ГЮОХЯ БЗБ ТЮИКЮ %s"
@@ -4102,42 +5274,51 @@ msgstr "ХМРЕПЕЯЕМ"
msgid "maybe"
msgstr "ЯРЮБЮ"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (БЮФЕМ)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (ЛМНЦН ДНАЗП)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (ДНАЗП)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "оНЙЮФХ ОН-ЛЮКЙН"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "оНЙЮФХ ОНБЕВЕ"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "кНЙЮКЕМ ОПХМРЕП"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
msgstr "нРДЮКЕВЕМ ОПХМРЕП"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "нРДЮКЕВЕМ CUPS ЯЗПБЗП"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "нРДЮКЕВЕМ lpdОПХМРЕП"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "лПЕФНБ ОПХМРЕП (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "оЕВЮРЮЫН СЯРПНИЯРБН URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "нРЙПХБЮМЕ МЮ СЯРПНИЯРБЮ ..."
@@ -4151,11 +5332,11 @@ msgstr "рЕЯРБЮМЕ ОНПРНБЕРЕ"
msgid "A printer, model \"%s\", has been detected on "
msgstr "оПХМРЕП НР ЛНДЕКЮ \"%s\", Е МЮЛЕПЕМ МЮ "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "кНЙЮКМН ОЕВЮРЮЫН СЯРПНИЯРБН"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4163,15 +5344,15 @@ msgstr ""
"йЗДЕ Е ЯБЗПГЮМ БЮЬХЪ ОПХМРЕП \n"
"(ГЮАЕКЕФЙЮ: /dev/lp0 Е ЕЙБХБЮКЕМРМН МЮ LPT1) ?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "оЕВЮРЮЫН СЯРПНИЯРБН"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "нОЖХХ МЮ НРДЮКЕВЕМ lpd-ОПХМРЕП"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4181,19 +5362,19 @@ msgstr ""
"ХЛЕМЮРЮ МЮ УНЯРЮ Х МЮ НОЮЬЙЮРЮ МЮ ЯЗПБЗПЮ, МЮ ЙНИРН ЫЕ ЯЗГДЮБЮРЕ\n"
"ПЮАНРЮ."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "нРДЮКЕВЕМН ХЛЕ МЮ УНЯР"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "нРДЮКЕВЕМН ХЛЕ МЮ НОЮЬЙЮ"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) НОЖХХ ГЮ ОПХМРЕП"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4207,27 +5388,27 @@ msgstr ""
"ОПХМРЕПЮ, ДН ЙНИРН ХЯЙЮРЕ ДНЯРЗО Х ОНДУНДЪЫН ХЛЕМ, ОЮПНКЮ Х ХМТНПЛЮЖХЪ\n"
"ГЮ ПЮАНРМЮРЮ ЦПСОЮ."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "уНЯР МЮ SMB ЯЗПБЗП"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP МЮ SMB ЯЗПБЗП:"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "нАЫН ХЛЕ"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "пЮАНРМЮ ЦПСОЮ"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "нОЖХХ ГЮ NetWare ОПХМРЕП"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4237,131 +5418,155 @@ msgstr ""
"гЮ ДЮ ОЕВЮРХРЕ МЮ NetWare ОПХМРЕП ,РПЪАБЮ ДЮ ГМЮЕРЕ ХЛЕН ЛС Х БЗГЛНФМН\n"
"ЮДПЕЯЮ МЮ ЯЗПБЗПЮ, ЙЮЙРН Х ХЛЕРН МЮ НОЮЬЙЮРЮ,ОНРПЕАХРЕКЯЙНРН ХЛЕ,ОЮПНКЮ."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "яЗПБЗП МЮ ОПХМРЕПЮ"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "хЛЕ МЮ ОЕВЮРМЮРЮ НОЮЬЙЮРЮ"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "нОЖХХ МЮ Socket ОПХМРЕП"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"гЮ ДЮ ОЕВЮРЮРЕ МЮ socket ОПХМРЕП, РПЪАБЮ ДЮ ОПЕДНЯРЮБХРЕ\n"
+"ХЛЕРН МЮ УНЯРЮ МЮ ОПХМРЕПЮ Х, ЕБЕМРСЮКМН, МНЛЕП МЮ ОНПР."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "хЛЕ МЮ УНЯР МЮ ОПХМРЕПЮ"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "оНПР"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "лНФЕРЕ ДЮ НОПЕДЕКХРЕ МЮОПЮБН URI ГЮ ДНЯРЗО ДН ОПХМРЕПЮ Я CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "йЮЙЗБ РХО ОПХМРЕП ХЛЮРЕ ?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "хЯЙЮРЕ КХ РЕЯРНБ ОЕВЮР ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "нРОЕВЮРБЮМЕ МЮ РЕЯРНБ(ЮРЮ/ХРЕ) ЯРПЮМХЖ(Ю/Х) ..."
+
+# c-format
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"рЕЯРНБХРЕ ЯРПЮМХЖХ ЯЮ ХГОПЮРЕМХ ЙЗЛ ОПХМРЕПМХЪ ДЕЛНМ.\n"
+"рНБЮ ЛНФЕ ДЮ НРМЕЛЕ ЛЮКЙН БПЕЛЕ ОПЕДХ ОПХМРЕПЮ ДЮ ГЮОНВМЕ.\n"
+"яЗЯРНЪМХЕ МЮ ОЕВЮРЮ:\n"
+"%s\n"
+"\n"
+"пЮАНРХ КХ ДНАПЕ ?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"рЕЯРНБХРЕ ЯРПЮМХЖХ ЯЮ ХГОПЮРЕМХ ЙЗЛ ОПХМРЕПМХЪ ДЕЛНМ.\n"
+"рНБЮ ЛНФЕ ДЮ НРМЕЛЕ ЛЮКЙН БПЕЛЕ ОПЕДХ ОПХМРЕПЮ ДЮ ГЮОНВМЕ.\n"
+"пЮАНРХ КХ ДНАПЕ ?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "дЮ, НРОЕВЮРЮИ ASCII РЕЯРНБЮ ЯРПЮМХЖЮ"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "дЮ, НРОЕВЮРЮИ PostScript РЕЯРНБЮ ЯРПЮМХЖЮ"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "дЮ, НРОЕВЮРЮИ ДБЕРЕ РЕЯРНБХ ЯРПЮМХЖХ"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
-msgstr "йНМТХЦСПХПЮМЕ ОПХМРЕП"
+msgstr "мЮЯРПНИЙЮ МЮ ОПХМРЕП"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "йЮЙЗБ РХО ОПХМРЕП ХЛЮРЕ ?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "нОЖХХ МЮ ОПХМРЕПЮ"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "пЮГЛЕП МЮ УЮПРХЪРЮ"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "хГЙЮПБЮМЕ ЯРПЮМХЖЮРЮ ЯКЕД ОЕВЮР ?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "нОЖХХ ГЮ Uniprint ДПЮИБЕП"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "нОЖХХ ГЮ ДЗКАНВХМЮ МЮ ЖБЕРЮ"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "оЕВЮРЮИ РЕЙЯРЮ ЙЮРН PostScript ?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "нАЗПМХ ПЕДЮ МЮ ЯРПЮМХЖХРЕ"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "оНОПЮБЙЮ МЮ stair-stepping РЕЙЯР ?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "аПНИ ЯРПЮМХЖХ ГЮ ХГУНДМХ ЯРПЮМХЖХ"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "дЕЯЕМ/кЪБ ЗЦЗК Б РНВЙХ (1/72 МЮ ХМВ)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "цНПЕМ/дНКЕМ ЗЦЗК Б РНВЙХ (1/72 МЮ ХМВ)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "дНОЗКМХРЕКМХ GhostScript НОЖХХ"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "дНОЗКМХРЕКМХ НОЖХХ ГЮ РЕЙЯР"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "хЯЙЮРЕ КХ РЕЯРНБ ОЕВЮР ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "нРОЕВЮРБЮМЕ МЮ РЕЯРНБ(ЮРЮ/ХРЕ) ЯРПЮМХЖ(Ю/Х) ..."
-
-# c-format
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"рЕЯРНБХРЕ ЯРПЮМХЖХ ЯЮ ХГОПЮРЕМХ ЙЗЛ ОПХМРЕПМХЪ ДЕЛНМ.\n"
-"рНБЮ ЛНФЕ ДЮ НРМЕЛЕ ЛЮКЙН БПЕЛЕ ОПЕДХ ОПХМРЕПЮ ДЮ ГЮОНВМЕ.\n"
-"яЗЯРНЪМХЕ МЮ ОЕВЮРЮ:\n"
-"%s\n"
-"\n"
-"пЮАНРХ КХ ДНАПЕ ?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"рЕЯРНБХРЕ ЯРПЮМХЖХ ЯЮ ХГОПЮРЕМХ ЙЗЛ ОПХМРЕПМХЪ ДЕЛНМ.\n"
-"рНБЮ ЛНФЕ ДЮ НРМЕЛЕ ЛЮКЙН БПЕЛЕ ОПЕДХ ОПХМРЕПЮ ДЮ ГЮОНВМЕ.\n"
-"пЮАНРХ КХ ДНАПЕ ?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "оПХМРЕП"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
-msgstr "фЕКЮЕРЕ КХ ДЮ ЙНМТХЦСПХПЮРЕ ОПХМРЕП?"
+msgstr "фЕКЮЕРЕ КХ ДЮ МЮЯРПНХРЕ ОПХМРЕП ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4369,19 +5574,66 @@ msgstr ""
"рНБЮ Е ЯКЕДБЮЫЮРЮ ОЕВЮРМЮ НОЮЬЙЮ.\n"
"лНФЕРЕ ДНАЮБХРЕ НЫЕ ХКХ ДЮ ОПНЛЕМХРЕ ЯЗЫЕЯРБСБЮЫХРЕ."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "яРЮПРХПЮМЕ МЮ CUPS"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "вЕРЕМЕ МЮ CUPS ДПЮИБЕПХРЕ НР АЮГЮРЮ ДЮММХ ..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "хГАЕПЕРЕ БПЗГЙЮ ЙЗЛ ОПХМРЕПЮ"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "йЮЙ Е ЯБЗПГЮМ ОПХМРЕПЗР ?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "хГАЕПЕРЕ БПЗГЙЮ ЙЗЛ НРДЮКЕВЕМХЪ ОПХМРЕП"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"я НРДЮКЕВЕМ CUPS ЯЗПБЗП, МЕ БХ ЯЕ МЮКЮЦЮ ДЮ МЮЯРПНИБЮРЕ ЙЮЙЗБРН\n"
+"Х ДЮ АХКН ОПХМРЕП РСЙ; ОПХМРЕПХРЕ ЯЮЛХ АХБЮР ГЮЯХВЮМХ.\n"
+"б ЯКСВЮИ МЮ ЯЗЛМЕМХЕ, ХГАЕПЕРЕ \"нРДЮКЕВЕМ CUPS ЯЗПБЗП\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "хГРПХБЮМЕ МЮ НОЮЬЙЮРЮ"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"бЯЕЙХ ОПХМРЕП ЯЕ МСФДЮЕ НР ХЛЕ (МЮОПХЛЕП, \"lp\").\n"
+"дПСЦХ ОЮПЮЛЕРПХ ЙЮРН НОХЯЮМХЕ МЮ ОПХМРЕПЮ ХКХ ЛЕЯРНОНКНФЕМХЕРН ЛС ЛНЦЮР ДЮ\n"
+"АЗДЮР НОПЕДЕКЕМХ. йЮЙБН ХЛЕ ДЮ АЗДЕ ХГОНКГБЮМН ГЮ РНГХ ОПХМРЕП Х\n"
+"ЙЮЙ Е ЯБЗПГЮМ РНИ ?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "хЛЕ МЮ ОПХМРЕП"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "нОХЯЮМХЕ"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "лЕЯРНОНКНФЕМХЕ"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4393,45 +5645,45 @@ msgstr ""
"ХЛЕ МЮ ДХПЕЙРНПХЪ ДЮ АЗДЕ ХГОНКГБЮМН ГЮ РЮГХ НОЮЬЙЮ Х ЙЮЙ ЯЕ ЯБЗПГЮМ "
"ОПХМРЕПЮ ?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "хЛЕ МЮ НОЮЬЙЮ"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spool-ДХПЕЙРНПХЪ"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "бПЗГЙЮ МЮ ОПХМРЕПЮ"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "мЕ ЛНЦЮ ДЮ ОПХАЮБЪ ДЪК ЙЗЛ _ТНПЛЮРХПЮМ_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "тЮИКЗР $file МЕ ЛНФЕ ДЮ АЗДЕ ГЮОХЯЮМ"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid ОПНОЮДМЮ"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ОПНОЮДМЮ (ЛНФЕ АХ raidtools КХОЯБЮР ?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "мЪЛЮ ДНЯРЮРЗВМН ДЪКНБЕ ГЮ RAID МХБН %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacrton - ОЕПХНДХВМН ХГОЗКМЪБЮМЕ МЮ ЙНЛЮМДХ ОН ПЮГОХЯЮМХЕ."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4440,7 +5692,7 @@ msgstr ""
"syslog. лНФЕ ЯЗЫН ДЮ ЯЕ ХГОНКГБЮ ГЮ ЯОХПЮМЕ МЮ ЛЮЬХМЮРЮ, ЙНЦЮРН АЮРЕПХЪРЮ Е "
"ХГРНЫЕМЮ."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4448,7 +5700,7 @@ msgstr ""
"оСЯЙЮ ЙНЛЮМДХ ОН ПЮГОХЯЮМХЕ БЗБ БПЕЛЕ НОПЕДЕКЕМН НР ЙНЛЮМДЮРЮ at Х ОСЯЙЮ\n"
"МЮАНП НР ДПСЦХ, ЙНЦЮРН МЮРНБЮПЕМНЯРРЮ ЯОЮДМЕ ДНЯРЮРЗВМН."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4457,9 +5709,9 @@ msgid ""
msgstr ""
"cron Е ЯРЮМДЮПРМЮ UNIX ОПНЦПЮЛЮ, ЙНЪРН ОЕПХНДХВМН ОСЯЙЮ НОПЕДЕКЕМХ ОПНЦПЮЛХ\n"
"ОН ПЮГОХЯЮМХЕ. vixie cron ДНАЮБЪ ЛМНФЕЯРБН ОПЕХЛСЫЕЯРБЮ МЮД РЕГХ МЮ ОПНЯРХЪ\n"
-"UNIX cron, БЙКЧВХРЕКМН ОН-ДНАПЮ ЯХЦСПМНЯР Х ЛНЫМХ ЙНМТХЦСПЮЖХНММХ НОЖХХ."
+"UNIX cron, БЙКЧВХРЕКМН ОН-ДНАПЮ ЯХЦСПМНЯР Х ЛНЫМХ МЮЯРПНИБЮЫХ НОЖХХ."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4470,7 +5722,7 @@ msgstr ""
"Midnight Commander. яЗЫН РЮЙЮ ОНГБНКЪБЮ АЮГХПЮМХРЕ МЮ ЛХЬЙЮ ЙНМГНКХ\n"
"ПЕФХ-Х-КЕОХ НОЕПЮЖХХ, Х БЙКЧВБЮ ОНДДПЗФЙЮ МЮ ХГЙЮВЮЫХ ЛЕМЧРЮ МЮ ЙНГНКЮРЮ."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4479,7 +5731,7 @@ msgstr ""
"ТЮИКНБЕ\n"
"Х CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4493,7 +5745,7 @@ msgstr ""
"telnet, ftp, rsh Х rlogin. хГЙКЧВБЮМЕРН МЮ inetd ХГЙКЧВБЮ БЯХВЙХ СЯКСЦХ,\n"
"ГЮ ЙНХРН НРЦНБЮПЪ."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4504,7 +5756,7 @@ msgstr ""
"рЪ ЛНФЕ ДЮ АЗДЕ ХГАПЮМЮ Я ХМЯРПСЛЕМРЮ kbdconfig. рПЪАБЮ ДЮ НЯРЮБХРЕ "
"РНБЮБЙКЧВЕМН ГЮ ОНБЕВЕРН ЛЮЬХМХ."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4512,7 +5764,7 @@ msgstr ""
"lpd Е ДЕЛНМЮ ГЮ ОЕВЮР МЕНАУНДХЛ МЮ lpr ДЮ ПЮАНРХ МНПЛЮКМН. рНИ ОПНЯРН Е\n"
"ЯЗПБЗП, ЙНИРН НОПЕДЕКЪ ПЮАНРХРЕ ГЮ ОЕВЮР МЮ ОПХМРЕП(Ю/ХРЕ)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4520,7 +5772,7 @@ msgstr ""
"named (BIND) Е Domain Name Server (DNS), ЙНИРН ЯЕ ХГОНКГБЮ ДЮ ОПЕБЗПМЕ\n"
"ХЛЕРН МЮ УНЯРЮ ДН IP ЮДПЕЯ."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4528,25 +5780,25 @@ msgstr ""
"лНМРХПЮ Х ДЕЛНМРХПЮ БЯЪЙЮЙБХ Network File System (NFS), SMB (LAN\n"
"Manager/Windows), Х NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"юЙРХБХПЮ/ДЕЮЙРХБХПЮ БЙХВЙХ ЛПЕФНДХ ХМРЕПТЕИЯХ ЙНМТХЦСПХПЮМХ ДЮ ЯЕ ОСЯЙЮР\n"
+"юЙРХБХПЮ/ДЕЮЙРХБХПЮ БЯХВЙХ ЛПЕФНБХ ХМРЕПТЕИЯХ, МЮЯРПНЕМХ ДЮ ЯЕ ОСЯЙЮР\n"
"ОПХ ЯРЮПРХПЮМЕ МЮ ЛЮЬХМЮРЮ."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS Е ОНОСКЪПЕМ ОПНРНЙНК ГЮ НАЛЕМ МЮ ТЮИКНБЕ ОН TCP/IP ЛПЕФХ.\n"
-"рЮГХ СЯКСЦЮ НЯХЦСПЪБЮ ТСМЙЖХНМЮКМНЯРРЮ МЮ NFS ЯЗПБЗПЮ, ЙНИРН ЯЕ ЙНМТСЦСПХПЮ\n"
+"рЮГХ СЯКСЦЮ НЯХЦСПЪБЮ ТСМЙЖХНМЮКМНЯРРЮ МЮ NFS ЯЗПБЗПЮ, ЙНИРН ЯЕ МЮЯРПНИБЮ\n"
"ВПЕГ ТЮИКЮ /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4554,7 +5806,7 @@ msgstr ""
"NFS Е ОНОСКЪПЕМ ОПНРНЙНК ГЮ НАЛЕМ МЮ ТЮИКНБЕ ОН TCP/IP ЛПЕФХ.\n"
"рЮГХ СЯКСЦЮ НЯХЦСПЪБЮ ТСМЙЖХНМЮКМНЯРРЮ МЮ ГЮЙКЧВБЮМЕРН МЮ NFS ТЮИКНБЕРЕ."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4562,10 +5814,10 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
"PCMCIA ОНДДЗПФЙЮРЮ НАХЙМНБЕММН ОНДДЗПФЮ МЕЫЮ ЙЮРН ethernet Х ЛНДЕЛХ Б\n"
-"laptop-Х. рНБЮ МЪЛЮ ДЮ ЯЕ ЯРЮПРХПЮ ОПЕДХ ДЮ АЗПЕ ЙНМТХЦСПХПЮМ, РЮЙЮ ВЕ Е\n"
+"laptop-Х. рНБЮ МЪЛЮ ДЮ ЯЕ ЯРЮПРХПЮ ОПЕДХ ДЮ АЗДЕ МЮЯРПНЕМ, РЮЙЮ ВЕ Е\n"
"ОН-ДНАПЕ ДЮ Ъ ХЛЮРЕ ХМЯРЮКХПЮМЮ МЮ ЛЮЬХМХ, ЙНХРН МЕ ЯЕ МСФДЮЪР НР МЕЪ."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4576,7 +5828,7 @@ msgstr ""
"NFS Х NIS. portmap ЯЗПБЗПЮ РПЪАБЮ ДЮ Е ОСЯМЮР МЮ ЛЮЬХМХ, ЙНХРН ПЮАНРЪР ЙЮРН\n"
"ЯЗПБЗП ГЮ ОПНРНЙНКХ, ЙНХРН ЯЕ МСФДЮЪР ДЮ ХГОНКГБЮР RPC ЛЕУЮМХГЗЛ."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4584,7 +5836,7 @@ msgstr ""
"Postfix Е Main Transport Agent (MTA), ЙНИРН Е ОПНЦПЮЛЮ ЙНЪРН ОПЕМЮЯЪ\n"
"ОНЬЮ НР ЛЮЬХМЮ МЮ ЛЮЬХМЮ."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4592,7 +5844,7 @@ msgstr ""
"гЮОЮГБЮ Х БЗГЯРЮМНБЪРЮ ОНРНЙЮ МЮ ЯХЯРЕЛМЮ ЕМРПНОХЪ ГЮ ОН-ЦНКЪЛН ЙЮВЕЯРБН\n"
"МЮ ОПНХГБНКМН ЦЕМЕПХПЮМЕ МЮ ВХЯКЮ."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4602,7 +5854,7 @@ msgstr ""
"RIP ОПНРНЙНКЮ. дНЙЮРН RIP Е ЬХПНЙН ХГОНКГБЮМЮ ГЮ ЛЮКЙХ ЛПЕФХ, ГЮ ОН-ЯКНФМХ\n"
"ОПНРНЙНКХ ГЮ ПСРХПЮМЕ ЯЮ МСФМХ ГЮ ЯКНФМХ ЛПЕФХ. "
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4610,7 +5862,7 @@ msgstr ""
"rstat ОПНРНЙНКЮ ОНГБНКЪБЮ МЮ ЛПЕФНБХРЕ ОНРПЕАХРЕКХ ДЮ ХГБКХВЮР\n"
"ОЮПЮЛЕРПХРЕ МЮ БЗГЛНФМНЯРХРЕ ГЮ БЯЪЙЮ ЛЮЬХМЮ МЮ ЛПЕФЮРЮ."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4618,7 +5870,7 @@ msgstr ""
"rusers ОПНРНЙНКЮ ОНГБНКЪБЮ МЮ ЛПЕФНБХРЕ ОНРПЕАХРЕКХ ДЮ ОПНБЕПЪБЮР ЙНИ Е\n"
"БКЪГЗК МЮ ДПСЦЮ НРЦНБЮПЪЫЮРЮ ЛЮЬХМЮ."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4627,7 +5879,7 @@ msgstr ""
"МЮ БЯХВЙХ ОНРПЕАХРЕКХ БКЕГКХ МЮ ЛЮЬХМЮ Я ПЮАНРЕЫ rwho ДЕЛНМ (ОНДНАЕМ МЮ "
"finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4635,52 +5887,218 @@ msgstr ""
"Syslog Е ОПНЦПЮЛЮ ЙНЪРН ЛМНЦН ДЕЛНМХ ХГОНКГБЮР ДЮ ГЮОЮГБЮР ЯЗНАЫЕМХЪ Б\n"
"ПЮГКХВМХ ЯХЯРЕЛМХ ТЮИКНБЕ (КНЦНБЕ). дНАПЕ Е ОНЯРНЪММН ДЮ Ъ ХЛЮРЕ ПЮАНРЕЫЮ."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "рНГХ ЯРЮПРНБ ЯЙПХОР ЯЕ НОХРБЮ ДЮ ГЮПЕДХ ЛНДСКХ usb ЛХЬЙЮРЮ БХ."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "оСЯЙЮ Х ЯОХПЮ X Font Server ОПХ ОСЯЙЮМЕ Х ЯОХПЮМЕ МЮ ЛЮЬХМЮРЮ."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "хГАХПЮ СЯКСЦХРЕ, ЙНХРН РПЪАБЮ ДЮ ЯЕ ОСЯМЮР ОПХ ОСЯЙЮМЕ МЮ ЛЮЬХМЮРЮ"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"дНАПЕ ДНЬКХ Б SILO - МЮВХМЮ ДЮ ХГАЕПЕРЕ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ !\n"
-"\n"
-"гЮ ДЮ ОНКСВХРЕ ЯОХЯЗЙ Я БЗГЛНФМХРЕ БЗГЛНФМНЯРХ, МЮРХЯМЕРЕ <TAB>.\n"
-"\n"
-"гЮ ДЮ ГЮПЕДХРЕ ЕДМЮ НР РЪУ, МЮОХЬЕРЕ ХЛЕРН Х МЮРХЯМЕРЕ <ENTER> ХКХ\n"
-"ХГВЮЙЮИРЕ %d ЯЕЙСМДХ ГЮ ОСЯЙЮМЕ ОН ОНДПЮГАХПЮМЕ.\n"
+"мЕ ЛНЦЮ ДЮ ПЮГВЕРЮ РЮАКХЖЮРЮ МЮ ДЪКНБЕРЕ, ОПЕЙЮКЕМН Е ОНБПЕДЕМЮ :(\n"
+"ыЕ ЯЕ НОХРЮЛ ДЮ ОПНДЗКФЮ ДЮ ПЮГВХЯРБЮЛ КНЬХРЕ ДЪКНБЕ"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
-msgstr "йНМТХЦСПХПЮМЕ МЮ LILO/GRUB"
+msgstr "мЮЯРПНИЙЮ МЮ LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "яЗГДЮБЮМЕ МЮ boot-ДХЯЙЕРЮ"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "тНПЛЮРХПЮИ ДХЯЙЕРЮРЮ"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "хГАНП"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "хМЯРЮКЮЖХЪРЮ МЮ LILO ОПНБЮКЕМЮ. оНЪБХ ЯЕ ЯКЕДМЮРЮ ЦПЕЬЙЮ:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "яОНДЕКЪМЕРН МЮ БПЗГЙЮРЮ Я ХМРЕПМЕР Е БЕВЕ ЮЙРХБХПЮМН"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "мЮЯРПНИЙЮРЮ МЮ яОНДЕКЪМЕРН МЮ БПЗГЙЮРЮ Я ХМРЕПМЕР Е БЕВЕ ГЮБЗПЬЕМН.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "рЮАКХЖЮ"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "мЮЯРПНИЙЮ МЮ у"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "яОНДЕКЪМЕРН МЮ БПЗГЙЮРЮ Я ХМРЕПМЕР Е ДЕЮЙРХБХПЮМН"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "мЮЯРПНИЙЮРЮ МЮ яОНДЕКЪМЕРН МЮ БПЗГЙЮРЮ Я ХМРЕПМЕР Е БЕВЕ ГЮБЗПЬЕМН.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "рЮАКХЖЮ"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "яЗДЗПФЮМХЕРН МЮ ЙНМТХЦСПЮЖХНММХЪ ТЮИК МЕ Е ПЮГАХПЮЕЛН."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "яОНДЕКЪМЕ МЮ БПЗГЙЮРЮ Я хМРЕПМЕР"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"яЕЦЮ, ЯКЕД ЙЮРН хМРЕПМЕР БПЗГЙЮРЮ БХ Е МЮЯРПНЕМЮ,\n"
+"ЙНЛОЧРЗПЗР БХ ЛНФЕ ДЮ АЗДЕ МЮЯРПНЕМ МЮ ОНДЕКЪ хМРЕПМЕР БПЗГЙЮРЮ ЯХ.\n"
+"нРАЕКЕФЕРЕ: РПЪАБЮ БХ НРДЕКЕМ ГЮ РНБЮ ЛПЕФНБ ЮДЮОРЕП, ГЮ ДЮ СЯРЮМНБХРЕ "
+"БЗРПЕЬМЮРЮ ЯХ ЛПЕФЮ (LAN).\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "пЕФХЛ МЮ МЮАХПЮМЕ"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "мЪЛЮРЕ ЛПЕФНБ ЮДЮОРЕП!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"б ЯХЯРЕЛЮРЮ МЕ Е НРЙПХР ethernet ЛПЕФНБ ЮДЮОРЕП. лНКЪ, ЯРЮПРХПЮИРЕ "
+"ХМЯРПСЛЕМРЮ ГЮ МЮЯРПНИЙЮ МЮ УЮПДСЕП."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"б ЯХЯРЕЛЮРЮ БХ ХЛЮ ЯЮЛН ЕДХМ МЮЯРПНЕМ ЛПЕФНБ ЮДЮОРЕП:\n"
+"\n"
+"$interface\n"
+"\n"
+"хЯЙЮРЕ КХ ДЮ МЮЯРПНХРЕ БЗРПЕЬМЮРЮ ЯХ ЛПЕФЮ РНГХ ЮДЮОРЕП ?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"лНКЪ ХГАЕПЕРЕ ЙНИ ЛПЕФНБ ЮДЮОРЕП ДЮ АЗДЕ БЙКЧВЕМ ЙЗЛ КНЙЮКМЮРЮ БХ ЛПЕФЮ."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"бМХЛЮМХЕ, ЛПЕФНБХЪР ЮДЮОРЕП БЕВЕ Е МЮЯРПНЕМ.\n"
+"хЯЙЮРЕ КХ ДЮ ЦН ОПЕМЮЯРПНХРЕ ?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "бЗГЛНФЕМ ЙНМТХЙР Я ЮДПЕЯХРЕ Б LAN Я МЮЯРПНИЙЮРЮ МЮ $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "нРЙПХРЮ Е МЮЯРПНИЙЮ МЮ гЮЫХРМЮ яРЕМЮ !"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"бМХЛЮМХЕ ! нРЙПХРЮ Е МЮЯРПНИЙЮ МЮ гЮЫХРМЮ яРЕМЮ. лНФЕ ДЮ ЯЕ МЮКНФХ МЪЙЮЙБЮ "
+"ПЗВМЮ ОНОПЮБЙЮ ЯКЕД ХМЯРЮКЮЖХЪРЮ. мЮРЮРЗЙ ?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"йНМТХЦСПЮЖХНММХ ЯЖПХОРНБЕ, ХМЯРЮКХПЮМЕ МЮ ЯНТРСЕП, ЯРЮПРХПЮМЕ МЮ ЯЗПБЗПХ..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "мЮЯРПНИЙЮ МЮ IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "мЕ ЛНФЕ ДЮ АЗДЕ ХМЯРЮКХПЮМ ipchains RPM Я urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "мЕ ЛНФЕ ДЮ АЗДЕ ХМЯРЮКХПЮМ dhcp RPM Я urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "мЕ ЛНФЕ ДЮ АЗДЕ ХМЯРЮКХПЮМ linuxconf RPM Я urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "мЕ ЛНФЕ ДЮ АЗДЕ ХМЯРЮКХПЮМ bind RPM Я urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "мЕ ЛНФЕ ДЮ АЗДЕ ХМЯРЮКХПЮМ caching-nameserver RPM Я urpmi."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "оНГДПЮБКЕМХЪ !"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4744,29 +6162,42 @@ msgstr "хГАЕПЕРЕ МХБН МЮ ЯХЦСПМНЯР"
msgid "Choose the tool you want to use"
msgstr "хГАЕПЕРЕ ХМЯРПСЛЕМРЮ, ЙНИРН ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "йЮЙБН Е ОНДПЕФДЮМЕРН МЮ ЙКЮБХЮРСПЮРЮ бХ?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "оПНЛЕМЕРЕ ПЮГДЕКХРЕКМЮРЮ ЯОНЯНАМНЯР"
+
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"яЛЕМЕРЕ CD-ROM !\n"
+"\n"
+"лНКЪ, ЯКНФЕРЕ CD-ROM НГЮЦКЮБЕМ \"%s\" Б СЯРПНИЯРБНРН Х МЮРХЯМЕРЕ Ok, ЙНЦЮРН "
+"ЯРЕ ЦНРНБХ.\n"
+"юЙН ЦН МЪЛЮРЕ, МЮРХЯМЕРЕ нРЙЮГ, ГЮ ДЮ ХГАЕЦМЕРЕ ХМЯРЮКХПЮМЕРН НР РНГХ CD-ROM."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "йЮЙЗБ РХО ЛХЬЙЮРЮ ХЛЮРЕ ?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "МЕ Е МЮЛЕПЕМ serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "дЮ ЯХЛСКХПЮЛ КХ РПЕРХ АСРНМ ?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "йЗЛ ЙНИ ЯЕПХЕМ ОНПР Е ЯБЗПГЮМЮ ЛХЬЙЮРЮ БХ ?"
#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
-msgstr "ВЕРЕМЕ МЮ ЙНМТХЦСПЮЖХЪ"
+msgstr "ВЕРЕМЕ МЮ МЮЯРПНИЙХРЕ"
#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
#: ../../standalone/rpmdrake_.c:253
@@ -4824,7 +6255,7 @@ msgstr "хГВХЯРХ БЯХВЙН"
#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
-msgstr "йНМТХЦСПЮЖХЪ"
+msgstr "мЮЯРПНИЙЮ"
#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
@@ -4840,7 +6271,7 @@ msgstr "оПЕЛЮУМХ"
#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
-msgstr "йНМТХЦСПЮЖХЪ: ДНАЮБХ ЛЪЯРН"
+msgstr "мЮЯРПНИЙЮ: ДНАЮБХ ЛЪЯРН"
#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
@@ -4973,6 +6404,935 @@ msgstr "мЮЛХПЮМЕ МЮ КХЯРЮРЮ"
msgid "Finding leaves takes some time"
msgstr "мЮЛХПЮМЕРН МЮ КХЯРЮ НРМЕЛЮ ЛЮКЙН БПЕЛЕ"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "хМРЕПМЕР"
+
+msgid "Internet"
+msgstr "хМРЕПМЕР"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "нТХЯ"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "лСКРХЛЕДХЪ"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "лСКРХЛЕДХЪ"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "лСКРХЛЕДХЪ"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "лСКРХЛЕДХЪ"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "дНЙСЛЕМРЮЖХЪ"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "лСКРХЛЕДХЪ"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "хГАЕПЕРЕ ЦНКЕЛХМЮРЮ, ЙНЪРН ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ"
+
+#~ msgid "Total size: "
+#~ msgstr "нАЫЮ ЦНКЕЛХМЮ: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "оПЕМЮЯРПНИЙЮ КНЙЮКМЮРЮ ЛПЕФЮРЮ"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "йНЛОЧРЗПЗР бХ ЛНФЕ ДЮ АЗДЕ МЮЯРПНЕМ ДЮ ЯОНДЕКЪ Я ДПСЦХ бПЗГЙЮРЮ Я хМРЕПМЕР.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "бЯХВЙН АЕЬЕ МЮЯРПНЕМН.\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР ХГОНКГБЮИЙХ НАХЙМНБЕМ ЛНДЕЛ"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР ХГОНКГБЮИЙХ ISDN"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР ХГОНКГБЮИЙХ DSL (ХКХ ADSL)"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "яБЗПФХ ЯЕ ЙЗЛ хМРЕПМЕР ХГОНКГБЮИЙХ ЙЮАЕКЕМ ЛНДЕЛ"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "бПЕЛЕ (Б ЯЕЙ.) МЮ АЕГДЕИЯРБХЕ, ЯКЕД ЙНЕРН\n"
+#~ "ДЮ ЯОПЕ. (НЯРЮБЕРЕ ОПЮГМН ГЮ ХГЙКЧВБЮМЕ)"
+
+#~ msgid "Germany"
+#~ msgstr "цЕПЛЮМХЪ"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "цЕПЛЮМХЪ (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "йЮЙБН ХЯЙЮРЕ ДЮ ОПЮБХРЕ ?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "хМЯРЮКХПЮМЕ/яОЮЯЪБЮМЕ"
+
+#~ msgid "Rescue"
+#~ msgstr "яОЮЯХ"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "йЮЙЗБ РХО ДЪК ФЕКЮЕРЕ ?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "хГАЕПЕРЕ \"хМЯРЮКЮЖХЪ\", ЮЙН МЪЛЮ ХМЯРЮКХПЮМХ ОПЕДХЬМХ БЕПЯХХ МЮ GNU/Linux\n"
+#~ "ХКХ ЮЙН ХЯЙЮРЕ ДЮ ХГОНКГБЮРЕ ПЮГКХВМХ ДХЯРПХАСЖХХ ХКХ БЕПЯХХ.\n"
+#~ "\n"
+#~ "хГАЕПЕРЕ \"бЗГЯРЮМНБЪБЮМЕ\", ЮЙН ХЯЙЮРЕ ДЮ БЗГЯРЮМНБХРЕ ЯЗЫЕЕЯРБСБЮЫЮ БЕПЯХЪ "
+#~ "МЮ Linux-Mandrake.\n"
+#~ "\n"
+#~ "\n"
+#~ "хГАЕПЕРЕ:\n"
+#~ "\n"
+#~ " - оПЕОНПЗВХРЕКМЮ: юЙН МЕ ЯРЕ ХМЯРЮКХПЮКХ GNU/Linux ОПЕДХ, ХГАЕПЕРЕ РНБЮ.\n"
+#~ "\n"
+#~ " - яОЕЖХЮКХГХПЮМЮ: юЙН ЯРЕ ДНЯРЮРЗВМН ГЮОНГМЮР Я GNU/Linux, ЫЕ ЛНФЕРЕ ДЮ "
+#~ "ХГАЕПЕРЕ\n"
+#~ " ЦКЮБМНРН ОПЕДМЮГМЮВЕМХЕ МЮ ЛЮЬХМЮРЮ ЯХ. бХФРЕ ОН-ДНКС ГЮ ОНДПНАМНЯРХ.\n"
+#~ "\n"
+#~ " - еЙЯОЕПРМЮ: рНБЮ ОПЕДОНКЮЦЮ, ВЕ ЯРЕ МЮ \"РХ\" Я GNU/Linux Х ХЯЙЮРЕ ДЮ\n"
+#~ " МЮОПЮБХРЕ БХЯНЙН ЯОЕЖХЮКХГХПЮМЮ ХМЯРЮКЮЖХЪ. йЮЙРН Х Б "
+#~ "\"яОЕЖХЮКХГХПЮМХЪ\"\n"
+#~ " ХМЯРЮКЮЖХНМЕМ ЙКЮЯ, ЫЕ ЛНФЕРЕ ДЮ ХГАЕПЕРЕ СОНРПЕАЮРЮ МЮ ЯХЯРЕЛЮРЮ ЯХ.\n"
+#~ " мН ЛНКЪ, ЛНКЪ, ме хгахпюире рнбю, нябем юйн ме гмюере йюйбн опюбхре!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "яЕЦЮ РПЪАБЮ ДЮ ХГАЕПЕРЕ МЮ ЙНИ/ЙНХ ДЪКНБЕ ЫЕ ХМЯРЮКХПЮРЕ БЮЬЮРЮ\n"
+#~ "Linux-Mandrake ЯХЯРЕЛЮ, ЮЙН ЯЮ БЕВЕ ЯЗГДЮДЕМХ (НР ОПЕДХЬМЮ ХМЯРЮКЮЖХЪ МЮ\n"
+#~ "GNU/Linux ХМЯРЮКЮЖХЪ ХКХ МЪЙЮЙЗБ ДПСЦ ХМЯРПСЛЕМР ГЮ ОНДЪКАЮ). б ОПНРХБЕМ\n"
+#~ "ЯКСВЮИ, ДЪКНБЕРЕ МЮ ДХЯЙЮ БХ РПЪАБЮ ДЮ АЗДЮР НОПЕДЕКЕМХ. рЮГХ НОЕПЮЖХЪ ЯЕ\n"
+#~ "ЯЗЯРНХ НР КНЦХВЕЯЙН ПЮГДЕКЪМЕ МЮ ОПНЯРПЮМЯРБНРН МЮ УЮПД ДХЯЙЮ МЮ НРДЕКМХ\n"
+#~ "НАКЮЯРХ МЮ СОНРПЕАЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН РПЪАБЮ ДЮ ЯЗГДЮБЮРЕ МНБХ ДЪКНБЕ, ХГАЕПЕРЕ \"юБРНЛЮРХВМН ЯЗГДЮБЮМЕ\", ГЮ "
+#~ "ДЮ\n"
+#~ "МЮОПЮБХРЕ GNU/Linux ДЪКНБЕ ЮБРНЛЮРХВМН. лНФЕ ДЮ ХГАЕПЕРЕ ДХЯЙЮ ГЮ ПЮГДЕКЪМЕ\n"
+#~ "ЙЮРН ЖЗЙМЕРЕ БЗПУС \"hda\" ГЮ ОЗПБХЪ IDE ДХЯЙ, \"hdb\" ГЮ БРНПХЪ ХКХ\n"
+#~ "\"sda\" ГЮ ОЗПБХЪ SCSI Х Р.М.\n"
+#~ "\n"
+#~ "\n"
+#~ "дБЮ НАЫХ ДЪКЮ ЯЮ: root ДЪК (/), ЙНИРН Е МЮВЮКМЮРЮ РНВЙЮ МЮ ДХПЕЙРНПХИМЮРЮ\n"
+#~ "ИЕПЮПУХЪ МЮ ТЮИКНБЮРЮ ЯХЯРЕЛЮ Х /boot, ЙНИРН ЯЗДЗПФЮ БЯХВЙХ МЕНАУНДХЛХ ГЮ\n"
+#~ "ЯРЮПРХПЮМЕ МЮ НОЕПЮЖХНММЮРЮ ЯХЯРЕЛЮ, ЙНЦЮРН ЙНЛОЧРЗПЮ АЗДЕ БЙКЧВЕМ.\n"
+#~ "\n"
+#~ "\n"
+#~ "рЗИ ЙЮРН ЕТЕЙРХРЕ НР РНГХ ОПНЖЕЯ ЯЮ МЮОЗКМН МЕНАПЮРХЛХ, ОНДЪКАЮРЮ ЛНФЕ ДЮ Е\n"
+#~ "ОКЮЬЕЫЮ Х ЯРПЕЯНБЮ ГЮ МЕНОХРЕМ ОНРПЕАХРЕК. DiskDrake НОПНЯРЪБЮ ОПНЖЕЯЮ, "
+#~ "РЮЙЮ\n"
+#~ "ВЕ ДЮ МЕ АЗДЕ РЮЙЗБ. йНМЯСКРХПЮИРЕ ЯЕ Я ДНЙСЛЕМРЮЖХЪРЮ Х МЕ АЗПГЮИРЕ ДЮ\n"
+#~ "ДЕИЯРБЮРЕ.\n"
+#~ "\n"
+#~ "\n"
+#~ "лНФЕРЕ ДЮ ДНЯРХЦМЕРЕ БЯЪЙЮ БЗГЛНФМНЯР Я ЙКЮБХЮРСПЮРЮ: ДБХФЕРЕ ОПЕГ ДЪКНБЕРЕ\n"
+#~ "ХГОНКГБЮИЙХ Tab Х ЯРЕКЙХРЕ Up/Down. йНЦЮРН ЛЮПЙХПЮРЕ ДЪК, ЛНФЕРЕ ДЮ "
+#~ "ХГОНКГБЮРЕ:\n"
+#~ "\n"
+#~ "- Ctrl-c ГЮ ДЮ ЯЗГДЮДЕРЕ МНБ ДЪК (ЙНЦЮРН Е ХГАПЮМ ОПЮГЕМ)\n"
+#~ "\n"
+#~ "- Ctrl-d ГЮ ДЮ ХГРПХЕРЕ ДЪК\n"
+#~ "\n"
+#~ "- Ctrl-m ГЮ ДЮ НОПЕДЕКХРЕ ЛЪЯРН ГЮ ЛНМРХПЮМЕ\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "мНБХРЕ ДЪКНБЕ РПЪАБЮ ДЮ АЗДЮР ТНПЛЮХРПЮМХ ГЮ ДЮ ЯЮ ХГОНКГБЮЕЛХ\n"
+#~ "(ТНПЛЮРХПЮМЕ НГМЮВЮБЮ ЯЗГДЮБЮМЕ МЮ ТЮИКНБЮ ЯХЯРЕЛЮ). б РНГХ ЛНЛЕМР\n"
+#~ "ЛНФЕ ДЮ ТНПЛЮРХПЮРЕ НРМНБН ЯРЮПХ ДЪКНБЕ, ГЮ ДЮ ХГРПХЕРЕ ТЮИКНБЕРЕ МЮ РЪУ.\n"
+#~ "гЮ БЕВЕ ЯЗЫЕЯРБСБЮЫХРЕ ДЪКНБЕ НАЮВЕ РНБЮ МЕ Е ГЮДЗКФХРЕКМН. нАХЙМНБЕМН МЕ\n"
+#~ "ЯЕ ТНПЛЮРХПЮР /home Х /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "оЮЙЕРХРЕ, ЙНХРН ЯРЕ ЛЮПЙХПЮКХ, ЫЕ АЗДЮР ХМЯРЮКХПЮМХ ЯЕЦЮ. рЮГХ НОЕПЮЖХЪ\n"
+#~ "ЫЕ НРМЕЛЕ МЪЙНКЙН ЛХМСРХ, НЯБЕМ ЮЙН МЕ ЯРЕ ХГАПЮКХ ДЮ НАМНБХРЕ ЯХЯРЕЛЮРЮ.\n"
+#~ "рНЦЮБЮ НАМНБЪБЮМЕРН ЛНФЕ ДЮ НМРЕЛЕ ОНБЕВЕ БПЕЛЕ."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "юЙН DrakX МЕ СЯОЕЕ ДЮ МЮЛЕПХ ЛХЬЙЮРЮ БХ, ХКХ ХЯЙЮРЕ ДЮ\n"
+#~ "ОПНБЕПХРЕ ЙЮЙБН Е МЮОПЮБХК, ОН-ЦНПЕ ЫЕ БХ АЗДЕ\n"
+#~ "ОПЕДНЯРЮБЕМ ЯОХЯЗЙ НР ЛХЬЙХ.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН ЯРЕ ЯЗЦКЮЯМХ Я МЮЯРПНИЙХРЕ МЮ DrakX, ОПНЯРН МЮРХЯМЕРЕ 'Ok'.\n"
+#~ "б ОПНРХБЕМ ЯКСВЮИ, ЛНФЕРЕ ДЮ ХГАЕПЕРЕ ЛХЬЙЮРЮ НР ЯОХЯЗЙЮ, ЙНЪРН МЮИ-ДНАПЕ\n"
+#~ "ОЮЯБЮ Я БЮЬЮРЮ ЯНАЯРБЕМЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "б ЯКСВЮИ ВЕ ЛХЬЙЮРЮ БХ Е ЯЕПХИМЮ, ЫЕ РПЪАБЮ ЯЗЫН РЮЙЮ ДЮ ЙЮФЕРЕ\n"
+#~ "МЮ DrakX МЮ ЙНИ ОНПР Е ЯБЗПГЮМЮ РЪ."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "рЮГХ ЯЕЙЖХЪ Е ОНЯБЕРЕМЮ МЮ МЮЯРПНИЙЮРЮ МЮ КНЙЮКМЮРЮ ЛПЕФЮ\n"
+#~ "(LAN) ХКХ ЛНДЕЛ.\n"
+#~ "\n"
+#~ "хГАЕПЕРЕ \"кНЙЮКМЮ ЛПЕФЮ\" Х DrakX ЫЕ\n"
+#~ "НОХРЮ ДЮ МЮЛЕПХ Ethernet ЮДЮОРЕПЮ МЮ ЛЮЬХМЮРЮ БХ. PCI aДЮОРЕПХРЕ\n"
+#~ "ЫЕ АЗДЮР НРЙПХРХ Х МЮЯРПНЕМХ ЮБРНЛЮРХВМН.\n"
+#~ "нАЮВЕ, ЮЙН ОЕПХТЕПХЪРЮ БХ Е ISA, РНБЮ МЪЛЮ ДЮ ЯРЮМЕ Х ЫЕ РПЪАБЮ\n"
+#~ "ДЮ ХГАЕПЕРЕ ДПЮИБЕП НР ЯОХЯЗЙЮ, ЙНИРН ЫЕ ЯЕ ОНЪБХ ЯКЕД РНБЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "гЮ SCSI ЮДЮОРЕПХРЕ, МЮ ОЗПБН БПЕЛЕ ОПНАБЮИРЕ ДЮ ЦН ГЮЯЕВЕРЕ\n"
+#~ "МН, ЮЙН РНБЮ МЕ ЯРЮМЕ, ХГАЕПЕРЕ РНГХ ДПЮИБЕП, ЙНИРН ЯРЕ БГЕКХ\n"
+#~ "НР ДНЙСЛЕМРЮЖХЪРЮ ОПЕДНЯРЮБЕМЮ БХ Я РНГХ\n"
+#~ "УЮПДСЕП.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН ХМЯРЮКХПЮРЕ Linux-Mandrake ЯХЯРЕЛЮ МЮ ЛЮЬХМЮ, ЙНЪРН Е ВЮЯР\n"
+#~ "НР БЕВЕ ЯЗЫЕЯРБСБЮЫЮ ЛПЕФЮ, ЮДЛХМХЯРПЮРНПЗР МЮ ЛПЕФЮРЮ АХ РПЪАБЮКН\n"
+#~ "ДЮ БХ Е ДЮК МЕНАУНДХЛЮРЮ ХМТНПЛЮЖХЪ (IP ЮДПЕЯ Х ЛПЕФНБЮ Submask ХКХ\n"
+#~ "Netmask ГЮ ОН-ЙПЮРЙН, Х ХЛЕ МЮ ЛЮЬХМЮРЮ). юЙН ЯКЮЦЮРЕ ВЮЯРМЮ ЛПЕФЮ\n"
+#~ "БЙЗЫХ МЮОПХЛЕП, ЫЕ БХ ЯЕ МЮКНФХ ДЮ ХГАЕПЕРЕ\n"
+#~ "ЮДПЕЯХ.\n"
+#~ "\n"
+#~ "\n"
+#~ "хГАЕПЕРЕ \"мЮАХПЮМЕ Я ЛНДЕЛ\", ГЮ ДЮ АЗДЕ МЮЯРПНЕМЮ БПЗГЙЮРЮ\n"
+#~ "БХ ОН хМРЕПМЕР. DrakX ЫЕ НОХРЮ ДЮ МЮЛЕПХ ЛНДЕЛЮ БХ, МН, ЮЙН МЕ\n"
+#~ "СЯОЕЕ, ЫЕ РПЪАБЮ БХЕ ДЮ ХГАЕПЕРЕ ЯЕПХИМХЪ ОНПР, ЙЗЛ ЙНИРН Е\n"
+#~ "ЯБЗПГЮМ БЮЬХЪ ЛНДЕЛ."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linux ЛНФЕ ДЮ ХГОНКГБЮ ЛМНЦН БХДНБЕ ОПХМРЕПХ. бЯЕЙХ НР РЕГХ\n"
+#~ "БХДНБЕ ХГХЯЙБЮ ПЮГКХВМЮ МЮЯРПНИЙЮ. нРАЕКЕФЕРЕ НАЮВЕ, ВЕ ОН ОНДПЮГАХПЮМЕ\n"
+#~ "ОНДЮБЮЫЮРЮ ОПНЦПЮЛЮ МЮ ОПХМРЕПЮ ХГОНКГБЮ 'lp' ЙЮРН ХЛЕ МЮ ОПХМРЕПЮ; РЮЙЮ ВЕ\n"
+#~ "РПЪАБЮ ДЮ ХЛЮРЕ ОПХМРЕП Я РНБЮ ХЛЕ; МН БХЕ ЛНФЕРЕ ДЮ ДЮДЕРЕ МЪЙНКЙН\n"
+#~ "ХЛЕМЮ МЮ ОПХМРЕПЮ ЯХ НРДЕКЕМХ ЯЗЯ ЯХЛБНКЮ '|'.\n"
+#~ "рЮЙЮ ВЕ, ЮЙН ОПЕДОНВХРЮРЕ ОН-ЯЛХЯКЕМН ХЛЕ, ОПНЯРН ЫЕ РПЪАБЮ ДЮ\n"
+#~ "ЦН ЯКНФХРЕ ОЗПБН, МЮОП.: \"My Printer|lp\".\n"
+#~ "оПХМРЕПЗР, ЙНИРН ХЛЮ \"lp\" Б ХЛЕ(РН/МЮРЮ) ЯХ ЫЕ АЗДЕ ОПХМРЕПЮ ОН "
+#~ "ОНДПЮГАХПЮМЕ.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН ОПХМРЕПЗР БХ Е ТХГХВЕЯЙХ ЯБЗПГЮМ ЙЗЛ ЙНЛОЧРЗПЮ БХ, ХГАЕПЕРЕ\n"
+#~ "\"кНЙЮКЕМ ОПХМРЕП\". рНЦЮБЮ ЫЕ РПЪАБЮ ДЮ СЙЮФЕРЕ ОНПРЮ, ЙЗЛ ЙНИРН\n"
+#~ "Е ЯБЗПГЮМ ОПХМРЕПЮ БХ, Х ДЮ ЛЮПЙХПЮРЕ ОНДУНДЪЫХЪ ТХКРЗП.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН ХЯЙЮРЕ ДНЯРЗО ДН ОПХМРЕП ЯБЗПГЮМ ЙЗЛ ДПСЦЮ Unix ЛЮЬХМЮ, ЫЕ РПЪАБЮ\n"
+#~ "ДЮ ХГАЕПЕРЕ \"нРДЮКЕВЕМН lpd\". гЮ ДЮ ЦН МЮЙЮПЮРЕ ДЮ ПЮАНРХ, МЪЛЮ\n"
+#~ "ДЮ ЯЕ МСФДЮЕРЕ НР ХЛЕ Х ОЮПoКЮ, МН ЫЕ РПЪАБЮ ДЮ ГМЮЕРЕ ХЛЕРН МЮ\n"
+#~ "НОЮЬЙЮРЮ ГЮ ОЕВЮРЮМЕ МЮ РНГХ ЯЗПБЗП.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН ХЯЙЮРЕ ДНЯРЗО ДН SMB ОПХМРЕП (ЙНЕРН ГМЮВХ ОПХМРЕП МЮЛХПЮЫ ЯЕ МЮ\n"
+#~ "НРДЮКЕВЕМЮ Windows 9x/NT ЛЮЬХМЮ), ЫЕ РПЪАБЮ ДЮ ГМЮЕРЕ МЕЦНБНРН\n"
+#~ "SMB ХЛЕ (МЕ TCP/IP ХЛЕРН), Х ЕБЕМРСЮКМН IP ЮДПЕЯЮ ОКЧЯ ОНРПЕАХРЕКЯЙН\n"
+#~ "ХЛЕ, ПЮАНРМЮ ЦПСОЮ Х ОЮПНКЮ МЕНАУНДХЛХ ГЮ ДНЯРЗОЮ ДН МЕЦН, ЙЮЙРН Х,\n"
+#~ ", ПЮГАХПЮ ЯЕ, ХЛЕРН МЮ ОПХМРЕПЮ. яЗЫНРН ЯЕ НРМЮЯЪ Х ГЮ NetWare ОПХМРЕП,\n"
+#~ "НАЮВЕ АЕГ ДЮ ХЛЮРЕ МСФДЮ НР ХЛЕ МЮ ПЮАНРМЮ ЦПСОЮ."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "цНПЕЫН БХ ОПЕОНПЗВБЮЛЕ ДЮ НРЦНБНПХРЕ Я \"дЮ\" РСЙ. юЙН ХМЯРЮКХПЮРЕ\n"
+#~ "Microsoft Windows ОН-ЙЗЯМН, РНИ ЫЕ ОПЕГЮОХЬЕ boot-ЯЕЙРНПЮ.\n"
+#~ "юЙН МЕ ЯЗГДЮДЕРЕ ЯОЮЯХРЕКМЮ ДХЯЙЕРЮ ЙЮЙРН Е ОПЕОНПЗВЮМН, ОНБЕВЕ МЪЛЮ\n"
+#~ "ДЮ ЛНФЕРЕ ДЮ ЯРЮПРХПЮРЕ ЯХЯРЕЛЮРЮ Б GNU/Linux."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "оПЕЛЕЯРЕРЕ РНОВЕРН !"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "дЮ ГЮАПЮБЪ КХ ОПНЛЕМХРЕ?"
+
+#~ msgid "Cable connection"
+#~ msgstr "йЮАЕКМЮ БПЗГЙЮ"
+
+#~ msgid "Host name:"
+#~ msgstr "хЛЕ МЮ УНЯР:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "йЮЙЗБ РХО ЛХЬЙЮРЮ ХЛЮРЕ ?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "юБРНЛЮРХВМХ ЯРНИМНЯРХ МЮ ПЮГДЕКХРЕКМЮ ЯОНЯНАМНЯР"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "гЮ ДЮ МЮЛЕПЪ ПЮГДЕКХРЕКМХРЕ ЯОНЯНАМНЯРХ МЮ ЛНМХРНПЮ бХ, ЫЕ НОХРЮЛ Я МЪЙНКЙН "
+#~ "ПЮГКХВМХ.\n"
+#~ "еЙПЮМЗР бХ ЫЕ ЯЕ ХГВХЯРХ...\n"
+#~ "лНФЕРЕ ДЮ ЦН ХГЙКЧВХРЕ, ЮЙН ХЯЙЮРЕ, ЙНЦЮРН Е ЦНРНБН ЫЕ ВСЕРЕ ЮКЮПЛЮРЮ"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "лНЦЮ ДЮ НОХРЮЛ ДЮ МЮЛЕПЪ УЮПЮЙРЕПМХРЕ ГЮ ЛНМХРНПЮ бХ ПЮГДЕКХРЕКМХ "
+#~ "ЯОНЯНАМНЯРХ (МЮОПХЛЕП: 800x600).\n"
+#~ "оНМЪЙНЦЮ, НАЮВЕ, РНБЮ ЛНФЕ ДЮ ГЮАХЕ ЛЮЬХМЮРЮ.\n"
+#~ "хЯЙЮРЕ КХ ДЮ НОХРЮРЕ?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "мЕ ЯЮ НРЙПХРЕ БЮКХДМХ ПЕФХЛХ\n"
+#~ "нОХРЮИРЕ Я ДПСЦЮ БХДЕН ЙЮПРЮ ХКХ ЛНМХРНП"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "юБРНЛЮРХВМН РЗПЯЕМЕ МЮ ПЮГДЕКХРЕКМЮРЮ ЯОНЯНАМНЯР"
+
+#~ msgid "dhcpd"
+#~ msgstr "DHCPD"
+
+#~ msgid "pump"
+#~ msgstr "PUMP"
+
+#~ msgid "dhcpxd"
+#~ msgstr "DHCPXD"
+
+#~ msgid "dhcp-client"
+#~ msgstr "DHCP-Client"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB ЛХЬЙЮ"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB ЛХЬЙЮ (2 АСРНМЮ)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB ЛХЬЙЮ (3+ АСРНМЮ)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB ЛХЬЙЮ"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB ЛХЬЙЮ (2 АСРНМЮ)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB ЛХЬЙЮ (3+ АСРНМЮ)"
+
+#~ msgid "eneric Mouse"
+#~ msgstr "нАХЙМНБЕММЮ ЛХЬЙЮ"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus ЛХЬЙЮ"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus ЛХЬЙЮ"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus ЛХЬЙЮ"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB ЛХЬЙЮ"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB ЛХЬЙЮ (3+ АСРНМЮ)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ХКХ ОН-МНБЮ (ЯЕПХИМЮ)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (ЯЕПХИМЮ)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (ЯЕПХИМЮ)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (ЯЕПХИМЮ)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "нАХЙМНБЕММЮ ЛХЬЙЮ (ЯЕПХИМЮ)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft-ЯЗБЛЕЯРЛЮ (ЯЕПХИМЮ)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "нАХЙМНБЕММЮ 3-АСРНММЮ ЛХЬЙЮ (ЯЕПХИМЮ)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington THinking Mouse (serial)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr ""
+#~ "рПЪАБЮ ДЮ МЮЯРПНЪ ЛПЕФНБХЪ БХ ЮДЮОРЕП, ГЮ ДЮ ЯЕ ЯБЗПФЮ ЙЗЛ хМРЕПМЕР."
+
+#~ msgid ""
+#~ "Please choose which network adapter do you want to use to connect to "
+#~ "internet.\n"
+#~ "If you don't know, choose eth0.\n"
+#~ msgstr ""
+#~ "лНКЪ ХГАЕПЕРЕ ЙНИ ЛПЕФНБ ЮДЮОРЕП ДЮ ХГОНКГБЮЛ ГЮ БПЗГЙЮ ЙЗЛ хМРЕПМЕР.\n"
+#~ "юЙН МЕ ЦН ГМЮЕРЕ, ХГАЕПЕРЕ eth0.\n"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs ЛНМРХПЮМЕРН МЕ СЯОЪ"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "Socket"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX ЫЕ ЯЗГДЮДЕ МЮЯРПНИБЮЫХРЕ ТЮИКНБЕ Х ГЮ XFree 3.3 Х ГЮ XFree 4.0.\n"
+#~ "оН ОНДПЮГАХПЮМЕ ЯЕ ХГОНКГБЮ 4.0 , ГЮЫНРН ПЮАНРХ МЮ ОНБЕВЕ ЦПЮТХВМХ ЙЮПРХ.\n"
+#~ "\n"
+#~ "хЯЙЮРЕ КХ ДЮ ХГОПНАБЮРЕ XFree 3.3 ?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "йПХОРНЦПЮТХЪ"
+
+#~ msgid "Configure LAN"
+#~ msgstr "мЮЯРПНИЙЮ МЮ LAN"
+
+#~ msgid "End configuration"
+#~ msgstr "тХМЮКМЮ МЮЯРПНИЙЮ"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "мЕ СЯРЮМНБЪБЮИ ЛПЕФЮРЮ"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "хЯЙЮРЕ КХ ДЮ МЮЯРПНХРЕ ЯХЯРЕЛЮРЮ ЯХ ГЮ ПЮАНРЮ Б КНЙЮКМЮРЮ ЛПЕФЮ ?"
+
+#~ msgid "Show less"
+#~ msgstr "оНЙЮФХ ОН-ЛЮКЙН"
+
+#~ msgid "Show more"
+#~ msgstr "оНЙЮФХ ОНБЕВЕ"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "хМЯРЮКЮЖХЪ БЗПУС ЖЕКХЪ РБЗПД ДХЯЙ"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "URI ГЮ КНЙЮКЕМ ОПХМРЕП"
+
+#~ msgid "URI for Network printer"
+#~ msgstr "URI ГЮ ЛПЕФНБ ХМРЕПТЕИЯ"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "кНЙЮКМН ОЕВЮРЮЫН СЯРПНИЯРБН (URI)"
+
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "йЗЛ ЙНЕ URI СЯРПНИЯРБЮ Е ЯБЗПГЮМ ОПХМРЕПЮ БХ\n"
+#~ "(ГЮАЕКЕФЕРЕ, ВЕ parallel:/dev/lp0 Е ЕЙБХБЮКЕМРЕМ МЮ LPT1:) ?\n"
+
+#~ msgid "curly"
+#~ msgstr "ЙЗДПЮБ"
+
+#~ msgid "default"
+#~ msgstr "оН ОНДПЮГАХПЮМЕ"
+
+#~ msgid "tie"
+#~ msgstr "юЙРХБХПЮИ"
+
+#~ msgid "brunette"
+#~ msgstr "АПЧМЕРЙЮ"
+
+#~ msgid "girl"
+#~ msgstr "ЛНЛХВЕ"
+
+#~ msgid "woman-blond"
+#~ msgstr "АКНМДХМЙЮ"
+
+#~ msgid "automagic"
+#~ msgstr "ЮБРНЛЮЦХВЕМ"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "дЮДЕМН КХ БХ Е ХЛЕ МЮ УНЯР ?"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "яОЕЖХЖХЙЮЖХЪ МЮ кНЙЮКМЮРЮ лПЕФЮ"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "лНФЕРЕ ДЮ ХГАЕПЕРЕ ЙНИ ЛПЕФНБ C ЙКЮЯ ДЮ ХГОНКГБЮРЕ.\n"
+
+#~ msgid "Network:"
+#~ msgstr "лПЕФЮ:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "SяОНДЕКЪМЕ МЮ бПЗГЙЮРЮ Я хМРЕПМЕР - ГЮДЮБЮМЕ МЮ $device"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "ыЕ АЗДЕ ЙНМТХЦСПХПЮМ ЯКЕДМХЪР ХМРЕПТЕИЯ:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "бЯХВЙН Е ЙНМТХЦСПХПЮМН!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "йЮЙБН Е ОНДПЕФДЮМЕРН МЮ ЙКЮБХЮРСПЮРЮ бХ?"
+
+#~ msgid "Normal"
+#~ msgstr "мНПЛЮКМЮ"
+
+#~ msgid "Configure my card"
+#~ msgstr "мЮЯРПНИ ЙЮПРЮРЮ ЛХ"
+
+#~ msgid "pptp alcatel"
+#~ msgstr "PPTP Alcatel"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ PCMCIA ЙЮПРХ ?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ %s СЯРПНИЯРБЮ ?"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "лЮКЙЮ(%d Mb)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "мЮЯРПНИЙЮ МЮ ЛНДЕЛЮ"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "хЯЙЮРЕ КХ ДЮ МЮЯРПНХРЕ ЯХЯРЕЛЮРЮ ЯХ ГЮ ПЮАНРЮ Б ЛПЕФЮ ВПЕГ ЛНДЕЛ ?"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "хЯЙЮРЕ КХ ДЮ ЙНМТХЦСПХПЮРЕ ISDN БПЗГЙЮ ГЮ ЯХЯРЕЛЮРЮ бХ?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "дЮ ЯЕ НОХРЮЛ КХ ДЮ МЮЛЕПЪ PCI СЯРПНИЯРБЮ ?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "рЗПЯЪ root-ДЪК"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: рНБЮ МЕ Е root-ДЪК, ЛНКЪ ХГАЕПЕРЕ МЪЙНИ ДПСЦ."
+
+#~ msgid "No root partition found"
+#~ msgstr "мЪЛЮ МЮЛЕПЕМ root-ДЪК"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "мЕ ЛНЦЮ ДЮ ХГОНКГБЮЛ ОПЕДЮБЮМЕ АЕГ NIS domain"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "лНКЪ, ХГАЕПЕРЕ ДЪК ГЮ ЯБНИ root-ДЪК."
+
+#~ msgid "Autologin at startup"
+#~ msgstr "Autologin МЮ ЯХЯРЕЛЮРЮ"
+
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Autologin - хГАЕПХ ОНДПЮГАХПЮЫ ЯЕ ОНРПЕАХРЕК"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "мЪЛЮРЕ МХЙЮЙБХ windows ДЪКНБЕ!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "мЪЛЮРЕ ДНЯРЮРЗВМН ЛЪЯРН ГЮ Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "юБРНЛЮРХГХПЮМЮ"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "дНАПЕ ДНЬКХ Б LILO - МЮВХМЮ ДЮ ХГАЕПЕРЕ НОЕПЮЖХНММЮ ЯХЯРЕЛЮ !\n"
+#~ "\n"
+#~ "гЮ ДЮ ОНКСВХРЕ ЯОХЯЗЙ МЮ БЗГЛНФМНЯРХРЕ, МЮРХЯМЕРЕ <TAB>.\n"
+#~ "\n"
+#~ "гЮ ДЮ ГЮПЕДХРЕ ЕДМЮ НР РЪУ, МЮОХЬЕРЕ ХЛЕРН Х МЮРХЯМЕРЕ <ENTER> ХКХ ХГВЮЙЮИРЕ "
+#~ "%d ЯЕЙСМДХ ГЮ ЯРЮПРХПЮМЕ ОН ОНДПЮГАХПЮМЕ.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "цКЮБМХ НОЖХХ МЮ SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "рНБЮ ЯЮ ОЮПЮЛЕРПХРЕ МЮ SILO.\n"
+#~ "лНФЕРЕ ДЮ БЗБЕДЕРЕ НЫЕ ХКХ ДЮ ОПНЛЕМХРЕ ЯЗЫЕЯРБСБЮЫХРЕ."
+
+#~ msgid "This label is already in use"
+#~ msgstr "рНГХ ЕРХЙЕР БЕВЕ ЯЕ ХГОНКГБЮ"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "хМЯРЮКЮЖХЪРЮ МЮ SILO ОПНБЮКЕМЮ. оНЪБХ ЯЕ ЯКЕДМЮРЮ ЦПЕЬЙЮ:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX ЫЕ МЮОПЮБХ ОПНБЕПЙЮ ГЮ ЕДХМ ХКХ МЪЙНКЙН PCI SCSI ЮДЮОРЕПЮ.\n"
+#~ "юЙН НРПЙХЕ Х ГМЮЕ,ЙНИ ДПЮИБЕП ДЮ ХМЯРЮКХПЮ,ЫЕ ЦН МЮОПЮБХ\n"
+#~ "ЮБРНЛЮРХВМН АЕГ БЮЬЮ МЮЛЕЯЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН БЮЬХЪР SCSI ЮДЮОРЕП Е МЮ ISA board , ХКХ МЮ PCI board,МН DrakX\n"
+#~ "МЕГМЮЕ ЙНИ ДПЮИБЗП ДЮ ХГОНКГБЮ , ЫЕ АЗДЕРЕ ОНОХРЮМ ХЛЮРЕ КХ РЮЙХБЮ\n"
+#~ "ЮДЮОРЕПХ. юЙН МЪЛЮРЕ НРЦНБНПЕРЕ \"мЕ\".юЙН ХЛЮРЕ - \"дЮ\" Х ЫЕ ЯЕ ОНЙЮФЕ\n"
+#~ "ЯОХЯЗЙ Я ДПЮИБЕПХ.\n"
+#~ "рЮЛ ХГАЕПЕРЕ МЮИ-ОНДУНДЪЫХЪ ГЮ БЮЬХЪ ЮДЮОРЕП.\n"
+#~ "\n"
+#~ "\n"
+#~ "яКЕД РЮГХ ОПНЖЕДСПЮ, DrakX ЫЕ БХ ОНОХРЮ ХЯЙЮРЕ КХ ДЮ ЛНДХТХЖХПЮРЕ НОЖХХРЕ\n"
+#~ "ГЮ ЮДЮОРЕПЮ. оЗПБН ОПНАБЮИРЕ ДПЮИБЕПЮ ДЮ МЮЛЕПХ УЮПДСЕПЮ: НАХЙМНБЕМН ПЮАНРХ\n"
+#~ "ДНАПЕ.\n"
+#~ "\n"
+#~ "\n"
+#~ "юЙН КХ МЕ,МЕ ГЮАПЮБЪИРЕ ДЮ БГЕЛЕРЕ ХМТНПЛЮЖХЪРЮ НР ДНЙСЛЕМРЮЖХЪРЮ МЮ\n"
+#~ "ДПЮИБЕПЮ,ХКХ НР Windows."
+
+#~ msgid "Shutting down"
+#~ msgstr "хГЙКЧВБЮМЕ"
+
#~ msgid "useless"
#~ msgstr "МЕСОНРПЕАЪЕЛ"
@@ -4987,9 +7347,6 @@ msgstr "мЮЛХПЮМЕРН МЮ КХЯРЮ НРМЕЛЮ ЛЮКЙН БПЕЛЕ"
#~ "хЯЙЮРЕ КХ ДЮ ЦХ ХГОНКГБЮРЕ ? рПЪАБЮ ДЮ ХЛЮРЕ ОПЮБНРН ДЮ ЦХ ХГОНКГБЮРЕ ОНД "
#~ "Linux."
-#~ msgid "Recommended"
-#~ msgstr "оПЕОНПЗВХРЕКМЮ"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5009,9 +7366,6 @@ msgstr "мЮЛХПЮМЕРН МЮ КХЯРЮ НРМЕЛЮ ЛЮКЙН БПЕЛЕ"
#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
#~ "6.1 (Helios), Gold 2000 or 7.0 (Air)."
-#~ msgid "LILO Installation"
-#~ msgstr "LILO ХМЯРЮКЮЖХЪ"
-
#~ msgid "Do you want to use LILO?"
#~ msgstr "хЯЙЮРЕ КХ ДЮ ХГОНКГБЮРЕ LILO?"
@@ -5121,9 +7475,6 @@ msgstr "мЮЛХПЮМЕРН МЮ КХЯРЮ НРМЕЛЮ ЛЮКЙН БПЕЛЕ"
#~ msgid "Hurt me plenty"
#~ msgstr "яКЮАЮ ПЮАНРЮ"
-#~ msgid "Which usage do you want?"
-#~ msgstr "гЮ ЙЮЙБЮ ЖЕК БХ РПЪАБЮ ?"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "йНХ ОЮЙЕРХ ХЯЙЮРЕ ДЮ ХМЯРЮКХПЮРЕ?"
@@ -5161,11 +7512,5 @@ msgstr "мЮЛХПЮМЕРН МЮ КХЯРЮ НРМЕЛЮ ЛЮКЙН БПЕЛЕ"
#~ msgid "Linear (needed for some SCSI drives)"
#~ msgstr "кХМЕЕМ (МЕНАУНДХЛ ГЮ МЪЙНХ SCSI СЯРПНИЯРБЮ)"
-#~ msgid "Local Printer Options"
-#~ msgstr "нОЖХХ МЮ КНЙЮКМХЪ ОПХМРЕП"
-
-#~ msgid "Dialup with modem"
-#~ msgstr "мЮАХПЮМЕ Я ЛНДЕЛ"
-
#~ msgid "Local LAN"
#~ msgstr "кНЙЮКМЮ ЛПЕФЮ"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 8fa21767a..a77e4cea3 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-12-30 15:29+0100\n"
"Last-Translator: JaЯ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,43 +14,91 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Rummel"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Diuzit ur gartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Dibabit ur servijer X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "servijer X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennaЯ"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Kefluniadur goude staliaЯ"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Dibabit dibarzhoЫ ar servijer"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -73,39 +121,40 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastaЯ ho skramm\n"
" M'hoc'h eus douetaЯs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Skramm ket kefluniet"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "SpisterioЫ ket dibabet c'hoazh"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Mennout a rit amprouiЯ ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Da ziwall : arvarus eo amprouiЯ ar gartenn c'hrafek-maЯ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "AmprouiЯ ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -113,184 +162,168 @@ msgstr ""
"\n"
"klaskit kemmaЯ arventennoЫ 'zo"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "C'hoarvezet eo ur fazi :"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Kuitaat e %d eilenn"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Ha reizh eo ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "C'hoarvezet eo ur fazi, klaskit kemmaЯ arventennoЫ 'zo"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "SpisterioЫ emgefreek"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"A-benn kavout ar spisterioЫ hegerz e klaskin meur a hini.\n"
-"C'hwildaЯ a raio ho skramm...\n"
-"Gallout a rit e tizenaouiЯ ma fell deoc'h, klevet a rit ur bip pa vo echu"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioЫ"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Servijer XFree86 : %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Diskouez pep tra"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "SpisterioЫ"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Klask kavout ar spisterioЫ hegerz a c'hellan (da sk. 800x600).\n"
-"A-wechoЫ, evelato, e c'hell sac'haЯ an ardivink.\n"
-"Mennout a rit klask ?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Mod reizh ebet kavet\n"
-"Klaskit gant ur gartenn video pe ur skramm all"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "DibarzhoЫ donder liv"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "SpisterioЫ"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Servijer XFree86 : %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "O prientiЯ kefluniadur X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "KemmaЯ ar skramm"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "KemmaЯ ar gartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "KemmaЯ dibarzhoЫ ar servijer"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "KemmaЯ ar spister"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Klask ent emgefreek ar spisterioЫ"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Diskouez titouroЫ"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "AmprouiЯ adarre"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Kuitaat"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Petra a vennit ober ? "
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "DisoЯjal ar c'hemmoЫ"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Adereit ouzh %s evit bevaat ar c'hemmoЫ mar plij"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -298,227 +331,227 @@ msgstr ""
"KefluniaЯ ho urzhiataer evit laЯsaЯ X ent emgefreek pa loc'ho a c'hellaЯ.\n"
"Mennout a rit laЯsaЯ X pa adloc'hit ?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"KefluniaЯ ho urzhiataer evit laЯsaЯ X ent emgefreek pa loc'ho a c'hellaЯ.\n"
+"Mennout a rit laЯsaЯ X pa adloc'hit ?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Dibabit ar ment nevez"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Dibabit ar benveg a vennit staliaЯ"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 liv (8 bit)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mil liv (15 bit)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mil liv (16 bit)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milion a livioЫ (24 bit)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miliard a livioЫ (32 bit)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 ko"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 ko"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 Mo"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 Mo"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 Mo"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 Mo"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 Mo pe vuioc'h"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA standard, 640x480 da 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Gour-VGA, 800x600 da 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "rodellek"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "dre ziouer"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "frondenn"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "duardez"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "plac'h"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "meleganez"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "emhud"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Rann gentaЯ ar parzhadur loc'haЯ"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Rann gentaЯ ar bladenn (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliaЯ ar c'harger loc'haЯ ?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Staliadur LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
#, fuzzy
msgid "None"
msgstr "Graet"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Pe garger(ien) loc'haЯ a vennit imlijout ?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "DibarzhoЫ pennaЯ ar c'harger loc'haЯ"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Trobarzhell loc'haЯ"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoЫ kozh)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Gedvezh kent loc'haЯ ar skeudenn dre ziouer"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Gedvezh kent loc'haЯ ar skeudenn dre ziouer"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoЫ al linenn urzhiaЯ"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "DibarzhoЫ pennaЯ ar c'harger loc'haЯ"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoЫ al linenn urzhiaЯ'' hep tremenger"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "An tremegerioЫ ne glot ket"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -526,167 +559,356 @@ msgstr ""
"Setu da heul an enmontoЫ liesseurt.\n"
"Gallout a rit ouzhpennaЯ lod pe gemmaЯ a re a zo."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "OuzhpennaЯ"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Pe seurt enmont a vennit ouzhpennaЯ"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "ReizhiadoЫ (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Pe seurt enmont a vennit ouzhpennaЯ"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "ReizhiadoЫ (windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "OuzhpennaЯ"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lenn-skrivaЯ "
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Dre ziouer"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Mat eo"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Dilemel an enmont"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoЫ goullo"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Kavet etrefas %s %s"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Hag un all hoc'h eus ?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ket"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ya"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Gwelet titouroЫ periantel"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "O staliaЯ ur sturier evit kartenn %s %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(mollad %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Pe sturier %s a zlefen amprouiЯ ?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"E degouezhoЫ 'zo, ar sturier %s en deus ezhomm titouroЫ ouzhpenn evit mont\n"
+"en-dro reizh, daoust ma da en-dro mat hepto peurvuiaЯ. Ha mennout a rit "
+"spisaat\n"
+"dibaboЫ ouzphenn evitaЯ, pe aotren d'ar sturier amprouiЯ ho penvek evit\n"
+"an titouroЫ en deus ezhomm ? A-wechoЫ, amprouiЯ a c'hell sac'haЯ un "
+"urzhiataer,\n"
+"hogen ne raio reuz ebet."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "EmbrouiЯ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Spisait dibarzhoЫ"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "BremaЯ e c'hellit pourvezaЯ e zibarzhoЫ d'ar mollad %s"
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"BremaЯ e c'hellit pourvezaЯ e zibarzhoЫ d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboЫ.\n"
+"Da skouer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "DibarzhoЫ ar mollad :"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"KargaЯ ar mollad %s a zo sac'het.\n"
+"Mennout a rit klask adarre gant arventennoЫ all ?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Degemer mat e %s, an dibaber reizhiad oberian~ !\n"
+"\n"
+"Evit rollan~ an dibabou aotreet, stokit <TAB>.\n"
+"\n"
+"Evit kargan~ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
+"eilenn evit al loc'han~ dre ziouer.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Degemer mat e GRUB an dibaber reizhiad oberia╓ !"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Implijit ar stokelloЫ %c ha %c evit diuz pe enmont zo war wel"
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Stokit enkas evit loc'ha╓ ar RK diuzet, 'e' evit aoza╓ an"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "urzhiado≈ kent loc'ha╓, pe 'c' evit ul linenn-urzhia╓."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Gorretaol"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Meuziad LaЯsaЯ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Kuitaat e %d eilenn"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "KrouiЯ"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Divarc'haЯ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Dilemel"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FurmadiЯ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "AdventaЯ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Poent marc'haЯ"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "SkrivaЯ /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "AdaozaЯ adalek ar restr"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "EnrollaЯ er restr"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Assevel adalek ar pladennig"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "EnrollaЯ war bladennig"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "SkaraЯ an holl"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "FurmadiЯ an holl"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Ac'hubiЯ ent emgefreek"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioЫ kentaЯ renk"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennaЯ parzhadur ebet ken"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -694,59 +916,63 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioЫ, lamit unan evit ma c'hellot krouiЯ ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Taolenn barzhaЯ saveteerezh"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "SkrivaЯ an daolenn barzhaЯ"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "AdkargaЯ"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "saveteiЯ"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Goullo"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "All"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "DisloaЯ"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Goullo"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "All"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoЫ restroЫ :"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "MunudoЫ"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -758,17 +984,17 @@ msgstr ""
"AliaЯ a ran ouzoc'h adventaЯ ar parzhadur-se\n"
"(klikit warni, da c'houde klikit war \"AdventaЯ\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoЫ da gentaЯ mar plij"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lennit aketus !"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -778,77 +1004,77 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroЫ ar bladenn"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-maЯ."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Fazi"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Poent marc'haЯ :"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Trobarzhell :"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiЯ : rann %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Ment: %d Mo"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Restr(oЫ) saveteiЯ : %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -856,80 +1082,80 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'haЯ MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "PladennoЫ RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiЯ : %s"
#
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Ment: %d Mo\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhaЯ : %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Marc'haЯ"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Bevaat"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "OuzhpennaЯ da RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "KemmaЯ RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Implij da saveteiЯ"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -941,7 +1167,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -955,64 +1181,65 @@ msgstr ""
"Ma vennit implijout ar merour loc'haЯ LILO, taolit pled da ouzhpennaЯ ur "
"parzhadur /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'haЯ'' da gentaЯ"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmaЯ seurt ar parzhadur %s, holl roadoЫ ar parzhadur-se a vo kollet"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Kuitaat hep enrollaЯ"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivaЯ an daolenn barzhaЯ ?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "KemmaЯ seurt ar parzhadur"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'haЯ ar restr saveteiЯ %s ?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'haЯ an drobarzhell %s ?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1020,139 +1247,144 @@ msgstr ""
"N'hellan ket dizober ar poent marc'haЯ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiЯ. Lamit ar saveteiЯ da gentaЯ"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiЯ ar parzhadur %s, holl roadoЫ ar parzhadur-se a vo kollet"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "O furmadiЯ"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiЯ ar restr saveteiЯ %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiЯ ar parzhadur %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Goude furmadiЯ an holl barzhadurioЫ,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "kollet e vo holl roadoЫ war ar parzhadurioЫ-se"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Dilec'hiaЯ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiaЯ ?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiaЯ ?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "O tilec'hiaЯ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "O tilec'hiaЯ ur parzhadur..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezaЯ skrivet war bladenn eo taolenn barzhaЯ an ardivink %s !"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'haЯ a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "O jediЯ bevennoЫ ar reizhiad restroЫ FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Oc'h adventaЯ"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Pe seurt parzhadur a vennit ?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziЯ holl roadoЫ ar parzhadur-se"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventaЯ ar parzhadur %s e vo kollet holl roadoЫ ar parzhadur-se"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "Mo"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "KrouiЯ ur parzhadur nevez"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Rann kregiЯ :"
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Ment e Mo :"
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroЫ :"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Dibarzh :"
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-maЯ evit saveteiЯ"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "SaveteiЯ"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiЯ :"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiЯ all endeo, dibabit unan all"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1160,11 +1392,11 @@ msgstr ""
"N'eo ket heЯvel ment an daolenn barzhaЯ gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1172,77 +1404,77 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoЫ ar bladennig-se"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhaЯ"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "live"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennaЯ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nevez"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiЯ er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiЯ %s er seurt %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "marc'haЯ NFS sac'het"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "marc'haЯ sac'het :"
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'haЯ %s : %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "PoentoЫ marc'haЯ a rank kregiЯ gant /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'haЯ %s endeo\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Marc'haЯ kelc'hiek %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriЯ %s evit skrivaЯ : %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1251,77 +1483,81 @@ msgstr ""
"krouiЯ reizhiadoЫ restroЫ nevez warni. Gwiriit abeg ar gudenn-maЯ en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Dibabit ho yezh muiaЯ-karet evit staliaЯ hag implijout ar reizhiad."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Dibabit ar reizhadur a glot gant ho stokellaoueg er roll a-us"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Dibabit ar reizhadur a glot gant ho stokellaoueg er roll a-us"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
+"\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Dibabit \"StaliaЯ\" ma n'eus ket a stumm kent Linux bet staliaet,\n"
-"pe ma vennit implijout meur a stumm pe a zasparzhadenn.\n"
"\n"
-"Dibabit \"Bremanaat\" ma vennit hizivaat ur stumm kent Mandrake Linux :\n"
-"5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"pe 7.0 (Air).\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-"Diuzit :\n"
"\n"
-" - Emgefreek : Ma n'hoc'h eus morse staliaet Linux a-raok, dibabit se. "
-"EVEZH :\n"
-" ne vo ket kefluniet a rouedad e-kerz ar staliadur, implijit "
-"\"LinuxConf\"\n"
-" evit kefluniaЯ unan goude diwezh ar staliadur.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Neuziet : Ma 'z oc'h kustumet a-walc'h gant GNU/Linux, tu vo neuze "
-"deoc'h\n"
-" dibab an implij pennaЯ evit ho ardivink. Sellit a-is evit munudoЫ.\n"
"\n"
-" - Mailh : Ma 'z oc'h en ho pleud gant GNU/Linux ha mennet da seveniЯ\n"
-" ur staliadur neuziet-tre. Evel evit ar renkad staliaЯ \"Neuziet\" e vo\n"
-" tu deoc'h diuz an implij evit hor reizhiad.\n"
-" Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H OBER "
-"!\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1329,12 +1565,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Diuzit :\n"
"\n"
@@ -1342,37 +1579,35 @@ msgstr ""
"deoc'h\n"
" dibab an implij pennaЯ evit ho ardivink. Sellit a-is evit munudoЫ.\n"
"\n"
+"\n"
" - Mailh : Ma 'z oc'h en ho pleud gant GNU/Linux ha mennet da seveniЯ\n"
" ur staliadur neuziet-tre. Evel evit ar renkad staliaЯ \"Neuziet\" e vo\n"
" tu deoc'h diuz an implij evit hor reizhiad.\n"
-" Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H OBER "
-"!\n"
+" Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H OBER═!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"An dibaboЫ liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
"eus\n"
@@ -1399,161 +1634,347 @@ msgstr ""
"all.\n"
" Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, GNOME...).\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX a glasko da gentaЯ kavout unan pe vuioc'h a azasaer SCSI PCI.\n"
-"Ma gav anezhaЯ (pe anezho) ha ma oar pe sturier(ien) implijout, e (o)\n"
-"enlakaat a raio ent emgefreek.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
-"M'eo ho azasaer SCSI ur gartenn ISA, pe m'eo ur gartenn PCI hogen\n"
-"ne oar ket DrakX pe sturier implijout evit ar gartenn-se, pe n'hoc'h eus\n"
-"tamm azasaer SCSI ebet, goulennet e vo diganeoc'h neuze hag-eЯ hoc'h\n"
-"eus unan pe get. Ma n'hoc'h eus hini, eilgeriit \"Ket\". M'hoc'h eus\n"
-"unan pe vuioc'h, eilgeriit \"Ya\". Ur roll sturierien a zeuio neuze\n"
-"war wel, a vo ret deoc'h diuz unan anezho.\n"
"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"Goude m'ho po diuzet ar sturier, DrakX a c'houlenno ma vennit spisaat\n"
-"dibarzhoЫ evitaЯ. Da gentaЯ, klaskit leuskel ar sturier amprouiЯ\n"
-"ar periant : peurliesaЯ e da mat en-dro.\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
"\n"
-"Ma ne ra ket, na zisoЯjit ket an titouroЫ war ho periant a c'hellit\n"
-"kavout en ho teuliadur pe digant Windows (m'hoc'h eus hemaЯ war ho\n"
-"reizhiad), evel m'eo aliet gant ar sturlevr staliaЯ. An dibarzhoЫ a\n"
-"vo ret deoc'h pourvezaЯ d'ar sturier eo a zo e kaoz."
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"D'ar poent-maЯ, e c'hellit dibab pe barzhadur(ioЫ) implijout evit\n"
-"staliaЯ ho reizhiad Linux-Mandrake, ma 'z int bet termenet endeo (diwar\n"
-"ur staliadur kent Linux pe diwar ur benveg parzhaЯ all). E degouezhoЫ\n"
-"all, ret eo termeniЯ parzhadurioЫ ar bladenn galet. Talvezout a ra an\n"
-"obererezh-se kement ha rannaЯ dre meiz egor pladenn galet an urzhiataer\n"
-"e takadoЫ distag o implij.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"M'hoc'h eus da grouiЯ parzhadurioЫ nevez, implijit \"Ac'hubiЯ ent "
-"emgefreek\"\n"
-"a-benn krouiЯ parzhadurioЫ evit Linux ent engrefreek. Gallout a rit diuz\n"
-"ar bladenn da parzhaЯ dre glikaЯ war \"hda\" evit an drobarzhell IDE "
-"kentaЯ,\n"
-"\"hdb\" evit an eil pe \"sda\" evit an drobarzhell SCSI kentaЯ hag all.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Daou barzhadur boutin-tre a zo : ar parzhadur gwrizienn (/), a zo penn\n"
-"kentaЯ urzhaz renkelloЫ ar reizhiad restroЫ, ha /boot, a zo ennaЯ an holl\n"
-"restroЫ ret evit loc'haЯ ar reizhiad korvoiЯ p'emeur o paouez enaouiЯ\n"
-"an urzhiataer.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Gant ma n'heller ket diverkaЯ efedoЫ an argerzh-maЯ, parzhaЯ a c'hell\n"
-"bezaЯ abafus ha bec'hius d'an arveriad deraouat. DiskDrake a aesa kement\n"
-"an argerzh ha n'eus ket aon da gaout. Sellit ouzh an teuliadur hag it\n"
-"war ho pouez a-raok kregiЯ ganti.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"Gallout a rit tizhout kement dibarzh 'zo gant ar stokelloЫ : merdeiЯ dre ar "
-"parzhadurioЫ\n"
-"gant Tab ha biroЫ Laez/TraoЯ. P'hoc'h eus diuzet ur parzhadur, grit gant :\n"
"\n"
-"- Ctrl-c evit krouiЯ ur parzhadur nevez (m'eo goullo ar parzhadur diuzet)\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
-"- Ctrl-d evit lemel ur parzhadur\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-m evit termeniЯ ar poent marc'haЯ\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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Kement parzhadur a zo bet nevez termenet a zle bezaЯ furmadet a-benn\n"
-"e implijout (furmadiЯ a dalvez krouiЯ ur reizhiad restroЫ). Er poent-se,\n"
-"e c'hellit mennout adfurmadiЯ parzhadurioЫ 'zo o vezaЯ endeo evit diverkaЯ\n"
-"ar roadoЫ a zo enno. Ho evezh : n'eo ket ret adfurmadiЯ parzhadurioЫ o\n"
-"vezaЯ endeo, dreist-holl ma 'z eus enno restroЫ pe roadoЫ a vennit "
-"derc'hel.\n"
-"SkouerioЫ dibar eo /home ha /usr."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Gallout a rit bremaЯ diuz ar strollad pakadoЫ a vennit\n"
"staliaЯ pe vremanaat.\n"
@@ -1567,138 +1988,153 @@ msgstr ""
"\"Diuz pakadoЫ unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
"a-dreuz tremen 1000 pakad..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"M'hoc'h eus an holl CDoЫ er roll a-is, gwaskit Mat eo.\n"
"Ma n'hoc'h eus hini eus ar CDoЫ-se, gwaskit NullaЯ.\n"
"Ma fazi deoc'h lod eus ar CDoЫ, andiuzit anezho ha gwaskit Mat eo."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"EmaЯ ar pakadoЫ diuzet o vezaЯ staliaet bremaЯ. Un nebeut munut\n"
-"e zlefe padout an obererezh-se nemet m'ho pije dibabet bremanaat\n"
-"ur reizhiad o vezaЯ, en degouezh-se e c'hell kemer muioc'h a amzer\n"
-"zoken a-raok na grogfe ar bremanaat."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Ma ne c'hell ket DrakX kavout ho logodenn, pe ma vennit\n"
-"gwiriaЯ pezh en deus graet, kinniget e vo deoc'h ur roll\n"
-"logodennou a-us.\n"
-"\n"
-"\n"
-"Ma 'z oc'h a-du gant kefluniadur DrakX, n'hoc'h eus ken nemet lammat\n"
-"d'ar rann a fell deoc'h en ur glikaЯ el laЯser a gleiz. Mod all,\n"
-"dibabit el laЯser ar seurt logodenn a gav deoc'h ez eo hini a zegouezh\n"
-"ar gwellaЯ evit ho logodenn.\n"
-"\n"
-"Ma 'z eo ul logodenn a-steud, ret e vo ivez deoc'h lavaret da DrakX\n"
-"war be borzh a-steud eo luget ho logodenn."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
-"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Gouestlet eo ar rann-maЯ da gefluniaЯ ur rouedad takad lec'hel\n"
-"(LAN) pe ur modem.\n"
-"\n"
-"Dibabit \"Rouedad lec'hel\" ha DrakX a glasko kavout un azasaer\n"
-"Ethernet war ho ardivink. Azasaerien PCI a zlefe bezaЯ kavet\n"
-"ha deraouekaet ent emgefreek. Evelato, m'eo ho trobarzhell unan ISA,\n"
-"ne daio ket en-dro an emzinoiЯ, hag e vo ret deoc'h diuz ur sturier\n"
-"diwar ar roll a zeuio war wel neuze.\n"
-"\n"
-"\n"
-"Evel evit azasaerien SCSI e c'hellit leuskel ar sturier amprouiЯ\n"
-"an azasaer ar wech kentaЯ, mod all e vo ret deoc'h spisaat d'ar\n"
-"sturier dibarzhoЫ ho pije tapet diwar teuliadur ho periant.\n"
-"\n"
-"\n"
-"Ma stalhit ur reizhiad Linux-Mandrake war un ardivink a zo\n"
-"lodek en ur rouedad a zo c'hoazh, merour ar rouedad en devo\n"
-"roet deoc'h an holl titouroЫ ret (chomlec'h IP, ismaskl rouedad\n"
-"pe verroc'h rouedmaskl, hag anv ostiz). M'emaoc'h o sevel ur\n"
-"rouedad prevez er gЙr da skouer, mat e vije deoc'h dibab\n"
-"chomlec'hioЫ \n"
-"\n"
-"Dibabit \"SifrennaЯ gant ar modem\" hag e vo kefluniet ar gevreadenn\n"
-"ouzh ar Genrouedad gant ur modem. Klask a raio DrakX kavout ho modem,\n"
-"ma ne teu ket a-benn e vo ret deoc'h diuz ar porzh a-steud m'eo luget\n"
-"ho modem outaЯ."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Gallout a rit bremaЯ skrivaЯ dibarzhoЫ sifrennaЯ. Ma n'oc'h ket sur petra\n"
+"skrivaЯ, an titouroЫ reizh ho po digant ho PMG."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Skrivit :\n"
"\n"
@@ -1715,7 +2151,23 @@ msgstr ""
"IP\".\n"
"M'hoc'h eus douetaЯs, goulennit digant merour ho rouedad.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
+"goulennit\n"
+"digant merour ho rouedad."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1723,7 +2175,7 @@ msgstr ""
"Gallout a rit bremaЯ skrivaЯ dibarzhoЫ sifrennaЯ. Ma n'oc'h ket sur petra\n"
"skrivaЯ, an titouroЫ reizh ho po digant ho PMG."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1731,13 +2183,15 @@ msgstr ""
"Ma implijit proksioЫ, keflugnit anezho bremaЯ mar plij. Ma ne ouzit ket hag\n"
"e rankit implijout proksioЫ, goulennit digant merour ho rouedad pe ho PMG."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1749,13 +2203,19 @@ msgstr ""
"Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
"lezennoЫ o ren du-se."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"BremaЯ e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennaЯ.\n"
"\n"
@@ -1763,15 +2223,22 @@ msgstr ""
"Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiЯ a ra\n"
"en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"BremaЯ e c'hellit diuz pe servijoЫ a vennit e vije laЯset pa loc'her.\n"
"Pa zeu ho logodenn war un draez, ul lagadenn skoazell a zeuio war wel hag\n"
@@ -1782,80 +2249,159 @@ msgstr ""
"ket\n"
"c'hoant."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Linux a oar en em zibab gant kalz a seurtoЫ moullerezed. Pep hini eus\n"
-"ar seurtoЫ-se en deus ezhomm ur c'hefluniadur disheЯvel. Taolit evezh\n"
-"avat ar spooler moullaЯ a laka 'lp' da anv ar voullerrez dre ziouer ;\n"
-"ret eo deoc'h eta kaout ur voullerez gant an anv-se ; hogen meur a anv,\n"
-"pep hini dsipartiet gant an arouezenn '|', a c'hellit reiЯ d'ur voullerez.\n"
-"Neuze, mar kavit gwelloc'h bezaЯ un anv splannoc'h, n'hoc'h eus ken nemet\n"
-"e lakaat da gentaЯ, da sk. \"Ma Voullerez|lp\".\n"
-"Ar voullerez he deus \"lp\" en he anv(ioЫ) a vo hini dre ziouer.\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
"\n"
"\n"
-"M'eo luget ho moullerez end-eeun ouzh ho urzhiataer, diuzit\n"
-"\"Moullerez lec'hel\". Neuze e rankot lavaret ouzh be borzh eo\n"
-"luget ho moullerez, ha diuz ar sil a zere.\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
-"Ma vennit tizhout ur voullerez a zo lec'hiet war un ardivink Unix\n"
-"a-bell, rankout a reot diuz \"lpd a-bell\". Evit ma 'z afe en-dro,\n"
-"n'eus ezhomm nag anv na tremenger, hogen e rankot anavezout anv\n"
-"ar steud moullaЯ war ar servijer-se.\n"
"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
-"Ma vennit tizhout ur voullerez SMB (da lavaret eo ur voullerez\n"
-"lec'hiet war un ardivink Windows 9x/NT a-bell), e rankot spisaat\n"
-"e anv SMB (n'eo ket e anv TCP/IP), ha marteze e chomlec'h IP, mui\n"
-"an anv arveriad, ar strollad labour hag an tremenger ret a-benn tizhout\n"
-"ar voullerez, hag evel-just anv ar voullerez. HeЯvel tra evit ur\n"
-"voullerez NetWare, war-bouez titour ar strollad labour a zo diezhomm."
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:567
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"BremaЯ e c'hellit skrivaЯ an tremenger root evit ho reizhiad\n"
"Linux-Mandrake. An tremenger a zle bezaЯ roet div wech evit\n"
@@ -1872,7 +2418,7 @@ msgstr ""
"pe re luziet, memestra : dav eo deoc'h kaout soЯj anezhaЯ hep re a\n"
"strivoЫ."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1881,7 +2427,7 @@ msgstr ""
"kuzhet\"\n"
"hag \"Implijout tremegerioЫ MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1890,7 +2436,7 @@ msgstr ""
"goulennit\n"
"digant merour ho rouedad."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1934,22 +2480,18 @@ msgstr ""
"gont arveriad ho po krouet amaЯ, hag ereaЯ evel root evit kefridioЫ a\n"
"vererezh ha trezerc'hel hepken."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Mar plij, me ho ped, respontit \"Ya\" amaЯ ! Lakaomp da skouer e\n"
-"adstalhit Windows diwezhatoc'h hag e rasklo ar rann loc'haЯ. Nemet\n"
-"m'ho pije graet ar bladenn loc'haЯ evel aliet, ne viot ket evit\n"
-"loc'haЯ Linux e mod ebet ken !"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1962,7 +2504,7 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentaЯ\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1970,10 +2512,11 @@ msgstr ""
"Nemet ma ouifec'h a-zevri ez eo disheЯvel, \"/dev/hda\" eo an dibab boas\n"
"(pladenn IDE mestr kentaЯ) pe \"/dev/sda\" (pladenn SCSI kentaЯ)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
+#, fuzzy
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1996,7 +2539,8 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'haЯ evit loc'haЯ anezho."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2013,7 +2557,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"Setu dibaboЫ pennaЯ LILO ha grub :\n"
@@ -2036,10 +2582,73 @@ msgstr ""
" * boas : a ziuz ar mod skrid 80x25 boas.\n"
" * <niver> : a implij ar mod skrid a zegouezh."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+#, fuzzy
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"LILO (the LInux LOader) ha Grub a zo kargerien loc'haЯ : barrek int da "
+"loc'haЯ\n"
+"pe Linux pe forzh pe reizhiad korvoiЯ all bezaЯt war ho urzhiataer.\n"
+"PeurvuiaЯ, ar reizhiadoЫ korvoiЯ all-se a vez dinoet ha staliet reizh.\n"
+"Ma n'eo ket kont evel-hen, gallout a rit ouzhpennaЯ un enmont gant an dorn\n"
+"er skramm-maЯ. Taolit pled da zibab an arventennoЫ reizh.\n"
+"\n"
+"\n"
+"Gallout a rafec'h ivez mennout na lakaat hegerz hini ebet eus ar reizhiadoЫ\n"
+"korvoiЯ-se, neuze n'hoc'h eus ken nemet dilemel an enmontoЫ a zegouezh. "
+"Hogen\n"
+"neuze e vo ret deoc'h kaout ur bladennig loc'haЯ evit loc'haЯ anezho."
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"Setu dibaboЫ pennaЯ LILO ha grub :\n"
+" - Trobarzhell loc'haЯ : a dermen anv an drobarzhell (da sk. parzhadur\n"
+"ur bladenn galet) a zo enni ar rann loc'haЯ. Nemet ma ouifec'h a-zevri\n"
+"ez eo disheЯvel, dibabit \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Gedvezh a-raok loc'haЯ ar skeudenn dre ziouer : a spisa an niver a\n"
+"zekvet eilennoЫ a rankfe gortoz ar c'harger loc'haЯ kent loc'haЯ ar "
+"skeudenn\n"
+"gentaЯ. Talvoudus eo war reizhiadoЫ a loc'h diouzhtu adalek ar bladenn "
+"galet\n"
+"goude bezaЯ enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'haЯ m'eo\n"
+"disoЯjet \"gedvezh\" pe dermenet da mann.\n"
+"\n"
+"\n"
+" - Mod video : a spisa ar mod skrid VGA a rankfe bezaЯ diuzet pa loc'her.\n"
+"An talvoudoЫ a heul a zo hegerz :\n"
+" * boas : a ziuz ar mod skrid 80x25 boas.\n"
+" * <niver> : a implij ar mod skrid a zegouezh."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2062,7 +2671,7 @@ msgstr ""
"sellet ha plijet oc'h gant an dibarzhoЫ. Ma n'oc'h ket, e c'hellit\n"
"mont war gil hag o c'hemmaЯ, ken lies gwech ha ma karot."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2070,7 +2679,7 @@ msgstr ""
"M'eo siek un dra bennak en ho kefluniadur X, implijit an dibarzhoЫ-se\n"
"a-benn kefluniaЯ reizh ar reizhiad X Window."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2078,42 +2687,47 @@ msgstr ""
"Ma kavit gwelloc'h implijout un ereadur grafikel, diuzit \"Ya\". Mod all,\n"
"diuzit \"Ket\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Gallout a rit bremaЯ diuz bibarzhoЫ a bep seurt evit ho reizhiad.\n"
"\n"
@@ -2154,7 +2768,7 @@ msgstr ""
"loc'her\n"
" diuzit an dibarzh-maЯ (Evezh : ne daio ket en-dro dre ret dindan X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2170,187 +2784,131 @@ msgstr ""
"ouzhpenn\n"
"mar plij."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Dibabit ho yezh"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Diuzit renkad ar staliadur"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "DinoiЯ ar bladenn galet"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "KefluniaЯ al logodenn"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Dibabit ho stokellaoueg"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "A bep seurt"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "KefluniaЯ reizhiadoЫ restroЫ"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "FurmadiЯ parzhadurioЫ"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Dibabit pakadoЫ da staliaЯ"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "StaliaЯ ar reizhiad"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "KefluniaЯ ur rouedad"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Rinegouriezh"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "KefluniaЯ an takad-eur"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "KefluniaЯ servijoЫ"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "KefluniaЯ ar voullerez"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "TermeniЯ tremenger root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "OuzhpennaЯ un arveriad"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "KrouiЯ ur bladennig loc'haЯ"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "StaliaЯ ar c'harger loc'haЯ"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "KefluniaЯ X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Pladennig staliaЯ emgefreek"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Dilezel ar staliadur"
-#: ../../install2.pm_.c:337
-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 ""
-"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
-"Evit se, krouit ur parzhadur (pe glikit war unan a zo c'hoazh).\n"
-"Da c'houde dibabit an ober ``Poent marc'haЯ'' ha lakait anezhaЯ da `/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"N'hellaЯ ket lenn ho taolenn barzhaЯ, re vrein eo evidon :(\n"
-"Klask a rin kenderc'hel en ur ziverkaЯ ar parzhadurioЫ siek"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Fazi en ur lenn ar restr $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhaЯ.\n"
-"Kendalc'hit war ho mar !"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "O klask ar parzhadur gwrizienn."
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "TitouroЫ"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s : N'eo ket ur parzhadur gwrizienn, diuzit un all mar plij."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Parzhadur gwrizienn kavet ebet"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "N'hellaЯ ket implijout ar skignaЯ hep domani NIS"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Fazi en ur lenn ar restr $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Degouezhet ez eus ur fazi, hogen n'ouzon ket e veraЯ naet.\n"
-"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Poent marc'haЯ doubl %s"
-
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
+"Ret eo deoc'h kaout ur parzhadur gwrizienn.\n"
+"Evit se, krouit ur parzhadur (pe glikit war unan a zo c'hoazh).\n"
+"Da c'houde dibabit an ober ``Poent marc'haЯ'' ha lakait anezhaЯ da `/'"
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Degemer e %s"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Lenner pladennig hegerz ebet"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "O kregiЯ gant al lankad `%s'\n"
-
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Ret eo deoc'h kaout ur parzhadur disloaЯ"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2360,98 +2918,78 @@ msgstr ""
"\n"
"Kenderc'hel evelato ?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Dibabit ar ment a vennit staliaЯ"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Implij da saveteiЯ"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Ment hollek :"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Stumm : %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "O furmadiЯ parzhadurioЫ"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ment : %d Ko\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "O klask assevel an daolenn barzhaЯ"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Dibabit ar pakadoЫ a vennit staliaЯ"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "Implij da saveteiЯ"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "TitouroЫ"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "StaliaЯ"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Dibabit ar mentoЫ"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "O staliaЯ"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Ment ar parzhadur gwrizienn e Mo :"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Gortozit mar plij,"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Ment ar parzhadur disloaЯ e Mo :"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Amzer a chom"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Amzer hollek"
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "O prientiЯ ar staliadur"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "O jediЯ bevennoЫ ar reizhiad restroЫ FAT"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "O staliaЯ ar pakad %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Ur fazi a zo bet en ur rummaЯ pakadoЫ :"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Implijout ar c'hefluniadur o ren evit X11 ?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Dibabit unan eus ar renkadoЫ staliaЯ a-heul mar plij :"
-
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "N'hoc'h eus parzhadur windows ebet !"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "N'hoc'h eus ket a-walc'h a egor evit Lnx4win !"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
+#, fuzzy
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2466,33 +3004,148 @@ msgstr ""
"ar\n"
"parzhadur-se, ha gwareziЯ ho roadoЫ. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "Da beseurt rann e mennit dilec'hiaЯ ?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "Parzhadur"
+
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "AdventaЯ ent emgefreek sac'het"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Dibabit ar mentoЫ"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Ment ar parzhadur gwrizienn e Mo :"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Ment ar parzhadur disloaЯ e Mo :"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Goude adventaЯ ar parzhadur %s e vo kollet holl roadoЫ ar parzhadur-se"
+
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Mailh"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Gallout a rit bremaЯ parzhaЯ ho pladenn galet %s\n"
+"Pa 'z eo graet, na zisoЯjit ket enrollaЯ dre implijout `w'"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "N'hoc'h eus parzhadur windows ebet !"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "N'hellan ouzpennaЯ parzhadur ebet ken"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Seurt taolenn barzhaЯ : %s\n"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "O laЯsaЯ ar rouedad"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "O tizenaouiЯ ar rouedad"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Degouezhet ez eus ur fazi, hogen n'ouzon ket e veraЯ naet.\n"
+"Kendalc'hit war ho mar."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Poent marc'haЯ doubl %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Degemer e %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Lenner pladennig hegerz ebet"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "O kregiЯ gant al lankad `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Dibabit unan eus ar renkadoЫ staliaЯ a-heul mar plij :"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Ment hollek ar strolladoЫ hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2506,7 +3159,7 @@ msgstr ""
"Un dregantad izel a stalio hepken ar pakadoЫ pouezusaЯ;\n"
"un dregantad a 100%% a stalio an holl bakadoЫ diuzet."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2522,58 +3175,101 @@ msgstr ""
"Un dregantad izel a stalio hepken ar pakadoЫ pouezusaЯ;\n"
"un dregantad a %d%% a stalio kement a bakadoЫ ma 'z eus tu."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Dregantad a bakadoЫ da staliaЯ"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Dibabit ar pakadoЫ a vennit staliaЯ"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "TitouroЫ"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "StaliaЯ"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Sujedigezh emgefreek"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "PlegaЯ ar wezenn"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "GwintaЯ etre kompez ha rummet dre strollad"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Anv: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Stumm : %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Ment : %d Ko\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "N'hellit ket andiuz ar pakad-maЯ. Staliet eo endo"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Ar pakadoЫ a-heul a zo war-nes bezaЯ distaliet"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Ar pakadoЫ a-heul a zo war-nes bezaЯ staliet/lamet"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "N'hellit ket diuz/andiuz ar pakad-maЯ"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "HemaЯ a zo ur pakad ret, n'hell ket bezaЯ andiuzet"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-maЯ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2581,45 +3277,89 @@ msgstr ""
"Bremanaet e tle bezaЯ ar pabak-maЯ\n"
"Ha sur oc'h e mennit e ziuzaЯ ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-maЯ. Ret eo dezhaЯ bezaЯ bremanaet"
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "N'hellit ket andiuz ar pakad-maЯ. Staliet eo endo"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Ar pakadoЫ a-heul a zo war-nes bezaЯ staliet/lamet"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "N'hellit ket diuz/andiuz ar pakad-maЯ"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "O staliaЯ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "O vrasjediЯ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Gortozit mar plij,"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Amzer a chom"
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Amzer hollek"
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "NullaЯ"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "O prientiЯ ar staliadur"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U Mo"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "O staliaЯ ar pakad %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Aotren an arveriad"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2634,181 +3374,385 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emaЯ ket ganeoc'h gwaskit NullaЯ evit chom hep staliaЯ ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "AdventaЯ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Kenderc'hel evelato ?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Ur fazi a zo bet en ur rummaЯ pakadoЫ :"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliaЯ ar pakadoЫ :"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Ur fazi a zo bet"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Gallout a rit dibab yezhoЫ all hag a vo hegerz goude staliaЯ"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Parzhadur gwrizienn"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Renkad staliaЯ"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Pe renkad staliaЯ a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "StaliaЯ/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Emgefreek"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Neuziet"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Ha sur oc'h bezaЯ ur mailh ? \n"
"Na rit ket goap, traoЫ galloudus hogen arvarus a vo aotreet deoc'h amaЯ."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Boas"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "TitouroЫ"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Diorren"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Servijer"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Pe seurt a vo implij ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outaЯ, mar plij."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "O kefluniaЯ kartennoЫ PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "KefluniaЯ IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Dibabit ur parzhadur d'ober anezhaЯ ho parzhadur gwrizienn, mar plij."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Dibabit at poentoЫ marc'haЯ"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"N'hellaЯ ket lenn ho taolenn barzhaЯ, re vrein eo evidon :(\n"
+"Klask a rin kenderc'hel en ur ziverkaЯ ar parzhadurioЫ siek"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhaЯ.\n"
+"Kendalc'hit war ho mar !"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Parzhadur gwrizienn"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'haЯ evit ma talvezo kemmoЫ an daolenn barzhaЯ"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiЯ"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "GwiriaЯ ar bloc'hoЫ siek ?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "O furmadiЯ parzhadurioЫ"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiЯ hag o furmadiЯ ar restr saveteiЯ %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloaЯ evit peurstaliaЯ, kreskit anezhaЯ mar plij"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "O klask ar pakadoЫ hegerz"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "O kavout pakadoЫ da vremanaat"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliaЯ pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Boas"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%d Mo)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Erbedet"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Neuziet"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Dibabit ar ment a vennit staliaЯ"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoЫ"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Diuz pakadoЫ unan hag unan"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2818,12 +3762,12 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoЫ-se, gwaskit NullaЯ.\n"
"Ma fazi deoc'h lod eus ar CDoЫ, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2831,174 +3775,11 @@ msgstr ""
"O staliaЯ ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliaЯ"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "AdgefluniaЯ ar rouedad bremaЯ"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Na gefluniaЯ ar rouedad"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Kefluniet eo bet ar rouedad lec'hel endeo. Ha mennout a rit :"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Ha mennout a rit kefluniaЯ ur rouedad lec'hel evit ho reizhiad ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "KefluniaЯ ar modem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"Ha mennout a rit kefluniaЯ ur gevreadenn gervel dre modem evit ho reizhiad ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "O kefluniaЯ an drobarzhell rouedad %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Skrivit ar c'hefluniadur IP evit ar benveg-maЯ mar plij.\n"
-"Pep mellad a zlefe bezaЯ skrivet evel ur chomlec'h IP e stumm\n"
-"sifroЫ dekvel pikoЫ etrezo (da skouer 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP emgefreek"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "Chomlec'h IP :"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Maskl rouedad :"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Er furmad 1.2.3.4 e tlefe bezaЯ ar chomlec'h IP"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "KefluniaЯ ar rouedad"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Roit ho anv ostiz mar plij.\n"
-"Un anv peurzoareet a zlefe bezaЯ hini o ostiz,\n"
-"evel ``mabenveg.mastal.makomp.com''.\n"
-"Gallout a rit ivez reiЯ chomlec'h IP an dreuzell m'hoc'h eus unan"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Servijer DNS :"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Trobarzhell an dreuzell :"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Treuzell :"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Anv an ostiz :"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Klask kavout ur modem ?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "DibarzhoЫ sifrennaЯ"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Anv ar gevreadenn"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Niverenn bellgomz"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Anv ereaЯ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Dilesadur"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Diazezet war ur skrid"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Diazezet war un dermenell"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Anv domani"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Servijer DNS kentaЯ"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Eil servijer DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3070,88 +3851,94 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoЫ diwarnaЯ"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "O taremprediЯ ar melezour evit kaout roll ar pakadoЫ hegerz"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Dibabit ar pakadoЫ a vennit staliaЯ, mar plij."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "Pehini eo ho takad-eur ?"
+msgstr "Pe seurt a vo implij ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Pe seurt parzhadur a vennit ?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Implijout ur restr kuzhet"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "kuzhet"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Implijout tremegerioЫ MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Implijout NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "pajennoЫ melen"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaЯ)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "OuzhpennaЯ un arveriad"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3161,37 +3948,37 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Anv arveriad"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Arlun"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -3199,24 +3986,54 @@ msgstr ""
"An anv arveriad a zle bezaЯ ennaЯ lizherennoЫ munut, sifroЫ, `-' ha `_' "
"hepken"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Ur bladenn loc'haЯ neuziet a ro un tu da loc'haЯ ho reizhiad Linux hep "
+"bezaЯ\n"
+"dindan beli ar c'harger loc'haЯ boas. Talvoudus eo ma ne mennit ket staliaЯ "
+"LILO\n"
+"(pe grub) war ho reizhiad, pe ma skarzh ur reizhiad oberiaЯ LILO, pe ma ne\n"
+"da ket en-dro LILO war ho kefluniadur periantel. Ur bladenn loc'haЯ neuziet\n"
+"a c'hell ivez bezaЯ implijet gant ar skeudenn saveteiЯ Mandrake, en ur "
+"aesaat an\n"
+"assevel pa vefec'h sac'het grevus. Mennout a rit krouiЯ ur bladenn loc'haЯ "
+"evit\n"
+"ho reizhiad ?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Lenner pladennig kentaЯ"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3241,65 +4058,34 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'haЯ"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "O krouiЯ ar bladenn loc'haЯ"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Mennout a rit implijout SILO ?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "DibarzhoЫ pennaЯ SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Setu da heul enmontoЫ a vez e SILO.\n"
-"Gallout a rit ouzhpennaЯ lod pe gemmaЯ a re a zo."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Parzhadur"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "War implij eo ar skridennad-se endeo"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Staliadur SILO zo sac'het. Degouezhet eo ar fazi a heul :"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "O prientiЯ ar c'harger loc'haЯ"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Mennout a rit implijout aboot ?"
+msgstr "Mennout a rit implijout SILO ?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3307,125 +4093,114 @@ msgstr ""
"Fazi en ur staliaЯ aboot,\n"
"klask rediaЯ ar staliadur zoken ma tistruj ar parzhadur kentaЯ ?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "KefluniaЯ ar proksioЫ"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proksi HTTP"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proksi FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "http://... a zlefe bezaЯ ar proksi"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "ftp://... a zlefe bezaЯ ar proksi"
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Paour"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Izel"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Etre"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Uhel"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "GoulennoЫ a bep seurt"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(a c'hell breinaЯ roadoЫ)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Implijout gwelladur ar bladenn galet ?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Dibabit al live surentez"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Emvarc'haЯ ar skoroЫ lem/laka"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "SkaraЯ /tmp bep ma loc'her"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "EnaouiЯ KrouilhNiv pa loc'her"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "N'hellan ket implijout supermount el live surentez uhel"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"Genel a raio DrakX restroЫ kefluniaЯ ken evit XFree 3.3 ken evit XFree 4.0\n"
-"Dre ziouer eo implijet ar servijer 3.3 hag a ya en-dro war muioc'h a "
-"c'hartennoЫ grafek.\n"
-"Ha mennout a rit klask XFree 4.0 ?"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Klask kavout trobarzhelloЫ PCI ?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Implijout ar c'hefluniadur o ren evit X11 ?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "O krouiЯ ur bladennig staliaЯ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3435,7 +4210,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremaЯ ?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3456,155 +4231,18 @@ msgstr ""
"TitouroЫ war gefluniaЯ ho reizhiad a zo hegerz e rannbennad Goude\n"
"StaliaЯ Sturier ofisiel an Arveriad Linux-Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "O tizenaouiЯ"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "O staliaЯ ur sturier evit kartenn %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(mollad %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Pe sturier %s a zlefen amprouiЯ ?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"E degouezhoЫ 'zo, ar sturier %s en deus ezhomm titouroЫ ouzhpenn evit mont\n"
-"en-dro reizh, daoust ma da en-dro mat hepto peurvuiaЯ. Ha mennout a rit "
-"spisaat\n"
-"dibaboЫ ouzphenn evitaЯ, pe aotren d'ar sturier amprouiЯ ho penvek evit\n"
-"an titouroЫ en deus ezhomm ? A-wechoЫ, amprouiЯ a c'hell sac'haЯ un "
-"urzhiataer,\n"
-"hogen ne raio reuz ebet."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "EmbrouiЯ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Spisait dibarzhoЫ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "BremaЯ e c'hellit pourvezaЯ e zibarzhoЫ d'ar mollad %s"
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"BremaЯ e c'hellit pourvezaЯ e zibarzhoЫ d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboЫ.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "DibarzhoЫ ar mollad :"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"KargaЯ ar mollad %s a zo sac'het.\n"
-"Mennout a rit klask adarre gant arventennoЫ all ?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Klask kavout kartennoЫ PCMCIA ?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "O kefluniaЯ kartennoЫ PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Klask kavout trobarzhelloЫ %s ?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Kavet etrefas %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Hag un all hoc'h eus ?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ket"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ya"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Gwelet titouroЫ periantel"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "O laЯsaЯ ar rouedad"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "O tizenaouiЯ ar rouedad"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Staliadur Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> etre elfennoЫ | <Esaouenn> a ziuz | <F12> skramm a heul "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Gallout a rit bremaЯ parzhaЯ ho pladenn galet %s\n"
-"Pa 'z eo graet, na zisoЯjit ket enrollaЯ dre implijout `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Gortozit mar plij"
@@ -3614,7 +4252,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Amsklaer (%s), bezit spisoc'h\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
@@ -3628,453 +4266,976 @@ msgstr "? (%s dre ziouer)"
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Ho tibab ? (%s dre ziouer, skrivit `none' evit hini ebet)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tchek"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Norvegek"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ukrainiek"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroЫ\""
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovakek"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Lituaniek QUERTY \"linenn sifroЫ\""
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Yougoslaviek (reizhadur latin)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '╓' is the 'Я' (ntilde) in cp437 encoding.
-# '\227' is the 'Ы' (ugrave) in cp437 encoding.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Logodenn Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+#, fuzzy
+msgid "GlidePoint"
+msgstr "ALPS GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Logodenn Kensington Thinking"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Rummel"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "live"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "a-steud"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Logodenn rummel 2 nozelenn"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Logodenn rummel 3 nozelenn"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech doare CC (a-steud)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+#, fuzzy
+msgid "MM Series"
+msgstr "Doare MM"
+
+#: ../../mouse.pm_.c:59
+#, fuzzy
+msgid "MM HitTablet"
+msgstr "MM HitTablet (a-steud)"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Logodenn ebet"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+#, fuzzy
+msgid "none"
+msgstr "Graet"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Logodenn ebet"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Ha reizh eo ?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "KefluniaЯ ar proksioЫ"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Mennout a rit amprouiЯ ar c'hefluniadur ?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "KefluniaЯ ur rouedad"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiaЯ ?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Anv ar gevreadenn"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "KefluniaЯ ar proksioЫ"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "Niverenn bellgomz"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Anv domani"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Poent marc'haЯ"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Tremenger"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Tremenger"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "AmprouiЯ ar c'hefluniadur"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "Pe seurt parzhadur a vennit ?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Peseurt moullerez hoc'h eus ?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Kenderc'hel evelato ?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Pehini eo ho takad-eur ?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Dibabit ar ment nevez"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outaЯ, mar plij."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-"Degemer mat e LILO, an dibaber reizhiad oberia╓ !\n"
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Mennout a rit amprouiЯ ar c'hefluniadur ?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "Kefluniadur"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Mennout a rit implijout aboot ?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Klask kavout ur modem ?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "DibarzhoЫ sifrennaЯ"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Anv ar gevreadenn"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "Niverenn bellgomz"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Anv ereaЯ"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Dilesadur"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Diazezet war ur skrid"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Diazezet war un dermenell"
+
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "Anv ar gevreadenn"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Servijer DNS kentaЯ"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Eil servijer DNS"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Evit rolla╓ an dibabo≈ aotreet, stokit <TAB>.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Anv ar gevreadenn"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
-"Evit karga╓ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
-"eilenn evit al loc'ha╓ dre ziouer.\n"
+"You can reconfigure your connection."
+msgstr "KefluniaЯ ur rouedad"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiaЯ ?"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Degemer mat e GRUB an dibaber reizhiad oberia╓ !"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Da beseurt pladenn e mennit dilec'hiaЯ ?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Implijit ar stokelloЫ %c ha %c evit diuz pe enmont zo war wel"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Stokit enkas evit loc'ha╓ ar RK diuzet, 'e' evit aoza╓ an"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "urzhiado≈ kent loc'ha╓, pe 'c' evit ul linenn-urzhia╓."
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Lugerezh ar voullerez"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Gorretaol"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Meuziad LaЯsaЯ"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Logodenn Sun"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Logodenn Apple ADB"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Mailh"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Logodenn Apple ADB (2 nozelenn)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Logodenn Apple ADB (3 nozelenn pe vuioc'h)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Logodenn Apple ADB "
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Logodenn Apple USB (2 nozelenn)"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "NullaЯ"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Logodenn Apple USB (3 nozelenn pe vuioc'h)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Logodenn rummel (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Logodenn rummel 3 nozelenn (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Mailh"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Logodenn Kensington Thinking (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "Logodenn bus ATI"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Logodenn bus Microsoft"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Mennout a rit amprouiЯ ar c'hefluniadur ?"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logodenn bus Logitech"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "KefluniaЯ ur rouedad"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Logodenn USB"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Anv ar gevreadenn"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Logodenn USB (3 nozelenn pe vuioc'h)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "Kefluniet eo bet ar rouedad lec'hel endeo. Ha mennout a rit :"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Logodenn ebet"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Da beseurt pladenn e mennit dilec'hiaЯ ?"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Stumm 2.1A pe uheloc'h (a-steud)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech doare CC (a-steud)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (a-steud)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "kartenn rouedad kavet ebet"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (a-steud)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "KefluniaЯ ar rouedad"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (a-steud)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Roit ho anv ostiz mar plij.\n"
+"Un anv peurzoareet a zlefe bezaЯ hini o ostiz,\n"
+"evel ``mabenveg.mastal.makomp.com''.\n"
+"Gallout a rit ivez reiЯ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (a-steud)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Anv an ostiz :"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "Doare MM (a-steud)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (a-steud)"
+#: ../../network.pm_.c:302
+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 ""
+"Skrivit ar c'hefluniadur IP evit ar benveg-maЯ mar plij.\n"
+"Pep mellad a zlefe bezaЯ skrivet evel ur chomlec'h IP e stumm\n"
+"sifroЫ dekvel pikoЫ etrezo (da skouer 1.2.3.4)."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "O kefluniaЯ an drobarzhell rouedad %s"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (a-steud)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP emgefreek"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Logodenn rummel (a-steud)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "Chomlec'h IP :"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Kenglotus Microsoft (a-steud)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Maskl rouedad :"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Logodenn rummel 3 nozelenn (a-steud)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (a-steud)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Er furmad 1.2.3.4 e tlefe bezaЯ ar chomlec'h IP"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Ha reizh eo ?"
+#: ../../network.pm_.c:341
+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 ""
+"Roit ho anv ostiz mar plij.\n"
+"Un anv peurzoareet a zlefe bezaЯ hini o ostiz,\n"
+"evel ``mabenveg.mastal.makomp.com''.\n"
+"Gallout a rit ivez reiЯ chomlec'h IP an dreuzell m'hoc'h eus unan"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Servijer DNS :"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "Treuzell :"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Trobarzhell an dreuzell :"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Kefluniadur goude staliaЯ"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Proksi HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Proksi FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "http://... a zlefe bezaЯ ar proksi"
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "ftp://... a zlefe bezaЯ ar proksi"
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4084,21 +5245,21 @@ msgstr ""
"FiЯval ar parzhadurioЫ kentaЯ derez evit ma vo an toull stok ouzh ar "
"parzhadurioЫ astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Restr gwareziЯ siek"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivaЯ er restr %s"
@@ -4132,42 +5293,56 @@ msgstr "dedennus"
msgid "maybe"
msgstr "marteze"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (a-bouez)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (brav-tre)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (brav)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Diskouez nebeutoc'h"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Diskouez muioc'h"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "DibarzhoЫ ar voullerez lpd a-bell"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Steud a-bell"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "DibarzhoЫ ar voullerez NetWare"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Trobarzhell ar voullerez"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "O tinoiЯ trobarzhelloЫ..."
@@ -4181,11 +5356,11 @@ msgstr "AmprouiЯ ar porzhioЫ"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Ur voullerez, doare \"%s\", zo bet dinoet war "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Trobarzhell voullerez lec'hel"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4193,15 +5368,15 @@ msgstr ""
"Ouzh pe drobarzhell eo luget ho moullerez \n"
"(taolit evezh /dev/lp0 a zo kevatal da LPT1:) ?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "DibarzhoЫ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4211,19 +5386,19 @@ msgstr ""
"pourvezaЯ anv ostiz ar servijer moullaЯ hag anv as steud\n"
"war ar servijer-se ma zlefe bezaЯ kaset an dleadoЫ moullaЯ."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Steud a-bell"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "DibarzhoЫ moullaЯ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4237,27 +5412,27 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "DibarzhoЫ ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4269,130 +5444,155 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullaЯ evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Servijer moullaЯ"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Anv ar steud moullaЯ"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "DibarzhoЫ ar voullerez NetWare"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "DibarzhoЫ ar voullerez"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Paour"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Peseurt moullerez hoc'h eus ?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Ha mennout a rit amprouiЯ moullaЯ skrid ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "O voullaЯ pajenn(oЫ) skrid..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Pajenn(oЫ) arnod zo bet kaset d'an diaoul moullaЯ.\n"
+"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
+"Stad ar moullaЯ :\n"
+"%s\n"
+"\n"
+"Ha mont a ra en-dro reizh ?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Pajenn(oЫ) arnod zo bet kaset d'an diaoul moullaЯ.\n"
+"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
+"Ha mont a ra en-dro reizh ?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ya, moullit ur bajenn arnod ASCII"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ya, moullit ur bajenn arnod PostScript"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "KefluniaЯ ar voullerez"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "DibarzhoЫ ar voullerez"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Ment ar paper"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Stlepel ar bajenn goude moullaЯ ?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "DibarzhoЫ ar sturier Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "DibarzhoЫ donder liv"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "MoullaЯ skrid evel PostScript ?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "EilpennaЯ urzh ar pajennoЫ"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Kempenn an efed-diri ?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Niver a bajennoЫ dre bajenn ziskas"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "MarzoЫ DehoЫ/Kleiz e poentoЫ (1/72 ur meudad)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "MarzoЫ Krec'h/TraoЯ e poentoЫ (1/72 ur meudad)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "DibarzhoЫ GhostScript ouzhpenn"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "DibarzhoЫ skrid ouzhpenn"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Ha mennout a rit amprouiЯ moullaЯ skrid ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "O voullaЯ pajenn(oЫ) skrid..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Pajenn(oЫ) arnod zo bet kaset d'an diaoul moullaЯ.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Stad ar moullaЯ :\n"
-"%s\n"
-"\n"
-"Ha mont a ra en-dro reizh ?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Pajenn(oЫ) arnod zo bet kaset d'an diaoul moullaЯ.\n"
-"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
-"Ha mont a ra en-dro reizh ?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Mennout a rit kefluniaЯ ur voullerez ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4400,19 +5600,69 @@ msgstr ""
"Setu da heul ar steudadoЫ moullaЯ.\n"
"Gallout a rit ouzhpennaЯ lod pe gemmaЯ a re a zo."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "O vrasjediЯ"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Penaos eo luget ar voullerez ?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Lemel ar steudad"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Pep steud moullaЯ (m'eo kaset an dleadoЫ moullaЯ davetaЯ) en deus\n"
+"ezhomm un anv (lp alies) hag ur renkell spool kevret gantaЯ. Pe anv\n"
+"ha renkell a zo da implijout evit ar steud-maЯ ha penaos eo luget ar "
+"voullerrez ?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Moullerez lec'hel"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoЫ"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "TitouroЫ"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4424,45 +5674,45 @@ msgstr ""
"ha renkell a zo da implijout evit ar steud-maЯ ha penaos eo luget ar "
"voullerrez ?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Anv ar steud"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Renkell ar spool"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Lugerezh ar voullerez"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennaЯ ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "N'hellan ket skrivaЯ e $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichaЯs ?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioЫ evit RAID live %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, ur steuЯvaer urzhiadoЫ mareadek."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4471,7 +5721,7 @@ msgstr ""
"syslog.\n"
"Gallout a ra ivez servijout da lazhaЯ an ardivink pa vez izel an daspugner."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4479,7 +5729,7 @@ msgstr ""
"SeveniЯ an urzhiadoЫ steuЯvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
"bet sevenet at, ha seveniЯ urzhiadoЫ dre lod pa 'z eo izel a-walc'h ar garg."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4491,7 +5741,7 @@ msgstr ""
"arc'hweloЫ\n"
"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoЫ kefluniaЯ gwelloc'h."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4502,7 +5752,7 @@ msgstr ""
"Midnight Commander. ReiЯ a ra tu da seveniЯ obererezhoЫ troc'haЯ-ha-pegaЯ,\n"
"ha skor evit meuziadoЫ kemperzhel war al letrin."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4510,7 +5760,7 @@ msgstr ""
"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijaЯ\n"
"restroЫ HTML ha CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4525,7 +5775,7 @@ msgstr ""
"eo, en o zouez telnet, ftp, rsh, and rlogin. DizoberiaЯ inetd a zizoberia\n"
"an holl servijoЫ m'eo eЯ atebek warno."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4535,7 +5785,7 @@ msgstr ""
"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezaЯ diuzet\n"
"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiaЯ an ardivinkoЫ."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4543,7 +5793,7 @@ msgstr ""
"An diaoul moullaЯ ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
"ez eo ur servijer a vera dleadoЫ moullaЯ evir ar voullerez(ed)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4551,7 +5801,7 @@ msgstr ""
"named (BIND) a zo ur Servijer AnvioЫ Domani (DNS) a zo implijet evit\n"
"amdreiЯ anvioЫ ostiz e chomlec'hioЫ IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4559,7 +5809,7 @@ msgstr ""
"Evit marc'haЯ ha divarc'haЯ poentoЫ marc'haЯ an holl ReizhiadoЫ RestroЫ\n"
"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4567,7 +5817,7 @@ msgstr ""
"Oberia/Dizoberia an holl etrefasoЫ rouedad kefluniet da laЯsaЯ\n"
"da vare al loc'haЯ."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4577,7 +5827,7 @@ msgstr ""
"Ar servij-maЯ a bourvez arc'hweloЫ ur servijer NFS, a vez kefluniaet dre ar\n"
"restr /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4585,7 +5835,7 @@ msgstr ""
"NFS a zo ur c'homenad brudet evit rannaЯ restroЫ dre rouedadoЫ\n"
"TCP/IP. Ar servij-maЯ a bourvez un arc'hwel morailhaЯ restroЫ NFS."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4597,7 +5847,7 @@ msgstr ""
"diarvar\n"
"e staliaЯ war ardivinkoЫ n'o deus ket ezhomm anezhaЯ."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4609,7 +5859,7 @@ msgstr ""
"en-dro\n"
"war ardivinkoЫ anezho servijerien komenadoЫ a implij ar reizhiad RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4617,7 +5867,7 @@ msgstr ""
"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
"zilech posteloЫ etre un ardivink hag un all."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4625,7 +5875,7 @@ msgstr ""
"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroЫ\n"
"dargouezhek gant gwelloc'h perzhded."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4636,7 +5886,7 @@ msgstr ""
"bihan,\n"
"ezhomm a zo komenadoЫ henchaЯ kemplezhoc'h evit rouedadoЫ rouestlet."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4644,7 +5894,7 @@ msgstr ""
"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
"muzulioЫ barregezh diwar ne vern pe ardivink er rouedad-se."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4652,7 +5902,7 @@ msgstr ""
"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
"a zo kevreet ouzh ardivinkoЫ all a respont."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4662,7 +5912,7 @@ msgstr ""
"kevreet ouzh un ardivink ma da en-dro warnaЯ an diaoul rwhod (heЯvel ouzh "
"finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4671,57 +5921,201 @@ msgstr ""
"c'hemennadoЫ\n"
"e kerzhlevrioЫ liesseurt ar reizhiad. Ur mennozh mat eo seveniЯ ingal syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "An urzhiaoueg loc'haЯ a glask kargaЯ molladoЫ evit ho logodenn usb."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"Enaou ha dizenaou ar servijer FontoЫ X da vare al loc'haЯ hag al lazhaЯ."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Dibabit pe servijoЫ a zlefe bezaЯ laЯset ent emgefreek pa loc'her"
-# This message is shown before booting Linux; so the encoding depends
-# on what the hardware supports... it is safer to assume ascii-only
-# Я and Ы etc are transcribed unaccented.
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Degemer mat e SILO, an dibaber reizhiad oberia╓ !\n"
-"\n"
-"Evit rolla╓ an dibabo≈ aotreet, stokit <TAB>.\n"
-"\n"
-"Evit karga╓ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
-"eilenn evit al loc'ha╓ dre ziouer.\n"
-"\n"
+"N'hellaЯ ket lenn ho taolenn barzhaЯ, re vrein eo evidon :(\n"
+"Klask a rin kenderc'hel en ur ziverkaЯ ar parzhadurioЫ siek"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "KefluniaЯ LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "KrouiЯ ur bladennig loc'haЯ"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "FurmadiЯ ar bladennig"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Dibab"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Taolenn"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "KefluniaЯ X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Taolenn"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Anv domani"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "o lenn ar c'hefluniadur"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "KefluniaЯ IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Gourc'hemennoЫ!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4787,23 +6181,36 @@ msgstr "O termeniЯ al live surentez"
msgid "Choose the tool you want to use"
msgstr "Dibabit ar benveg a vennit staliaЯ"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Petra eo reizhadur ho stokellaoueg ?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "KemmaЯ ar spister"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Peseurt eo ho logodenn ?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Kemmit ho Cd-Rom!\n"
+"\n"
+"Lakait el lenner ar Cd-Rom warnaЯ an diketenn \"%s\" mar plij ha gwaskit Mat "
+"eo da c'houde.\n"
+"Ma n'emaЯ ket ganeoc'h gwaskit NullaЯ evit chom hep staliaЯ ar Cd-Rom-se."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
@@ -5016,15 +6423,829 @@ msgstr "O klask delioЫ"
msgid "Finding leaves takes some time"
msgstr "Klask delioЫ a bad ur frapadig"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "KefluniaЯ ar proksioЫ"
+
+#, fuzzy
+msgid "Internet"
+msgstr "dedennus"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Burev"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Liesvedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Liesvedia"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Liesvedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Liesvedia"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "Graet"
+
+msgid "Documentation"
+msgstr "Teuliadur"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Liesvedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Dibabit ar ment a vennit staliaЯ"
+
+#~ msgid "Total size: "
+#~ msgstr "Ment hollek :"
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "AdgefluniaЯ ar rouedad bremaЯ"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Anv ar gevreadenn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Anv ar gevreadenn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Anv ar gevreadenn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Anv ar gevreadenn"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "Alaman"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Alaman"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "Petra a vennit ober ? "
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "StaliaЯ"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "AdventaЯ"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Pe seurt parzhadur a vennit ?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Dibabit \"StaliaЯ\" ma n'eus ket a stumm kent Linux bet staliaet,\n"
+#~ "pe ma vennit implijout meur a stumm pe a zasparzhadenn.\n"
+#~ "\n"
+#~ "Dibabit \"Bremanaat\" ma vennit hizivaat ur stumm kent Mandrake Linux :\n"
+#~ "%s pe %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Diuzit :\n"
+#~ "\n"
+#~ " - Emgefreek : Ma n'hoc'h eus morse staliaet Linux a-raok, dibabit se. "
+#~ "EVEZH :\n"
+#~ " ne vo ket kefluniet a rouedad e-kerz ar staliadur, implijit "
+#~ "\"LinuxConf\"\n"
+#~ " evit kefluniaЯ unan goude diwezh ar staliadur.\n"
+#~ "\n"
+#~ " - Neuziet : Ma 'z oc'h kustumet a-walc'h gant GNU/Linux, tu vo neuze "
+#~ "deoc'h\n"
+#~ " dibab an implij pennaЯ evit ho ardivink. Sellit a-is evit munudoЫ.\n"
+#~ "\n"
+#~ " - Mailh : Ma 'z oc'h en ho pleud gant GNU/Linux ha mennet da seveniЯ\n"
+#~ " ur staliadur neuziet-tre. Evel evit ar renkad staliaЯ \"Neuziet\" e vo\n"
+#~ " tu deoc'h diuz an implij evit hor reizhiad.\n"
+#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H OBER "
+#~ "!\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "D'ar poent-maЯ, e c'hellit dibab pe barzhadur(ioЫ) implijout evit\n"
+#~ "staliaЯ ho reizhiad Linux-Mandrake, ma 'z int bet termenet endeo (diwar\n"
+#~ "ur staliadur kent Linux pe diwar ur benveg parzhaЯ all). E degouezhoЫ\n"
+#~ "all, ret eo termeniЯ parzhadurioЫ ar bladenn galet. Talvezout a ra an\n"
+#~ "obererezh-se kement ha rannaЯ dre meiz egor pladenn galet an urzhiataer\n"
+#~ "e takadoЫ distag o implij.\n"
+#~ "\n"
+#~ "\n"
+#~ "M'hoc'h eus da grouiЯ parzhadurioЫ nevez, implijit \"Ac'hubiЯ ent "
+#~ "emgefreek\"\n"
+#~ "a-benn krouiЯ parzhadurioЫ evit Linux ent engrefreek. Gallout a rit diuz\n"
+#~ "ar bladenn da parzhaЯ dre glikaЯ war \"hda\" evit an drobarzhell IDE "
+#~ "kentaЯ,\n"
+#~ "\"hdb\" evit an eil pe \"sda\" evit an drobarzhell SCSI kentaЯ hag all.\n"
+#~ "\n"
+#~ "\n"
+#~ "Daou barzhadur boutin-tre a zo : ar parzhadur gwrizienn (/), a zo penn\n"
+#~ "kentaЯ urzhaz renkelloЫ ar reizhiad restroЫ, ha /boot, a zo ennaЯ an holl\n"
+#~ "restroЫ ret evit loc'haЯ ar reizhiad korvoiЯ p'emeur o paouez enaouiЯ\n"
+#~ "an urzhiataer.\n"
+#~ "\n"
+#~ "\n"
+#~ "Gant ma n'heller ket diverkaЯ efedoЫ an argerzh-maЯ, parzhaЯ a c'hell\n"
+#~ "bezaЯ abafus ha bec'hius d'an arveriad deraouat. DiskDrake a aesa kement\n"
+#~ "an argerzh ha n'eus ket aon da gaout. Sellit ouzh an teuliadur hag it\n"
+#~ "war ho pouez a-raok kregiЯ ganti.\n"
+#~ "\n"
+#~ "Gallout a rit tizhout kement dibarzh 'zo gant ar stokelloЫ : merdeiЯ dre ar "
+#~ "parzhadurioЫ\n"
+#~ "gant Tab ha biroЫ Laez/TraoЯ. P'hoc'h eus diuzet ur parzhadur, grit gant :\n"
+#~ "\n"
+#~ "- Ctrl-c evit krouiЯ ur parzhadur nevez (m'eo goullo ar parzhadur diuzet)\n"
+#~ "\n"
+#~ "- Ctrl-d evit lemel ur parzhadur\n"
+#~ "\n"
+#~ "- Ctrl-m evit termeniЯ ar poent marc'haЯ\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Kement parzhadur a zo bet nevez termenet a zle bezaЯ furmadet a-benn\n"
+#~ "e implijout (furmadiЯ a dalvez krouiЯ ur reizhiad restroЫ). Er poent-se,\n"
+#~ "e c'hellit mennout adfurmadiЯ parzhadurioЫ 'zo o vezaЯ endeo evit diverkaЯ\n"
+#~ "ar roadoЫ a zo enno. Ho evezh : n'eo ket ret adfurmadiЯ parzhadurioЫ o\n"
+#~ "vezaЯ endeo, dreist-holl ma 'z eus enno restroЫ pe roadoЫ a vennit "
+#~ "derc'hel.\n"
+#~ "SkouerioЫ dibar eo /home ha /usr."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "EmaЯ ar pakadoЫ diuzet o vezaЯ staliaet bremaЯ. Un nebeut munut\n"
+#~ "e zlefe padout an obererezh-se nemet m'ho pije dibabet bremanaat\n"
+#~ "ur reizhiad o vezaЯ, en degouezh-se e c'hell kemer muioc'h a amzer\n"
+#~ "zoken a-raok na grogfe ar bremanaat."
+
+#, fuzzy
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Ma ne c'hell ket DrakX kavout ho logodenn, pe ma vennit\n"
+#~ "gwiriaЯ pezh en deus graet, kinniget e vo deoc'h ur roll\n"
+#~ "logodennou a-us.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ma 'z oc'h a-du gant kefluniadur DrakX, n'hoc'h eus ken nemet lammat\n"
+#~ "d'ar rann a fell deoc'h en ur glikaЯ el laЯser a gleiz. Mod all,\n"
+#~ "dibabit el laЯser ar seurt logodenn a gav deoc'h ez eo hini a zegouezh\n"
+#~ "ar gwellaЯ evit ho logodenn.\n"
+#~ "\n"
+#~ "Ma 'z eo ul logodenn a-steud, ret e vo ivez deoc'h lavaret da DrakX\n"
+#~ "war be borzh a-steud eo luget ho logodenn."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Gouestlet eo ar rann-maЯ da gefluniaЯ ur rouedad takad lec'hel\n"
+#~ "(LAN) pe ur modem.\n"
+#~ "\n"
+#~ "Dibabit \"Rouedad lec'hel\" ha DrakX a glasko kavout un azasaer\n"
+#~ "Ethernet war ho ardivink. Azasaerien PCI a zlefe bezaЯ kavet\n"
+#~ "ha deraouekaet ent emgefreek. Evelato, m'eo ho trobarzhell unan ISA,\n"
+#~ "ne daio ket en-dro an emzinoiЯ, hag e vo ret deoc'h diuz ur sturier\n"
+#~ "diwar ar roll a zeuio war wel neuze.\n"
+#~ "\n"
+#~ "\n"
+#~ "Evel evit azasaerien SCSI e c'hellit leuskel ar sturier amprouiЯ\n"
+#~ "an azasaer ar wech kentaЯ, mod all e vo ret deoc'h spisaat d'ar\n"
+#~ "sturier dibarzhoЫ ho pije tapet diwar teuliadur ho periant.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ma stalhit ur reizhiad Linux-Mandrake war un ardivink a zo\n"
+#~ "lodek en ur rouedad a zo c'hoazh, merour ar rouedad en devo\n"
+#~ "roet deoc'h an holl titouroЫ ret (chomlec'h IP, ismaskl rouedad\n"
+#~ "pe verroc'h rouedmaskl, hag anv ostiz). M'emaoc'h o sevel ur\n"
+#~ "rouedad prevez er gЙr da skouer, mat e vije deoc'h dibab\n"
+#~ "chomlec'hioЫ \n"
+#~ "\n"
+#~ "Dibabit \"SifrennaЯ gant ar modem\" hag e vo kefluniet ar gevreadenn\n"
+#~ "ouzh ar Genrouedad gant ur modem. Klask a raio DrakX kavout ho modem,\n"
+#~ "ma ne teu ket a-benn e vo ret deoc'h diuz ar porzh a-steud m'eo luget\n"
+#~ "ho modem outaЯ."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux a oar en em zibab gant kalz a seurtoЫ moullerezed. Pep hini eus\n"
+#~ "ar seurtoЫ-se en deus ezhomm ur c'hefluniadur disheЯvel. Taolit evezh\n"
+#~ "avat ar spooler moullaЯ a laka 'lp' da anv ar voullerrez dre ziouer ;\n"
+#~ "ret eo deoc'h eta kaout ur voullerez gant an anv-se ; hogen meur a anv,\n"
+#~ "pep hini dsipartiet gant an arouezenn '|', a c'hellit reiЯ d'ur voullerez.\n"
+#~ "Neuze, mar kavit gwelloc'h bezaЯ un anv splannoc'h, n'hoc'h eus ken nemet\n"
+#~ "e lakaat da gentaЯ, da sk. \"Ma Voullerez|lp\".\n"
+#~ "Ar voullerez he deus \"lp\" en he anv(ioЫ) a vo hini dre ziouer.\n"
+#~ "\n"
+#~ "\n"
+#~ "M'eo luget ho moullerez end-eeun ouzh ho urzhiataer, diuzit\n"
+#~ "\"Moullerez lec'hel\". Neuze e rankot lavaret ouzh be borzh eo\n"
+#~ "luget ho moullerez, ha diuz ar sil a zere.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ma vennit tizhout ur voullerez a zo lec'hiet war un ardivink Unix\n"
+#~ "a-bell, rankout a reot diuz \"lpd a-bell\". Evit ma 'z afe en-dro,\n"
+#~ "n'eus ezhomm nag anv na tremenger, hogen e rankot anavezout anv\n"
+#~ "ar steud moullaЯ war ar servijer-se.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ma vennit tizhout ur voullerez SMB (da lavaret eo ur voullerez\n"
+#~ "lec'hiet war un ardivink Windows 9x/NT a-bell), e rankot spisaat\n"
+#~ "e anv SMB (n'eo ket e anv TCP/IP), ha marteze e chomlec'h IP, mui\n"
+#~ "an anv arveriad, ar strollad labour hag an tremenger ret a-benn tizhout\n"
+#~ "ar voullerez, hag evel-just anv ar voullerez. HeЯvel tra evit ur\n"
+#~ "voullerez NetWare, war-bouez titour ar strollad labour a zo diezhomm."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Mar plij, me ho ped, respontit \"Ya\" amaЯ ! Lakaomp da skouer e\n"
+#~ "adstalhit Windows diwezhatoc'h hag e rasklo ar rann loc'haЯ. Nemet\n"
+#~ "m'ho pije graet ar bladenn loc'haЯ evel aliet, ne viot ket evit\n"
+#~ "loc'haЯ Linux e mod ebet ken !"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "DisoЯjal ar c'hemmoЫ"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Lugerezh ar voullerez"
+
+#~ msgid "Host name:"
+#~ msgstr "Anv an ostiz :"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Peseurt eo ho logodenn ?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "SpisterioЫ emgefreek"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "A-benn kavout ar spisterioЫ hegerz e klaskin meur a hini.\n"
+#~ "C'hwildaЯ a raio ho skramm...\n"
+#~ "Gallout a rit e tizenaouiЯ ma fell deoc'h, klevet a rit ur bip pa vo echu"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Klask kavout ar spisterioЫ hegerz a c'hellan (da sk. 800x600).\n"
+#~ "A-wechoЫ, evelato, e c'hell sac'haЯ an ardivink.\n"
+#~ "Mennout a rit klask ?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Mod reizh ebet kavet\n"
+#~ "Klaskit gant ur gartenn video pe ur skramm all"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Klask ent emgefreek ar spisterioЫ"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Logodenn Apple ADB"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Logodenn Apple ADB (2 nozelenn)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Logodenn Apple ADB (3 nozelenn pe vuioc'h)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Logodenn Apple ADB "
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Logodenn Apple USB (2 nozelenn)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Logodenn Apple USB (3 nozelenn pe vuioc'h)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Logodenn rummel"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "Logodenn bus ATI"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Logodenn bus Microsoft"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logodenn bus Logitech"
+
+#~ msgid "USB Mouse"
+#~ msgstr "Logodenn USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "Logodenn USB (3 nozelenn pe vuioc'h)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Stumm 2.1A pe uheloc'h (a-steud)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (a-steud)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (a-steud)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (a-steud)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Logodenn rummel (a-steud)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Kenglotus Microsoft (a-steud)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Logodenn rummel 3 nozelenn (a-steud)"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "marc'haЯ NFS sac'het"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Rinegouriezh"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Ha mennout a rit kefluniaЯ ur rouedad lec'hel evit ho reizhiad ?"
+
+#~ msgid "Show less"
+#~ msgstr "Diskouez nebeutoc'h"
+
+#~ msgid "Show more"
+#~ msgstr "Diskouez muioc'h"
+
+#~ msgid "curly"
+#~ msgstr "rodellek"
+
+#~ msgid "default"
+#~ msgstr "dre ziouer"
+
+#~ msgid "tie"
+#~ msgstr "frondenn"
+
+#~ msgid "brunette"
+#~ msgstr "duardez"
+
+#~ msgid "girl"
+#~ msgstr "plac'h"
+
+#~ msgid "woman-blond"
+#~ msgstr "meleganez"
+
+#~ msgid "automagic"
+#~ msgstr "emhud"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Petra eo reizhadur ho stokellaoueg ?"
+
+#~ msgid "Normal"
+#~ msgstr "Boas"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Klask kavout kartennoЫ PCMCIA ?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Klask kavout trobarzhelloЫ %s ?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "KefluniaЯ ar modem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr ""
+#~ "Ha mennout a rit kefluniaЯ ur gevreadenn gervel dre modem evit ho reizhiad ?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Klask kavout trobarzhelloЫ PCI ?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "O klask ar parzhadur gwrizienn."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s : N'eo ket ur parzhadur gwrizienn, diuzit un all mar plij."
+
+#~ msgid "No root partition found"
+#~ msgstr "Parzhadur gwrizienn kavet ebet"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "N'hellaЯ ket implijout ar skignaЯ hep domani NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr ""
+#~ "Dibabit ur parzhadur d'ober anezhaЯ ho parzhadur gwrizienn, mar plij."
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "N'hoc'h eus ket a-walc'h a egor evit Lnx4win !"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U Mo"
+
+#~ msgid "Automated"
+#~ msgstr "Emgefreek"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# '╓' is the 'Я' (ntilde) in cp437 encoding.
+# '\227' is the 'Ы' (ugrave) in cp437 encoding.
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Degemer mat e LILO, an dibaber reizhiad oberia╓ !\n"
+#~ "\n"
+#~ "Evit rolla╓ an dibabo≈ aotreet, stokit <TAB>.\n"
+#~ "\n"
+#~ "Evit karga╓ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
+#~ "eilenn evit al loc'ha╓ dre ziouer.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Degemer mat e SILO, an dibaber reizhiad oberian~ !\n"
+#~ "\n"
+#~ "Evit rollan~ an dibabou aotreet, stokit <TAB>.\n"
+#~ "\n"
+#~ "Evit kargan~ unan anezho, skrivit e anv ha stokit <ENKAS> pe c'hortozit %d "
+#~ "eilenn evit al loc'han~ dre ziouer.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "DibarzhoЫ pennaЯ SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Setu da heul enmontoЫ a vez e SILO.\n"
+#~ "Gallout a rit ouzhpennaЯ lod pe gemmaЯ a re a zo."
+
+#~ msgid "This label is already in use"
+#~ msgstr "War implij eo ar skridennad-se endeo"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Staliadur SILO zo sac'het. Degouezhet eo ar fazi a heul :"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX a glasko da gentaЯ kavout unan pe vuioc'h a azasaer SCSI PCI.\n"
+#~ "Ma gav anezhaЯ (pe anezho) ha ma oar pe sturier(ien) implijout, e (o)\n"
+#~ "enlakaat a raio ent emgefreek.\n"
+#~ "\n"
+#~ "\n"
+#~ "M'eo ho azasaer SCSI ur gartenn ISA, pe m'eo ur gartenn PCI hogen\n"
+#~ "ne oar ket DrakX pe sturier implijout evit ar gartenn-se, pe n'hoc'h eus\n"
+#~ "tamm azasaer SCSI ebet, goulennet e vo diganeoc'h neuze hag-eЯ hoc'h\n"
+#~ "eus unan pe get. Ma n'hoc'h eus hini, eilgeriit \"Ket\". M'hoc'h eus\n"
+#~ "unan pe vuioc'h, eilgeriit \"Ya\". Ur roll sturierien a zeuio neuze\n"
+#~ "war wel, a vo ret deoc'h diuz unan anezho.\n"
+#~ "\n"
+#~ "\n"
+#~ "Goude m'ho po diuzet ar sturier, DrakX a c'houlenno ma vennit spisaat\n"
+#~ "dibarzhoЫ evitaЯ. Da gentaЯ, klaskit leuskel ar sturier amprouiЯ\n"
+#~ "ar periant : peurliesaЯ e da mat en-dro.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ma ne ra ket, na zisoЯjit ket an titouroЫ war ho periant a c'hellit\n"
+#~ "kavout en ho teuliadur pe digant Windows (m'hoc'h eus hemaЯ war ho\n"
+#~ "reizhiad), evel m'eo aliet gant ar sturlevr staliaЯ. An dibarzhoЫ a\n"
+#~ "vo ret deoc'h pourvezaЯ d'ar sturier eo a zo e kaoz."
+
+#~ msgid "Shutting down"
+#~ msgstr "O tizenaouiЯ"
+
#~ msgid "useless"
#~ msgstr "diezhomm"
#~ msgid "garbage"
#~ msgstr "lastez"
-#~ msgid "Recommended"
-#~ msgstr "Erbedet"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index f8f643df6..e111b2c43 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,57 +1,114 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2000 SoftCatala
-# Quico Llach <quico@softcatala.org>, 1999-2000.
+# Copyright (c) 1999-2000 SoftcatalЮ
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-05 14:00+0200\n"
-"Last-Translator: Quico Llach <quico@softcatala.org>\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-10-02 14:17+0200\n"
+"Last-Translator: Quico Llach <traddrake@softcatala.org>\n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "General"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Targeta grЮfica"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Seleccioneu una targeta grЮfica"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Escolliu un servidor X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuraciС de l'XFree voleu tenir?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"La vostra targeta pot tenir acceleraciС 3D de maquinari, perР nomИs amb "
+"l'Xfree %s.\n"
+"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"La vostra targeta pot tenir acceleraciС 3D de maquinari amb l'Xfree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleraciС 3D de maquinari"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"La vostra targeta pot tenir acceleraciС 3D de maquinari, perР nomИs amb "
+"l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR.\n"
+"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"La vostra targeta pot tenir acceleraciС 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s amb acceleraciС 3D de maquinari EXPERIMENTAL"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "ConfiguraciС de l'XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Seleccioneu la mida de memРria de la vostra targeta grЮfica"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Escolliu les opcions per al servidor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -74,39 +131,40 @@ msgstr ""
"el podrМeu fer malbИ.\n"
"En cas de dubte, sigueu conservador amb aquest parЮmetre."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "El monitor no estЮ configurat"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "La targeta grЮfica encara no estЮ configurada"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Encara no s'han escollit les resolucions"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Voleu comprovar la configuraciС?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "AvМs: Иs perillСs fer la comprovaciС en aquesta targeta grЮfica"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"AvМs: la comprovaciС d'aquesta targeta grЮfica pot penjar-vos l'ordinador"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Comprova la configuraciС"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -114,184 +172,171 @@ msgstr ""
"\n"
"intenteu canviar alguns parЮmetres"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "S'ha produОt un error:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Sortida en %d segons"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "иs aquest el parЮmetre corrcte?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "S'ha produОt un error, intenteu canviar alguns parЮmetres"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Resolucions automЮtiques"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Per saber quines resolucions estan disponibles, en provarИ algunes.\n"
-"La pantalla parpellejarЮ...\n"
-"Ho podeu desactivar si voleu; sentireu un avМs sonor quan estigui llest"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "ResoluciС"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resoluciС i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Targeta grЮfica: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Servidor xFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Mostra'ls tots"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-"De vegades, perР, aixР pot penjar l'ordinador.\n"
-"Us hi voleu arriscar?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"No s'han trobat modes vЮlids\n"
-"Intenteu-ho amb una altra targeta de vМdeo o monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "DisposiciС del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratolМ: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratolМ: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "SincronitzaciС horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Targeta grЮfica: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "MemРria grЮfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Profunditat del color: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "ResoluciС: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Controlador de l'xFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "S'estЮ preparant la configuraciС de l'X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Canvia el monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Canvia la targeta grЮfica"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Canvia les opcions del servidor"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Canvia la resoluciС"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Recerca automЮtica de resolucions"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Mostra la informaciС"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Torna-ho a comprovar"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Surt"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "QuХ voleu fer?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Voleu descartar els canvis?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Voleu conservar els canvis?La configuraciС actual Иs:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -300,228 +345,224 @@ msgstr ""
"durant l'arrencada.\n"
"Voleu que X s'iniciО quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Entrada automЮtica"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Puc configurar el vostre ordinador de manera que entri automЮticament amb un "
+"nom d'usuari.\n"
+"Si no voleu utilitzar aquesta caracterМstica, feu clic al botС Cancel╥la."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Escolliu l'usuri per omissiС:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Escolliu el gestor de finestres per executar:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 colors (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32.768 colors (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65.536 colors (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milions de colors (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB o mИs"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA estЮndard, 640x480 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaГada (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 a 87 Hz entrellaГada, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA no entrellaГada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA d'alta freqЭХncia, 1024x768 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-freqЭХncia que pot fer 1280x1024 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-freqЭХncia que pot fer 1280x1024 a 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-freqЭХncia que pot fer 1280x1024 a 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "arrissat"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "predeterminat"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "llaГ"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "morena"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "noia"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "dona-rossa"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automagic"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Primer sector de la particiС d'arrencada"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "Instal╥laciС del LILO/grub"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Instal╥laciС del SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal╥lar el carregador d'arrencada?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Instal╥laciС del LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Cap"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Instal╥laciС del carregador d'arrencada"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Demora abans d'arrencar la imatge predeterminada"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Mode de vМdeo"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Demora abans d'arrencar la imatge predeterminada"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Limita les opcions de la lМnia d'ordres"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opciС ``Limita les opcions de la lМnia d'ordres'' no tИ cap Зs sense una "
"contrasenya"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -529,167 +570,354 @@ msgstr ""
"Aquestes sСn les diferents entrades.\n"
"Podeu afegir-ne algunes mИs o canviar-ne les existents."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Quin tipus d'entrada voleu afegir?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Un altre SO (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Quin tipus d'entrada voleu afegir?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "D'acord"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Aquesta etiqueta ja estЮ en Зs"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "S'han trobat %s interfМcies %s"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "En teniu una altra?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Teniu alguna interfМcie %s?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "No"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "SМ"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Mira la informaciС del maquinari"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "S'estЮ instal╥lant el programa de control per a la targeta %s %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(mРdul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Quin programa de control %s he de provar?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"En alguns casos, el programa de control %s necessita informaciС addicional\n"
+"per funcionar correctament, tot i que normalment funciona bИ sense ella.\n"
+"Voleu especificar opcions addicionals o deixar que el programa de control\n"
+"cerqui al vostre ordinador la informaciС que necessita? Aquesta recerca\n"
+"podria blocar l'ordinador, perР aixР no causaria cap dany."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "ExploraciС automЮtica"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Especifica les opcions"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Ara podeu proporcionar les seves opcions per al mРdul %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Ara podeu proporcionar les seves opcions per al mРdul %s.\n"
+"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Per exemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Opcions del mРdul:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Ha fallat la cЮrrega del mРdul %s.\n"
+"Voleu tornar-ho a intentar amb altres parЮmetres?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Benvingut al %s, la utilitat que us permet triar el sistema operatiu!\n"
+"\n"
+"Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
+"\n"
+"Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
+"segons\n"
+"fins a l'arrencada predeterminada.\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+"Utilitzeu les tecles %c i %c per seleccionar quina posiciС estЮ ressaltada."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "ordres prХvies a l'arrencada, o 'c' per obtenir una lМnia d'ordres."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "La posiciС ressaltada arrencarЮ automЮticament dintre de %d segons."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "no hi ha prou espai a /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Escriptori"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "MenЗ Inici"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minuts"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minute"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d segons"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Suprimeix"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Punt de muntatge"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Escriu a /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Restaura des del fitxer"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Desa al fitxer"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Assistent"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Restaura des del disquet"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formata-ho tot"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Assigna automЮticament"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primЮries"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "No puc afegir cap mИs particiС"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -697,59 +925,63 @@ msgstr ""
"Per tenir mИs particions, suprimiu-ne una per poder crear una particiС "
"ampliada"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "DesfИs"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Torna a carregar"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Buit"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Altres"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Intercanvia"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Buit"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Altres"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -761,17 +993,17 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i desprИs feu clic a \"Canvia la mida\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cРpia de seguretat de les vostres dades"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -780,77 +1012,77 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al comenГament del disc"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operaciС Иs perillosa."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Error"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (nomИs Иs una suposiciС)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Mida: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -858,79 +1090,79 @@ msgstr ""
"La particiС s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una particiС "
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Mida: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capГals, %s sectors\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Actiu"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Trieu una acciС"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -942,7 +1174,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarЮ, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -955,69 +1187,68 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"particiС /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Heu seleccionat una particiС de programari RAID com a arrel (/).\n"
"AixР no ho pot gestionar cap carregador d'arrencada sense una particiС "
"/boot.\n"
-"Per tant, assegureu-vos d'afegir una particiС /boot si voleu utilitzar el "
-"LILO o el GRUB"
+"Per tant, assegureu-vos d'afegir una particiС /boot"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"DesprИs de canviar el tipus de la particiС %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Canvia el tipus de particiС"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Quin tipus de particiС voleu?"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1025,140 +1256,145 @@ msgstr ""
"No es pot anul╥lar el punt de muntatge, perquХ aquesta particiС\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "DesprИs de formatar la particiС %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "S'estЮ formatant"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'estЮ formatant el fitxer de loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "S'estЮ formatant la particiС %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "DesprИs de formatar totes les particions,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "totes les dades d'aquestes particions s'hauran perdut"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaГar?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaГar?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "S'estЮ desplaГant"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "S'estЮ desplaГant la particiС..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurЮ al disc!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrЮ tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els lМmits del sistema de fitxers de la FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "S'estЮ canviant la mida"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "A quina particiС voleu canviar la mida?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cРpia de seguretat de totes les dades d'aquesta particiС"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"DesprИs de canviar la mida de la particiС %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Crea una nova particiС"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PreferХncia: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Aquesta particiС no es pot utilitzar per al loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja estЮ utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1166,11 +1402,11 @@ msgstr ""
"La cРpia de seguretat de la taula de particions no tИ la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "AdvertХncia"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1178,79 +1414,79 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "S'estЮ intentant rescatar la taula de particions"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "nivell"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nou"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no sИ com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "ha fallat el muntatge de l'nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produОt un error en muntar %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de comenГar amb una /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una particiС amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produОt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1259,81 +1495,130 @@ msgstr ""
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "No teniu cap particiС!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr ""
"Escolliu l'idioma que voleu utilitzar per a la instal╥laciС i per a l'Зs del "
"sistema."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"Heu d'acceptar els termes de la llicХncia de mИs amunt per poder continuar "
+"la instal╥laciС.\n"
+"\n"
+"\n"
+"Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
+"\n"
+"\n"
+"Feu clic a \"No accpeto\" si no hi esteu d'acord. La instal╥laciС "
+"finalitzarЮ sense modificar la instal╥laciС actual."
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"Si desitgeu que altres idiomes (a mИs del que vau triar en\n"
+"iniciar la instal╥laciС) estiguin disponibles desprИs de la instal╥laciС,\n"
+"escolliu-los de la llista de mИs amunt. Si els voleu seleccionar tots,\n"
+"nomИs cal que seleccioneu \"Tots\"."
+
+#: ../../help.pm_.c:30
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-"Escolliu \"Instal╥laciС\" si no hi ha instal╥lada cap versiС anterior de "
-"Linux,\n"
-"o si voleu utilitzar diverses distribucions o versions.\n"
+"Escolliu \"Instal╥laciС\" si no teniu cap versiС anterior de Linux-Mandrake\n"
+"instal╥lada a l'ordinador o si voleu utilitzar diversos sistemes operatius.\n"
"\n"
-"Escolliu \"ActualitzaciС\" si voleu actualitzar una versiС anterior de\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 o 7.0 (Air).\n"
"\n"
+"Escolliu \"ActualitzaciС\" si voleu actualitzar un versiС de Linux-Mandrake "
+"que ja estЮ instal╥lada.\n"
+"\n"
+"\n"
+"Segons els vostres coneixements de GNU/Linux, podeu escollir un dels "
+"nivells\n"
+"segЭents d'instal╥laciС o actualitzaciС del sistema operatiu "
+"Linux-Mandrake:\n"
+"\n"
+"\t* Recomanada: si mai no heu instal╥lat un sistema operatiu GNU/Linux,\n"
+"escolliu aquest. La instal╥laciС serЮ molt fЮcil i nomИs se us faran\n"
+"unes poques preguntes.\n"
"\n"
-"Seleccioneu:\n"
"\n"
-" - AutomЮtica (recomanada): Si mai no heu instal╥lat el Linux,\n"
-"escolliu aquesta. NOTA:\n"
-" la xarxa no es configurarЮ durant la instal╥laciС, utilitzeu\n"
-"\"LinuxConf\"\n"
-" per configurar-la desprИs de que finalitzi la instal╥laciС.\n"
+"\t* Personalitzada: si coneixeu prou el GNU/Linux, podeu escollir l'Зs\n"
+"principal (estaciС de treball, servidor, desenvolupament) del vostre\n"
+"sistema. Haureu de respondre mИs preguntes que en la instal╥laciС\n"
+"\"Recomanada\", de manera que, si escolliu aquest tipus d'instal╥laciС,\n"
+"haureu de saber com funciona el GNU/Linux.\n"
"\n"
-" - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-" triar l'Зs principal del vostre ordinador. Consulteu-ne els detalls\n"
-" mИs avall.\n"
"\n"
-" - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-"una\n"
-" instal╥laciС altament personalitzada. Com en el cas del tipus\n"
-" d'instal╥laciС \"Personalitzada\", podreu seleccionar l'Зs del vostre\n"
-" sistema.\n"
-" PerР, SI US PLAU, NO TRIEU AQUESTA OPCIс TRET QUE SAPIGUEU QUх ESTEU "
-"FENT!\n"
+"\t* Per a experts: si domineu el GNU/Linux, trieu aquest tipus\n"
+"d'instal╥laciС. Com en el cas de la instal╥laciС \"Personalitzada\"\n"
+"podreu escollir l'Зs principal del vostre ordinador (estaciС de treball,\n"
+"servidor, desenvolupament). Aneu amb molt de compte abans de triar aquest\n"
+"tipus d'instal╥laciС; podreu realitzar una instal╥laciС altament\n"
+"personalitzada.\n"
+"\t La resposta a algunes preguntes pot ser molt difМcil si no teniu sРlids\n"
+"coneixements de GNU/Linux. Per tant, no escolliu aquest tipus "
+"d'instal╥laciС\n"
+"tret que sapigueu quХ esteu fent."
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1341,12 +1626,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Seleccioneu:\n"
"\n"
@@ -1362,374 +1648,931 @@ msgstr ""
" - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
"instal╥laciС totalment personalitzada, aquest Иs el vostre\n"
"tipus d'instal╥laciС. Podreu seleccionar l'Зs del vostre sistema\n"
-"com a \"Personalitzada\".\n"
+"com a \"Personalitzada\"."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
-msgstr ""
-"Les diferents opcions per a la utilitzaciС del vostre ordinador (assumint\n"
-"que hagueu triat el tipus d'instal╥laciС \"Personalitzada\" o \"Experta\")\n"
-"sСn les segЭents:\n"
-"\n"
-" - Normal: trieu-la si penseu utilitzar l'ordinador principalement per a\n"
-"l'Зs quotidiЮ (feina d'oficina, manipulaciС de grЮfics, etc.). No\n"
-"s'instal╥larЮ cap compilador, utilitat de desenvolupament, etc.\n"
-"\n"
-" - Desenvolupament: com indica el seu nom, trieu-la si penseu utilitzar\n"
-"l'ordinador per a desenvolupament de programari. Disposareu d'un complet\n"
-"ventall de programes per compilar, depurar i formatar codi font, o crear\n"
-"paquets de programari.\n"
-"\n"
-" - Servidor: trieu-la si l'ordinador on esteu instal╥lant la "
-"Linux-Mandrake\n"
-"s'utilitzarЮ com a servidor, ja sigui un servidor de fitxers (NFS o SMB),\n"
-"d'impressiС (protocol Unix lp (impressora en lМnia) o impressiС SMB de "
-"tipus\n"
-"Windows), d'autenticaciС (NIS), de bases de dades, etc. Per tant, no\n"
-"s'instal╥laran coses com el KDE, GNOME...\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
+msgstr ""
+"Ara heu de decidir com utilitzareu l'ordinador. Les opcions sСn:\n"
+"\n"
+"\t* EstaciС de treball: l'elecciС ideal si penseu utilitzar l'ordinador "
+"bЮsicament per a l'Зs quotidiЮ, a la feina o\n"
+"\t a casa.\n"
+"\n"
+"\n"
+"\t* Desenvolupament: si penseu utilitzar l'ordinador bЮsicament per a "
+"desenvolupament de programari, aquesta Иs l'elecciС ideal.\n"
+"\t Tindreu instal╥lada una completa col╥lecciС de programari per poder "
+"compilar, depurar i formatar codi font,\n"
+"\t o crear paquets de programari.\n"
+"\n"
+"\n"
+"\t* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta Иs "
+"l'elecciС ideal, ja sigui un servidor de fitxers (NFS o\n"
+"\t SMB), un servidor d'impressiС (tipus Unix o Microsoft Windows), un "
+"servidor d'autenticaciС (NIS), un servidor\n"
+"\t de bases de dades, etc. En canvi, no espereu que se us instal╥lin coses "
+"com ara el KDE, el GNOME, etc.)"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"En primer lloc, el DrakX intentarЮ trobar un o mИs adaptadors SCSI\n"
-"PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-"l'inserirЮ o els inserirЮ automЮticament.\n"
+"El DrakX intentarЮ trobar el(s) adaptador(s) SCSI PCI. \n"
+"Si en troba, i sap quin programa de control utilitzar, el(s)\n"
+"instal╥larЮ automЮticament.\n"
"\n"
"\n"
-"Si el vostre adaptador SCSI Иs una targeta ISA, o si Иs PCI perР\n"
-"el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-"si no teniu cap adaptador SCSI, se us preguntarЮ si en teniu un o\n"
-"no. Si no en teniu cap, respongueu \"No\". Si en teniu un o mИs,\n"
-"respongueu \"SМ\". ApareixerЮ una llista de programes de control,\n"
-"de la qual n'haureu de triar un.\n"
+"Si no teniu cap adaptador SCSI, un adaptador SCSI ISA, o un\n"
+"adaptador SCSI PCI que el DrakX no reconegui, se us demanarЮ si teniu\n"
+"un adaptador SCSI al sistema. Si no en teniu cap, simplement feu clic a "
+"\"No\". Si feu\n"
+"clic a \"SМ\", apareixerЮ una llista de programes de control on podreu\n"
+"seleccionar l'adaptador concret.\n"
"\n"
"\n"
-"Un cop hagueu triat el programa de control, el DrakX us preguntarЮ\n"
-"si voleu establir-ne les opcions. Primer, perР, deixeu que el\n"
-"programa de control explori el maquinari: normalment funciona bИ.\n"
+"Si heu hagut de seleccionar l'adaptador manualment, el DrakX us preguntarЮ\n"
+"si voleu indicar opcions per a ell. ConvИ que deixeu que el DrakX comprovi\n"
+"el maquinari per a les opcions; aixР sol funcionar bИ.\n"
"\n"
"\n"
-"Si no, no oblideu la informaciС sobre el vostre maquinari que\n"
-"pugueu aconseguir a la documentaciС o al Windows (si el teniu al\n"
-"sistema), com aconsella la guia d'instal╥laciС. Aquestes sСn les\n"
-"opcions que haureu de proporcionar al programa de control."
+"Si no, us caldrЮ proporcionar les opcions al programa de control. Consulteu\n"
+"el capМtol 3 de la Guia de l'usuari, secciС \"InformaciС obtinguda del\n"
+"maquinari\" per saber com treure aquesta informaciС de la documentaciС del\n"
+"maquinari, del lloc web del fabricant (si teniu accИs a Internet) o del\n"
+"Microsoft Windows (si el teniu al sistema)."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"En aquest moment podeu decidir quina(es) particiС(ns) voleu utilitzar\n"
-"per instal╥lar el sistema Linux-Mandrake, si Иs que ja es va(n)\n"
-"definir (en una instal╥laciС anterior del Linux o mitjanГant una\n"
-"altra eina de particiС). En cas contrari, s'han de definir les\n"
-"particions del disc dur: aquesta operaciС consisteix en dividir el\n"
-"disc dur de l'ordinador en Юrees lРgiques separades.\n"
+"Ara Иs quan heu de decidir en quin lloc del vostre disc dur voleu "
+"instal╥lar\n"
+"el sistema operatiu Linux-Mandrake. Si el disc Иs buit, o si un sistema\n"
+"operatiu existent n'utilitza tot l'espai disponible, us caldrЮ particionar-\n"
+"lo. BЮsicament, particionar un disc dur consisteix en dividir-lo de manera\n"
+"lРgica per crear espai on instal╥lar el nou sistema Linux-Mandrake.\n"
+"\n"
+"\n"
+"AtХs que els efectes d'aquest procИs solen ser irreversibles, el "
+"particionament \n"
+"us pot espantar si sou un usuari sense experiХncia.\n"
+"Aquest assistent simplifica aquest procИs; abans de comenГar, consulteu el\n"
+"manual i preneu-vos el temps que calgui.\n"
+"\n"
+"\n"
+"Necessiteu, com a mМnim, dues particions, una per al sistema operatiu en\n"
+"si i l'altra per a la memРria virtual (anomenada tambИ \"Intercanvi\").\n"
+"\n"
+"\n"
+"Si les particions ja s'han definit (en una instal╥laciС anterior o "
+"mitjanГant\n"
+"una altra eina de particionament), nomИs caldrЮ que seleccioneu les que "
+"voleu\n"
+"utilitzar per instal╥lar el sistema Linux.\n"
"\n"
"\n"
-"Si heu de crear noves particions, utilitzeu \"AssignaciС\n"
-"automЮtica\" per crear particions per al Linux de manera automЮtica.\n"
-"Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-"\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-"\"sda\" per a la primera unitat SCSI, i aixМ successivament.\n"
+"Si les particions encara no s'han definit, les heu de crear.\n"
+"Per fer-ho, utilitzeu l'assistent que trobareu mИs amunt; segons la\n"
+"configuraciС del vostre disc dur, hi ha diverses solucions possibles:\n"
"\n"
+"\t* Utilitzar una particiС existent: l'assistent ha detectat al vostre\n"
+"disc dur una o mИs particions de Linux existents. Si voleu conservar-les,\n"
+"escolliu aquesta opciС.\n"
"\n"
-"Dues particions habituals sСn: la particiС root (/), que Иs el punt\n"
-"d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-"/boot, que contИ tots els fitxers necessaris per iniciar el sistema\n"
-"operatiu quan s'arrenca l'ordinador per primer cop.\n"
"\n"
+"\t* Esborrar completament el disc: si voleu suprimir totes les dades i\n"
+"particions que teniu al disc dur i substituir-les pel sistema Linux-\n"
+"Mandrake, podeu escollir aquesta opciС. Aneu amb compte, perР, perquХ,\n"
+"un cop la confirmeu, no podreu fer-vos enrere.\n"
"\n"
-"Donat que aquest procИs sol ser irreversible, la particiС d'un disc\n"
-"Иs sovint un procИs que espanta als usuaris sense experiХncia, perР\n"
-"el DiskDrake simplifica molt aquest procИs. Consulteu la documentaciС\n"
-"i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-"particiС.\n"
"\n"
-"podeu abastar qualsevol opciС mitjanГant el teclat: desplaceu-vos per les "
-"particions amb el tabulador i les fletxes amunt i avalles tecles RePЮg i "
-"AvPЮgYou can reach any option using the keyboard: navigate through the "
+"\t* Utilitzar l'espai lliure de la particiС del Windows: si teniu el "
+"Microsoft\n"
+"Windows instal╥lat al disc dur i n'ocupa tot l'espai diponible, us hi "
+"caldrЮ\n"
+"crear espai lliure per a les dades del Linux. Per fer-ho, podeu suprimir la\n"
+"particiС i les dades del Windows (consulteu les opcions \"Esborrar "
+"completament\n"
+"el disc\" o \"Mode expert\") o canviar la mida de la particiС del Windows;\n"
+"aquest canvi de mida es pot dur a terme sense cap pХrdua de dades. Aquesta\n"
+"opciС Иs la mИs recomanable si voleu utilitzar tant el Linux-Mandrake com "
+"el\n"
+"Microsoft Windows al mateix ordinador.\n"
+"\n"
+"\n"
+"\t Abans de decidir-vos per aquesta opciС, tingueu en compte que la mida\n"
+"de la particiС del Microsoft Windows serЮ mИs petita que ara. AixР "
+"significa\n"
+"que tindreu menys espai lliure per emmagatzemar-hi dades o instal╥lar-hi "
+"mИs\n"
+"programari.\n"
+"\n"
+"\n"
+"\t* Mode expert: si voleu particionar el disc dur manualment, podeu triar\n"
+"aquesta opciС. Aneu amb compte, perquХ Иs molt potent perР tambИ perillosa;\n"
+"podeu perdre fЮcilment totes les dades. Per tant, no trieu aquesta opciС "
+"tret\n"
+"que sapigueu exactament quХ esteu fent."
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+"Ara Иs quan heu de decidir quina(es) particiС(ns) voleu utilitzar per\n"
+"instal╥lar el sistems Linux-Mandrake. Si ja s'han definit les particions "
+"(amb\n"
+"una instal╥laciС anterior de GNU/Linux o mitjanГant una altra eina de\n"
+"particionament), podeu utilitzar les particiones existents. En cas "
+"contrari,\n"
+"s'han de definir particions al disc dur.\n"
+"\n"
+"\n"
+"Per crear particions, primer heu de seleccionar un disc dur. Podeu "
+"seleccionar\n"
+"el disc que s'ha de particionar fent clic a \"hda\" per a la primera unitat\n"
+"IDE, \"hdb\" per a la segona o \"sda\" per a la primera unitat SCSI, etc.\n"
+"\n"
+"\n"
+"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
+"\n"
+" * Buidar-ho tot: aquesta opciС suprimeix totes les particions que hi ha\n"
+"al disc dur seleccionat.\n"
+"\n"
+"\n"
+" * AssignaciС automЮtica: aquesta opciС us permet crear automЮticament "
+"les\n"
+"particions Ext2 i Intercanvi en l'espai lliure del disc dur.\n"
+"\n"
+"\n"
+" * Rescatar la taula de particions: si la taula de particions estЮ\n"
+"malmesa, podeu intentar recuperar-la mitjanГant aquesta opciС. Aneu\n"
+"amb compte i penseu que pot fallar.\n"
+"\n"
+"\n"
+" * Desfer: podeu utilitzar aquesta opciС per anul╥lar els canvis.\n"
+"\n"
+"\n"
+" * Tornar a carregar: podeu utilitzar aquesta opciС si voleu desfer\n"
+"tots els canvis i carregar la taula de particions inicial.\n"
+"\n"
+"\n"
+" * Assistent: Si voleu utilitzar un assistent per particionar el disc "
+"dur,\n"
+"podeu utilitzar aquesta opciС, que Иs la mИs recomanable si no teniu massa\n"
+"coneixements de particionament.\n"
+"\n"
+"\n"
+" * Restaurar des de disquet: si, en una instal╥laciС anterior, vau desar\n"
+"la taula de particions en un disquet, podeu recuperar-la mitjanГant aquesta\n"
+"opciС.\n"
+"\n"
+"\n"
+" * Desar en disquet: si voleu desar la taula de particions en un disquet\n"
+"per poder-la recuperar, podeu utilitzar aquesta opciС. иs molt recomanable\n"
+"que l'utilitzeu.\n"
+"\n"
+"\n"
+" * Fet: quan hagueu acabat de particionar el disc dur, utilizeu aquesta\n"
+"opciС per desar els canvis.\n"
+"\n"
+"\n"
+"Per a la vostra informaciС, podeu accedir a qualsevol opciС mitjanГant el "
+"teclat:\n"
+"moveu-vos per les particions amb la tecles Tab i Fletxa amunt/Fletxa avall.\n"
+"\n"
+"\n"
+"Quan es selecciona una particiС, podeu utilitzar:\n"
+"\n"
+" * Ctrl+C per crear una nova particiС (quan se n'ha seleccionat\n"
+"una de buida)\n"
+"\n"
+" * Ctrl+D per suprimir una particiС\n"
+"\n"
+" * Ctrl+M per definir el punt de muntatge"
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:218
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+"Aquestes sСn les particions de Linux existents que s'han detectat a la\n"
+"vostra unitat de disc dur. Podeu conservar les eleccions fetes per "
+"l'assistent,\n"
+"sСn adequades per a un Зs normal. Si les canvieu, heu de definir una "
+"particiС\n"
+"root (\"/\"); no escolliu una particiС massa petita, o no podreu instal╥lar\n"
+"prou programari. Si voleu emmagatzemar les dades en una altra particiС, "
+"tambИ\n"
+"haureu de seleccionar una \"/home\" (nomИs si teniu mИs d'una particiС de\n"
+"Linux).\n"
+"\n"
+"\n"
+"Per a la vostra informaciС, cada particiС estЮ identificada d'aquesta "
+"manera: \"Nom\", \"Capacitat\".\n"
+"\n"
+"\n"
+"\"Nom\" es compon de: \"tipus d'unitat de disc\", \"nЗmero d'unitat de "
+"disc\",\n"
+"\"nЗmero de la particiС\" (per exemple, \"hda1\").\n"
+"\n"
+"\n"
+"\"Tipus d'unitat de disc\" Иs \"hd\" si la vostre unitat de disc Иs IDE i "
+"\"sd\"\n"
+"si Иs SCSI.\n"
+"\n"
+"\n"
+"\"NЗmero de la unitat de disc\" Иs sempre una lletra desprИs d'\"hd\" o "
+"\"sd\".\n"
+"Amb unitats de disc IDE:\n"
+"\n"
+" * \"a\" significa \"unitat de disc mestre en el controlador IDE "
+"primari\",\n"
+"\n"
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE "
+"primari\",\n"
+"\n"
+" * \"c\" significa \"unitat de disc mestre en el controlador IDE "
+"secundari\",\n"
+"\n"
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE "
+"secundari\".\n"
+"\n"
+"\n"
+"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primЮria de "
+"disc\", una \"b\" significa \"unitat secundЮria de disc\", etc..."
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+"Escolliu el disc dur que voleu buidar per instal╥lar la nova particiС "
+"Linux-\n"
+"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
+"recuperar."
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+"Feu clic a \"D'acord\" si voleu suprimir totes les dades i\n"
+"particions que hi ha en aquesta unitat de disc. Aneu amb compte, perquХ, un "
+"cop hagueu fet clic a \"D'acord\", no podreu recuperar cap dada ni particiС "
+"del disc,\n"
+"incloent las dades de Windows.\n"
+"\n"
+"\n"
+"Feu clic a \"Cancel╥la\" per anul╥lar aquesta operaciС sense perdre cap "
+"dada\n"
+"ni particiС d'aquest disc."
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+"S'ha detectat mИs d'una particiС de Microsoft Windows en la unitat de disc.\n"
+"Si us plau, trieu quina d'elles voleu redimensionar per instal╥lar el nou\n"
+"sistema operatiu Linux-Mandrake.\n"
+"\n"
+"\n"
+"Per a la vostra informaciС, cada particiС estЮ identificada d'aquesta "
+"manera; \"Nom Linux\", \"Nom\n"
+"Windows\" \"Capacitat\".\n"
+"\n"
+"\"Nom Linux\" es compon de: \"tipus d'unitat de disc\", \"nЗmero d'unitat de "
+"disc\",\n"
+"\"nЗmero de la particiС\" (per exemple, \"hda1\").\n"
+"\n"
+"\n"
+"\"Tipus d'unitat de disc\" Иs \"hd\" si la vostre unitat de disc Иs IDE i "
+"\"sd\"\n"
+"si Иs SCSI.\n"
+"\n"
+"\n"
+"\"NЗmero de la unitat de disc\" Иs sempre una lletra desprИs d'\"hd\" o "
+"\"sd\".\n"
+"Amb unitats de disc IDE:\n"
+"\n"
+" * \"a\" significa \"unitat de disc mestre en el controlador IDE "
+"primari\",\n"
+"\n"
+" * \"b\" significa \"unitat de disc esclava en el controlador IDE "
+"primari\",\n"
+"\n"
+" * \"c\" significa \"unitat de disc mestre en el controlador IDE "
+"secundari\",\n"
+"\n"
+" * \"d\" significa \"unitat de disc esclava en el controlador IDE "
+"secundari\".\n"
+"\n"
+"\n"
+"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primЮria de "
+"disc\", una \"b\" significa \"unitat secundЮria de disc\", etc...\n"
+"\n"
+"\"Nom Windows\" Иs la lletra de la vostra unitat de disc sota Windows (el "
+"primer disc o particiС s'anomena \"C:\")."
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+"Si us plau, tingueu paciХncia. Aquesta operaciС pot trigar diversos minuts."
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Cal formatar les particions que s'acaben de definir per poder-les\n"
-"utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-"En aquest punt podeu, si voleu, tornar a formatar particions\n"
-"existents per eliminar les dades que contenen. Nota: no Иs\n"
-"necessari tornar a formatar les particions existents, especialment\n"
-"si contenen fitxers o dades que voleu conservar.\n"
-"Els directoris que es solen conservar sСn /home i /usr/local."
+"Les particions que s'acaben de definir s'han de formatar per poder-les\n"
+"utilitzar. El formatatge consisteix en crear-hi un sistema de fitxers).\n"
+"\n"
+"\n"
+"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
+"existents per eliminar les dades que contenen. Si Иs aixМ, seleccioneu les\n"
+"particions que voleu formatar.\n"
+"\n"
+"\n"
+"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
+"existien; heu de tornar a formatar les particions que contenen el sistema\n"
+"operatiu (com ara \"/\", \"/usr\" o \"/var\"), perР no les que contenen "
+"dades\n"
+"que voleu conservar (habitualment, /home).\n"
+"\n"
+"\n"
+"Aneu amb compte en seleccionar les particions; desprИs del formatatge, "
+"totes\n"
+"les dades s'hauran suprimit i no en podreu recuperar cap.\n"
+"\n"
+"\n"
+"Feu clic a \"D'acord\" quan estigueu a punt per formatar les particions.\n"
+"\n"
+"\n"
+"Feu clic a \"Cancel╥la\" si voleu seleccionar altres particions per "
+"instal╥lar\n"
+"el nou sistema Linux-Mandrake."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Ara podeu seleccionar el grup de paquets que voleu instal╥lar o "
"actualitzar.\n"
"\n"
+"\n"
"El DrakX comprovarЮ si teniu prou espai per instal╥lar-los tots i, si no, "
"us\n"
-"ho avisarЮ. Si igualment voleu seguir, continuarЮ amb la instal╥laciС de "
+"ho avisarЮ. Si voleu seguir igualment, continuarЮ amb la instal╥laciС de "
"tots\n"
-"els grups seleccionats perР no n'instal╥larЮ alguns de menys utils. Al "
+"els grups seleccionats perР no n'instal╥larЮ alguns de menys interХs. Al "
"final\n"
"de la llista podeu seleccionar l'opciС \"SelecciС individual de paquets\", "
"i\n"
"en aquest cas haureu de navegar per mИs de 1.000 paquets..."
-#: ../../help.pm_.c:150
-msgid ""
-"If you have all the CDs in the list above, 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 ""
-"Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-"Si no teniu cap d'aquests CD, feu clic a Cancel╥la.\n"
-"Si nomИs falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:341
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
-msgstr ""
-"Ara s'estan instal╥lant els paquets seleccionats. Aquesta operaciС\n"
-"trigarЮ pocs minuts, tret que hagueu escollit actualitzar un\n"
-"sistema existent; en aquest cas trigarЮ mИs temps, fins i tot\n"
-"abans que s'iniciО la instal╥laciС."
-
-#: ../../help.pm_.c:161
-msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Si el DrakX no ha pogut trobar el ratolМ, o si voleu comprovar quХ\n"
-"ha fet, a la part superior apareixerЮ la llista de ratolins.\n"
+"Ara podeu triar individualment tots els paquets que voleu instal╥lar.\n"
"\n"
"\n"
-"Si esteu d'acord amb els parЮmetres del DrakX, passeu a la secciС\n"
-"desitjada fent-hi clic al menЗ de l'esquerra, Si no, escolliu al\n"
-"el tipus de ratolМ que us sembli mИs semblant al vostre.\n"
+"Podeu expandir o reduir l'arbre fent clic a les opcions del racС esquerre de "
+"la finestra de paquets.\n"
"\n"
"\n"
-"Si es tracta d'un ratolМ sХrie, tambИ us caldrЮ indicar al DrakX a\n"
-"quin port sХrie estЮ connectat."
+"Si preferiu veure els paquets ordenats alfabХticament, feu clic a la icona\n"
+"\"Commuta entre ordenaciС plana i per grups\".\n"
+"\n"
+"\n"
+"Si no voleu ser avisat pel que fa a les dependХncies, feu clic a "
+"\"DependХncies\n"
+"automЮtiques\". Si ho feu, tingueu en compte que el fet de desseleccionar\n"
+"un paquet pot causar la desselecciС d'altres paquets que en depenen, i no\n"
+"us n'assabentareu."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:358
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 del\n"
-"Windows s'anomena ttyS0 en Linux."
+"Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
+"Si no teniu cap d'aquests CD, feu clic a Cancel╥la.\n"
+"Si nomИs falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:363
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"Please be patient."
+msgstr ""
+"El nou sistema operatiu Linux-Mandrake s'estЮ instal╥lant. Aquesta\n"
+"operaciС trigarЮ uns quants minuts (dependrЮ de la mida total que\n"
+"hagueu escollit instal╥lar i de la velocitat del vostre ordinador).\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"\n"
+"Si us plau, tingueu paciХncia."
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+"Ara podeu provar el ratolМ. Utilitzeu els botons i la bola per comprovar "
+"que\n"
+"els parЮmetres sСn correctes; si no ho sСn, feu clic a \"Cancel╥la\" per\n"
+"seleccionar un altre controlador."
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
+"Windows s'anomena ttyS0 en GNU/Linux."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Aquesta secciС estЮ dedicada a la configuraciС d'una xarxa local\n"
-"(LAN) o d'un mРdem.\n"
+"Si voleu connectar l'ordinador a Internet o a una xarxa local, seleccioneu\n"
+"l'opciС corresponent, perР abans recordeu engegar el dispositiu per tal que\n"
+"el DrakX el detecti automЮticament.\n"
"\n"
-"Escolliu \"LAN local\" i el DrakX intentarЮ trobar un adaptador\n"
-"Ethernet al vostre ordinador. El sistema trobarЮ i inicialitzarЮ\n"
-"automЮticament els adaptadors PCI.\n"
-"No obstant aixР, si el vostre perifХric Иs ISA, la detecciС\n"
-"no funcionarЮ, i us caldrЮ escollir un programa de control a la\n"
-"llista que apareixerЮ.\n"
"\n"
+"Si no teniu connexiС a Internet ni a cap xarxa local, escolliu \"Inhabilita "
+"el servei de xarxa\".\n"
"\n"
-"Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-"el programa de control comprovi l'adaptador; si no ho feu aixМ, us\n"
-"caldrЮ especificar les opcions del programa de control que haureu\n"
-"d'anar a buscar a la documentaciС del vostre maquinari.\n"
+"\n"
+"Si voleu configurar la xarxa mИs endavant, desprИs de la instal╥laciС, o si\n"
+"heu acabat la configuraciС de la connexiС de xarxa, trieu \"Fet\"."
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
"\n"
-"Si instal╥leu un sistema Linux-Mandrake en un ordinador que forma\n"
-"part d'una xarxa existent, l'administrador de la xarxa us haurЮ de\n"
-"facilitar la informaciС necessЮria (l'adreГa IP, la submЮscara de\n"
-"xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-"xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"No s'ha detectat cap mРdem. Si us plau, seleccioneu el port sХrie on estЮ "
+"connectat.\n"
"\n"
"\n"
-"Escolliu \"Marcatge amb mРdem\" i es configurarЮ la connexiС a\n"
-"Internet amb un mРdem. El DrakX intentarЮ trobar el mРdem, perР,\n"
-"si no se'n surt, us caldrЮ seleccionar el port sХrie al qual estЮ\n"
-"connectat."
+"Per a la vostra informaciС, el primer port sХrie (anomenat \"COM1\" en "
+"Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:400
msgid ""
-"Enter:\n"
-"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
-"\n"
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+"Ara podeu introduir les opcions de marcatge. Si no sabeu quХ heu "
+"d'introduir,\n"
+"o si no n'esteu segur, podreu aconseguir la informaciС necessЮria del "
+"vostre\n"
+"proveОdor d'Internet. Si no introduОu aquМ la informaciС del DNS (servidor "
+"de\n"
+"noms), aquesta informaciС s'obtindrЮ del proveОdor en el moment de connectar."
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+"Si el mРdem que teniu Иs extern, engegueu-lo per tal que el DrakX el detecti "
+"automЮticament."
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "Si us plau, engegueu el mРdem i trieu-ne el correcte."
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+"Si no esteu segur de si la informaciС de mИs amunt Иs correcta, si no sabeu\n"
+"quХ introduir o si no n'esteu segur, podreu aconseguir la informaciС\n"
+"necessЮria del vostre proveОdor d'Internet. Si no introduОu aquМ la\n"
+"informaciС del DNS (servidor de noms), aquesta informaciС s'obtindrЮ del\n"
+"proveОdor en el moment de connectar."
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Ara podeu introduir el nom del vostre ordinador central. Si no esteu segur "
+"del que hi\n"
+"heu d'introduir, el vostre proveОdor us en donarЮ la informaciС correcta."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"IntroduОu:\n"
-"\n"
-" - AdreГa IP: si no la sabeu, pregunteu-la a l'administrador de la xarxa.\n"
+"Ara podeu configurar el voste dispositiu de xarxa.\n"
"\n"
+" * AdreГa IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
+"l'administrador de la xarxa.\n"
+" No heu d'introduir cap adreГa IP si mИs avall seleccioneu l'opciС \"IP "
+"automЮtica\".\n"
"\n"
-" - MЮscara de la xarxa: Normalment, \"255.255.255.0\" Иs una bona elecciС.\n"
+" * MЮscara de la xarxa: Normalment, \"255.255.255.0\" Иs una bona elecciС. "
"Si no n'esteu segur, consulteu-ho a l'administrador de la xarxa.\n"
"\n"
-"\n"
-" - IP automЮtica: si la vostra xarxa utilitza el protocol bootp o dhcp,\n"
-"seleccioneu aquesta opciС. Si es selecciona no cal cap valor per a \"AdreГa\n"
-"IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la xarxa.\n"
+" * IP automЮtica: si la vostra xarxa utilitza els protocols BOOTP o DHCP,\n"
+"seleccioneu aquesta opciС. Si es selecciona, no cal cap valor per a \"AdreГa "
+"IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la xarxa."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Ara podeu introduir el nom del vostre ordinador central, si cal. Si no el\n"
+"sabeu, o no esteu segur de quХ heu d'introduir, consulteu a l'administrador "
+"de la xarxa."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
+"el sabeu, o si esteu segur de quХ introduir, deixeu-ho en blanc."
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1737,7 +2580,7 @@ msgstr ""
"Ara podeu introduir les opcions de marcatge. Si no esteu segur del que hi\n"
"heu d'introduir, el vostre proveОdor us en donarЮ la informaciС correcta."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1746,128 +2589,328 @@ msgstr ""
"n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
"proveОdor."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"Podeu instal╥lar el paquet criptogrЮfic si la vostra connexiС a Internet\n"
-"s'ha configurat correctament. Escolliu primer un mirror des del qual\n"
+"s'ha configurat correctament. Escolliu primer una rХpilca des de la qual\n"
"vulgueu descarregar paquets i desprИs seleccioneu els paquets a instal╥lar.\n"
"\n"
-"Tingueu en compte que heu de seleccionar el mirror i la criptografia\n"
-"segons la vostra legislaciС."
+"\n"
+"Tingueu en compte que heu de seleccionar la rХplica i els paquets\n"
+"criptogrЮfics segons la vostra legislaciС."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "Ara podeu seleccionar la zona horЮria segons el lloc on viviu."
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Ara podeu seleccionar la zona horЮria segons el vostre lloc de residХncia.\n"
-"El Linux gestiona l'hora en GMT o \"Hora de Greenwich\" i la\n"
-"tradueix a l'hora local segons la zona horЮria seleccionada."
+"El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
+"tradueix a l'hora local segons la zona horЮria seleccionada.\n"
+"\n"
+"\n"
+"Si utilitzeu Microsoft Windows en aquest ordinador, trieu \"No\"."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-"Ara podeu triar quins serveis voleu que s'iniciОn durant l'arrencada. Quan\n"
-"el ratolМ passi sobre un element apareixerЮ un petit globus d'ajuda que\n"
+"Ara podeu triar quins serveis voleu que s'iniciОn durant l'arrencada.\n"
+"\n"
+"\n"
+"Quan el ratolМ passi sobre un element apareixerЮ un petit globus d'ajuda "
+"que\n"
"explica la finalitat del servei.\n"
-"|nAneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador\n"
-"com a servidor: segurament no us interessarЮ iniciar serveis que no voleu."
+"\n"
+"\n"
+"Aneu especialment amb cura en aquest pas si penseu utilitzar l'ordinador "
+"com\n"
+"a servidor: segurament no us interessarЮ iniciar serveis que no necessiteu.\n"
+"Recordeu que hi ha diversos serveis que poden ser perillosos si s'habiliten\n"
+"en un servidor.\n"
+"En general, seleccioneu nomИs els serveis que realment necessiteu."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
+"remota (accessible mitjanГant una xarxa Unix, Netware o Microsoft Windows)."
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+"Si voleu imprimir, trieu un sistema de impressiС entre CUPS i LPR.\n"
+"\n"
+"\n"
+"El CUPS Иs un nou sistema d'impressiС, potent i flexible, per a sistemes "
+"Unix\n"
+"(CUPS significa \"Common Unix Printing System\"). иs el sistema d'impressiС\n"
+"per defecte en Linux-Mandrake.\n"
+"\n"
+"\n"
+"L'LPR Иs l'antic sistema d'impressiС utilitzat en distribucions anteriors "
+"de\n"
+"Linux-Mandrake distributions.\n"
+"\n"
+"\n"
+"Si no teniu impressora, feu clic a \"Cap\"."
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+"El GNU/Linux pot treballar amb molts tipus d'impressores, perР cada un\n"
+"d'aquests tipus requereix una configuraciС diferent.\n"
+"\n"
+"\n"
+"Si teniu la impressora connectada fМsicament a l'ordinador, seleccioneu\n"
+"\"Impressora local\".\n"
+"\n"
+"\n"
+"Si voleu accedir a una impressora que es troba en un ordinador Unix remot,\n"
+"seleccioneu \"Impressora remota\".\n"
+"\n"
+"\n"
+"Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
+"Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
+"seleccioneu \"SMB/Windows 95/98/NT\"."
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"El Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-"un d'aquests tipus, perР, cal una configuraciС diferent. Tingueu\n"
-"en compte, perР, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-"per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-"No obstant aixР, podeu donar diferents noms a una impressora, separant-\n"
-"los amb el carЮcter '|'. D'aquesta manera, si voleu donar-li un nom mИs\n"
-"aclaridor nomИs us caldrЮ indicar-lo en primer lloc, p.ex. \"La meva\n"
-"impressora|lp\".\n"
-"La impressora que contingui \"lp\" al(s) nom(s) serЮ la impressora per\n"
-"defecte\n"
+"Si us plau, engegueu la impressora abans de continuar per tal que el DrakX\n"
+"la pugui detectar.\n"
"\n"
+"AquМ heu d'introduir algunes dades.\n"
"\n"
-"Si la vostra impressora estЮ connectada directament a l'ordinador,\n"
-"seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-"estЮ connectada i seleccionar-ne el filtre corresponent.\n"
"\n"
+" * Nom de la impressora: l'spool d'impressiС utilitza \"lp\" com a nom "
+"per\n"
+"omissiС de la impressora. Per tant, heu de tenir una impressora anomenada\n"
+"\"lp\".\n"
+" Si nomИs teniu una impressora, podeu donar-li diversos;\n"
+"noms; nomИs cal que els separeu amb el carЮcter \"|\". Per tant,\n"
+"si preferiu un nom mИs expressiu, l'heu d'indicar en primer lloc\n"
+"(per exemple: \"La meva impressora|lp\").\n"
+" La impressora que contingui \"lp\" al(s) nom(s) serЮ la impressora per "
+"omissiС.\n"
"\n"
-"Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-"remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-"cal cap nom d'usuari ni contrasenya, perР us caldrЮ saber el nom\n"
-"de la cua d'impressiС del servidor remot.\n"
"\n"
+" * DescripciС: Иs opcional, perР pot ser Зtil si teniu diverses\n"
+"impressores connectades a l'ordinador o si permeteu que altres\n"
+"ordinadors accedeixin a aquesta impressora.\n"
"\n"
-"Si voleu accedir a una impressora SMB (Иs a dir, una impressora\n"
-"que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-"fer haureu d'indicar el seu nom SMB (que no Иs el seu nom TCP/IP)\n"
-"i possiblement la seva adreГa IP, nom d'usuari, grup de treball,\n"
-"contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-"per a una impressora NetWare, perР en aquest cas no us caldrЮ la\n"
-"informaciС del grup de treball."
+"\n"
+" * UbicaciС: si voleu incloure informaciС sobre la ubicaciС de la\n"
+"impressora, feu-ho aquМ (podeu escriure el que vulgueu, (per exemple,\n"
+"\"2n pis\").\n"
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:542
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+"AquМ heu d'introduir algunes dades.\n"
+"\n"
+"\n"
+" * Nom de la cua: l'spool d'impressiС utilitza \"lp\" com a nom per\n"
+"omissiС de la impressora. Per tant, heu de tenir una impressora anomenada\n"
+"\"lp\".\n"
+" Si nomИs teniu una impressora, podeu donar-li diversos;\n"
+"noms; nomИs cal que els separeu amb el carЮcter \"|\". Per tant,\n"
+"si preferiu un nom mИs expressiu, l'heu d'indicar en primer lloc\n"
+"(per exemple: \"La meva impressora|lp\").\n"
+" La impressora que contingui \"lp\" al(s) nom(s) serЮ la impressora per "
+"omissiС.\n"
+"\n"
+" \n"
+" * Directori d'spool: les tasques d'impressiС s'emmagatzemen en aquest "
+"directori.Conserveu la opciС predeterminada si no sabeu quina utilitzar\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
+"remot, seleccioneu \"Impressora lpd remota\".\n"
+"\n"
+"\n"
+" Si voleu accedir a una impressora que es troba en un ordinador\n"
+"Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
+"SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
+"\n"
+" Si voleu accedir a una impressora que es troba en una xarxa NetWare,\n"
+"seleccioneu \"NetWare\".\n"
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"No s'ha detectat la vostra impressora. Si us plau, introduОu el nom del\n"
+"dispositiu a quХ estЮ connectada.\n"
+"\n"
+"\n"
+"Per a la vostra informaciС, la majoria d'impressores estan connectades al\n"
+"primer port paral╥lel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1\"\n"
+"en Microsoft Windows."
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"Si us plau, seleccioneu les opcions correctes segons la vostra impressora;\n"
+"consulteu-ne la documentaciС si no sabeu quХ heu de seleccionar.\n"
+"\n"
+"\n"
+"Podreu comprovar la configuraciС en el pas segЭent i modificar-la si no\n"
+"funciona exactament com voleu."
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
"sistema Linux-Mandrake. Ho heu de fer dos cops per verificar que\n"
@@ -1876,16 +2919,20 @@ msgstr ""
"\n"
"L'usuari 'root' Иs l'administrador del sistema, i Иs l'Зnic\n"
"autoritzat per modificar la configuraciС del sistema; per tant,\n"
-"trieu amb molta cura aquesta contrasenya! L'Зs no autoritzat del\n"
+"trieu amb molta cura aquesta contrasenya. L'Зs no autoritzat del\n"
"compte 'root' pot ser extremadament perillСs per a la integritat\n"
"del sistema, per a les seves dades, i per a altres sistema que hi\n"
-"estan connectats. La contrasenya ha d'estar composada de carЮcters\n"
-"alfanumХrics, ha de tenir una llargada mМnima de 8 carЮcters, i\n"
-"MAI no s'ha d'anotar enlloc. No obstant aixР, no creeu una\n"
-"contrasenya excessivament llarga o complicada: heu de poder\n"
-"recordar-la sense problemes."
+"estan connectats.\n"
+"\n"
+"\n"
+"La contrasenya s'ha de crear amb diversos carЮcters alfanumХrics, ha de\n"
+"tenir una llargada mМnima de 8 carЮcters, i mai no s'ha d'anotar enlloc.\n"
+"\n"
+"\n"
+"No obstant aixР, no creeu una contrasenya excessivament llarga o\n"
+"complicada: heu de poder recordar-la sense problemes."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1893,7 +2940,7 @@ msgstr ""
"Per habilitar un sistema mИs segur, seleccioneu \"Utilitza el\n"
"fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1901,7 +2948,7 @@ msgstr ""
"Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
"sabeu, consulteu a l'administrador de la xarxa."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1944,35 +2991,33 @@ msgstr ""
"creat, i entreu-hi com a 'root' nomИs per a tasques d'administraciС\n"
"i manteniment."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"иs molt recomanable que respongueu \"SМ\" aquМ. Si mИs endavant\n"
-"instal╥leu el Windows, sobreescriurЮ el sector d'arrencada.\n"
-"Tret que hagueu fet el disc d'arrencada com es\n"
-"recomana, ja no podreu tornar a arrencar en Linux."
+"иs molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
+"l'ordinador,\n"
+"Иs l'Зnica manera de solucionar-ho sense haver de reinstal╥lar-ho tot."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Heu d'indicar on voleu situar la informaciС necessЮria per\n"
-"arrencar en Linux.\n"
+"arrencar el GNU/Linux.\n"
"\n"
"\n"
"Tret que sabeu exactament quХ esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1981,10 +3026,10 @@ msgstr ""
"habitual Иs \"/dev/hda\" (el disc IDE mestre primari) o bИ \"/dev/sda\"\n"
"(el primer disc SCSI)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1995,7 +3040,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"El LILO (Linux Loader, carregador de Linux) i el Grub sСn carregadors\n"
-"d'arrencada: poden arrencar el Linux o qualsevol altre sistema operatiu\n"
+"d'arrencada: poden arrencar el GNU/Linux o qualsevol altre sistema operatiu\n"
"que tingueu a l'ordinador. Normalment, aquests altres sistemes operatius\n"
"es detecten i instal╥len correctament, perР si no Иs aixМ, podeu afegir-los\n"
"manualment en aquesta pantalla. Aneu amb compte de triar els parЮmetres\n"
@@ -2006,7 +3051,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, perР\n"
"aleshores us caldrЮ un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2023,7 +3068,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"Les opcions principals del LILO i del Grub sСn:\n"
@@ -2047,10 +3094,62 @@ msgstr ""
" * normal: selecciona el mode de text 80x25 normal.\n"
" * <nЗmero>: utilitza el mode de text corresponent."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"El SILO Иs un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
+"GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
+"Normalment, aquests altres sistemes operatius es detecten i instal╥len\n"
+"correctament, perР si no Иs aixМ, podeu afegir-los manualment en aquesta\n"
+"pantalla. Aneu amb compte de triar els parЮmetres correctes.\n"
+"\n"
+"\n"
+"TambИ Иs possible que no volgueu donar accИs a tothom a aquests sistemes\n"
+"operatius; en aquest cas podeu suprimir les entrades corresponents, perР\n"
+"aleshores us caldrЮ un disc d'arrencada per poder-los arrencar!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"Les opcions principals del SILO sСn:\n"
+" - Instal╥laciС del carregador d'arrencada: indica on voleu situar la\n"
+"informaciС necessЮria per arrencar el GNU/Linux. Tret que sapigueu\n"
+"exactament quХ esteu fent, seleccioneu \"Primer sector de la unitat\n"
+"(MBR)\".\n"
+" \n"
+"\n"
+" - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
+"temps, en dХcimes de segon, que el carregador d'arrencada ha\n"
+"d'esperar abans de carregar la primera imatge.\n"
+"AixР Иs Зtil en sistemes que arrenquen immediatament des del disc\n"
+"dur desprИs d'habilitar el teclat. El carregador d'arrencada no\n"
+"esperarЮ si s'omet el \"temps d'espera\" o si se li dСna el valor zero."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2062,7 +3161,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Ara cal configurar el sistema X Window, que Иs el nucli del GUI\n"
-"(InterfМcie grЮfica d'usuari) del Linux. Per a aixР, heu de\n"
+"(InterfМcie grЮfica d'usuari) del GNU/Linux. Per a aixР, heu de\n"
"configurar la vostra targeta grЮfica i el monitor. No obstant\n"
"aixР, la majoria d'aquests passos estan automatitzats, aixМ que pot\n"
"ser que la vostra feina es limiti a verificar quХ s'ha fet i a\n"
@@ -2074,7 +3173,7 @@ msgstr ""
"convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
"com calgui."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2082,7 +3181,7 @@ msgstr ""
"Si hi ha algun problema a la configuraciС X, utilitzeu aquestes opcions\n"
"per configurar correctament l'X Window System."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2090,81 +3189,85 @@ msgstr ""
"Si preferiu utilitzar una entrada grЮfica, seleccioneu \"SМ\". En cas\n"
"contrari, seleccioneu \"No\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
"\n"
-" - UtilitzaciС de l'optimitzaciС del disc dur: Aquesta opciС pot\n"
-"millorar el funcionament del disc dur, perР Иs nomИs per a usuaris\n"
-"avanГats, ja que en podeu perdre les dades si s'utilitza\n"
-"incorrectament. Tingueu en compte que el nucli inclou una \"llista negra\"\n"
-"d'unitats i jocs de xips, perР, si voleu evitar-vos sorpreses "
-"desagradables,\n"
-"no activeu aquesta opciС.\n"
+"* UtilitzaciС de l'optimitzaciС del disc dur: Aquesta opciС pot millorar el\n"
+"rendiment del disc dur, perР Иs nomИs per a usuaris avanГats. Alguns xips\n"
+"amb errors poden fer malbИ les vostres dades, aixМ que aneu amb compte. El\n"
+"nucli inclou una \"llista negra\" d'unitats i jocs de xips, perР, si voleu\n"
+"evitar-vos sorpreses desagradables, no activeu aquesta opciС.\n"
+"\n"
"\n"
-" - SelecciС d'un nivell de seguretat: Podeu escollir un nivell de\n"
+"* SelecciС d'un nivell de seguretat: Podeu escollir un nivell de\n"
"seguretat per al sistema. Si us plau, consulteu el manual per a mИs\n"
-"informaciС. BЮsicament, si no n'esteu segur, trieu \"Mitjana\"; si voleu\n"
-"un ordinador realment segur, trieu \"Paranoica\", perР compte!: EN AQUEST\n"
-"NIVELL, L'USUARI ROOT NO POT ACCEDIR DES DE LA CONSOLA! Si voleu ser root,\n"
-"haureu d'entrar com a usuari i utilitzar \"su\" desprИs. En altres "
-"paraules,\n"
-"no espereu utilitzar l'ordinador si no Иs com a servidor. Esteu avisat.\n"
-"\n"
-" - Si cal, indicaciС de la mida exacta de la RAM: Malauradament, en el mСn "
-"de PC\n"
-"d'avui, no hi cap mХtode estЮndard per preguntar al BIOS la quantitat de "
-"RAM\n"
-"que hi ha a l'ordinador. Per tant, el Linux pot no poder detectar "
-"correctament\n"
-"la quantitat de RAM instal╥lada. Si Иs aquest el cas, en podeu indicar aquМ\n"
-"la quantitat correcta, perР penseu que una diferХncia de 2 o 4 MB Иs "
-"normal.\n"
-"\n"
-" - Muntatge automЮtic de suports extraОbles: Si preferiu no haver\n"
+"informaciС. BЮsicament, si no n'esteu segur, trieu l'opciС predeterminada.\n"
+"\n"
+"\n"
+"* Si cal, indicaciС de la mida exacta de la RAM: malauradament, no hi cap\n"
+"mХtode estЮndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
+"l'ordinador. Per tant, Иs possible que el Linux no pugui detectar\n"
+"correctament la quantitat de RAM instal╥lada. Si Иs aquest el cas, en podeu\n"
+"indicar aquМ la quantitat correcta, perР penseu que una diferХncia de 2 o 4\n"
+"MB entre la memРria detectada i la memРria real Иs normal.\n"
+"\n"
+"\n"
+"* Muntatge automЮtic de suports extraОbles: Si preferiu no haver\n"
"de muntar manualment les unitats extraОbles (CD-ROM, disquet, Zip)\n"
"escrivint \"mount\" i \"umount\", seleccioneu aquesta opciС.\n"
"\n"
-" - HabilitaciС de BlocNum a l'inici: Si voleu que BlocNum\n"
-"s'habiliti desprИs de l'arrencada, seleccioneu aquesta opciС\n"
-"(Nota: BlocNum pot funcionar o no sota X)."
+"\n"
+"* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els fitxers\n"
+"i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el sistema,\n"
+"seleccioneu aquesta opciС.\n"
+"\n"
+"\n"
+"* HabilitaciС de BlocNum a l'inici: Si voleu que BlocNum s'habiliti desprИs\n"
+"de l'arrencada, seleccioneu aquesta opciС. Tingueu en compte que no heu\n"
+"d'habilitar aquesta opciС en portЮtils i que BlocNum pot funcionar o pot no\n"
+"funcionar sota X."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2178,96 +3281,117 @@ msgstr ""
"automЮticament. Si voleu arrencar un altre sistema operatiu existent,\n"
"llegiu les instruccions addicionals."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Escolliu el vostre idioma"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Tipus d'instal╥laciС"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "DetecciС del disc dur"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Configura el ratolМ"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Escolliu el vostre teclat"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Miscel╥lЮnia"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Sistemes de fitxers"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formata les particions"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Paquets a instal╥lar"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instal╥la el sistema"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Configura la xarxa"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "CriptogrЮfic"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Zona horЮria"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Configura els serveis"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Configura la impressora"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Afegeix un usuari"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Crea un disc d'arrencada"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Instal╥la el LILO"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Configura l'X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Disquet d'instal╥laciС automЮtica"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Surt de la instal╥laciС"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "S'ha produОt un error en llegir el fitxer $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Si us plau, comproveu el ratolМ."
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "Per activar el ratolМ,"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "MOVEU LA BOLA!"
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Part del maquinari del vostre ordinador necessita programes de control\n"
+"``registrats'' per poder funcionar. En podeu trobar informaciС a: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2277,49 +3401,193 @@ msgstr ""
"Per fer-ho, creeu una particiС (o feu clic a una d'existent).\n"
"DesprИs, trieu l'acciС ``Punt de muntatge'' i doneu-li el valor '/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Heu de tenir una particiС d'intercanvi"
+
+#: ../../install_interactive.pm_.c:47
msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"No puc llegir la vostra taula de particions, estЮ massa malmesa per a mi :(\n"
-"IntentarИ seguir buidant les particions incorrectes"
+"No teniu cap particiС d'intercanvi\n"
+"\n"
+"Voleu continuar igualment?"
+
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Utilitza l'espai lliure"
+
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "No hi ha prou espai lliure per assignar noves particions"
+
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Utilitza la particiС existent"
+
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "No existeix cap particiС per utilitzar"
+
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Utilitza la particio Windows per al loopback"
+
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Quina particiС voleu utilitzar per al Linux4Win?"
+
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Escolliu les mides"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Mida de la particiС arrel en MB: "
+
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Mida de la particiС d'intercanvi en MB: "
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Utilitza l'espai lliure de la particiС de Windows"
+
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "A quina particiС voleu canviar la mida?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "S'estan calculant els lМmits del sistema de fitxers de Windows"
+
+#: ../../install_interactive.pm_.c:109
+#, c-format
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
-"Si continueu, Иs sota la vostra responsabilitat!"
+"El redimensionador de la FAT no pot gestionar la vostra particiС, \n"
+"s'ha produОt l'error segЭent: %s"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "S'estЮ cercant la particiС arrel."
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"La particiС de Windows estЮ massa fragmentada; si us plau, executeu "
+"``defrag'' primer"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformaciС"
+#: ../../install_interactive.pm_.c:113
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+"ATENCIс!\n"
+"\n"
+"Ara, el DrakX canviarЮ la mida de la vostra particiС de Windows. Aneu amb\n"
+"compte: aquesta operaciС Иs perillosa. Si encara no ho heu fet, sortiu de "
+"la\n"
+"instal╥laciС, executeu l'Scandisk sota Windows (i potser tambИ el Defrag), "
+"i\n"
+"torneu a comenГar la instal╥laciС. Feu tambИ una cРpia de seguretat de les\n"
+"vostres dades.\n"
+"Quan estigueu segur, premeu D'acord."
+
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Quina mida voleu deixar per a la particiС de Windows?"
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "%s: This is not a root partition, please select another one."
+msgid "partition %s"
+msgstr "particiС %s"
+
+#: ../../install_interactive.pm_.c:129
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Ha fallat la redimensiС de la FAT: %s"
+
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-"%s: Aquesta particiС no Иs arrel; si us plau, seleccioneu-ne una altra."
+"No hi ha particions FAT a quХ canviar la mida o per utilitzar-les com a "
+"loopback (o no queda prou espai)"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "No s'ha trobat cap particiС arrel"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Esborra el disc complet"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "No es pot utilitzar l'emissiС sense un domini NIS"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Elimina el Windows(TM)"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "S'ha produОt un error en llegir el fitxer $f"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Teniu mИs d'un disc dur; en quin voleu instal╥lar el Linux?"
-#: ../../install_steps.pm_.c:75
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Mode expert"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Utilitza el diskdrake"
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Utilitza l'fdisk"
+
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Ara podeu fer les particions a %s.\n"
+"Quan acabeu, no oblideu desar-les utiltzant `w'"
+
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Utilitza l'espai lliure de la particiС de Windows"
+
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "No puc trobar espai per a la instal╥laciС"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+"L'assistent de particionament del DrakX ha trobat les solucions segЭents:"
+
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Ha fallat el particionament: %s"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "S'estЮ activant la xarxa"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "S'estЮ desactivant la xarxa"
+
+#: ../../install_steps.pm_.c:74
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -2327,12 +3595,12 @@ msgstr ""
"S'ha produОt un error, perР no sИ com gestionar-lo correctament.\n"
"Si continueu, Иs sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:176
+#: ../../install_steps.pm_.c:196
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:323
+#: ../../install_steps.pm_.c:375
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -2344,169 +3612,46 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instal╥lat mitjanГant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:390
+#: ../../install_steps.pm_.c:450
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:742
+#: ../../install_steps.pm_.c:662
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
msgstr "S'estЮ introduint el pas `%s'\n"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Heu de tenir una particiС d'intercanvi"
-
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:136
msgid ""
-"You don't have a swap partition\n"
-"\n"
-"Continue anyway?"
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-"No teniu cap particiС d'intercanvi\n"
-"\n"
-"Voleu continuar igualment?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Escolliu la mida que voleu instal╥lar"
-
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Mida total: "
-
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "VersiС: %s\n"
-
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Mida: %d kB\n"
-
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Escolliu els paquets que voleu instal╥lar"
-
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "InformaciС"
-
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instal╥la"
-
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "S'estЮ instal╥lant"
-
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Si us plau, espereu, "
-
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Temps restant "
-
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Temps total "
-
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "S'estЮ preparant la instal╥laciС"
-
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
-#, c-format
-msgid "Installing package %s"
-msgstr "S'estЮ instal╥lant el paquet %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Voleu seguir igualment?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "S'ha produОt un error en ordenar els paquets"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Voleu utilitzar la configuraciС existent per a X11?"
+"El vostre sistema estЮ baix de recursos; podeu tenir algun problema en\n"
+"instal╥lar el Linux-Mandrake. Si aixР passa, podeu provar d'instal╥lar-lo "
+"en\n"
+"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
+"`text'"
-#: ../../install_steps_gtk.pm_.c:158
+#: ../../install_steps_gtk.pm_.c:150
msgid "Please, choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instal╥laciС segЭents:"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "No teniu cap particiС de Windows!"
-
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "No teniu prou espai per al Lnx4win"
-
-#: ../../install_steps_gtk.pm_.c:217
-msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
-msgstr ""
-"ATENCIс!\n"
-"\n"
-"Ara, el DrakX necessita canviar la mida de la vostra particiС de Windows.\n"
-"Aneu amb compte: aquesta operaciС Иs perillosa. Si encara no ho heu fet,\n"
-"executeu primer l'Scandisk (i potser tambИ el Defrag) sobre aquesta "
-"particiС\n"
-"i fer una cРpia de seguretat de les vostres dades.\n"
-"Quan estigueu segur, premeu D'acord."
-
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Ha fallat la redimensiС automЮtica"
-
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Quina particiС voleu utilitzar per al Linux4win?"
-
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Escolliu les mides"
-
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Mida de la particiС arrel en MB: "
-
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Mida de la particiС d'intercanvi en MB: "
-
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2520,7 +3665,7 @@ msgstr ""
"Un percentatge baix instal╥larЮ nomИs els paquets mИs importants;\n"
"un percentatge del 100%% instal╥larЮ tots els paquets seleccionats."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2536,58 +3681,100 @@ msgstr ""
"Un percentatge baix instal╥larЮ nomИs els paquets mИs importants;\n"
"un percentatge del %d%% instal╥larЮ tants paquets com sigui possible."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Podreu fer una elecciС mИs concreta al pas segЭent"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Percentatge de paquets per instal╥lar"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Escolliu els paquets que voleu instal╥lar"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "InformaciС"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instal╥la"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "DependХncies automЮtiques"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "VersiС: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Mida: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "ImportЮncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"No podeu seleccionar aquest paquet perquХ no queda prou espai per "
+"instal╥lar-lo"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Ara s'instal╥laran els paquets segЭents"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Ara s'eliminaran els paquets segЭents"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "No podeu seleccionar/desseleccionar aquest paquet"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet Иs obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja estЮ instal╥lat"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2595,46 +3782,88 @@ msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"No podeu seleccionar aquest paquet perquХ no queda prou espai per "
-"instal╥lar-lo"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Ara s'instal╥laran/eliminaran els paquets segЭents"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "No podeu seleccionar/desseleccionar aquest paquet"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "S'estЮ instal╥lant"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "S'estЮ estimant"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Si us plau, espereu, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Temps restant "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Temps total "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Cancel╥la"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "S'estЮ preparant la instal╥laciС"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "S'estЮ instal╥lant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Accepta"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2650,188 +3879,391 @@ msgstr ""
"Si no el teniu, premeu Cancel╥la per no fer la instal╥laciС des d'aquest "
"CD-ROM."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Rebutja"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Voleu seguir igualment?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "S'ha produОt un error en ordenar els paquets"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "S'ha produОt un error en instal╥lar els paquets"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "S'ha produОt un error"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposiciС del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles desprИs de la "
"instal╥laciС"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "ParticiС arrel"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Tots"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Quina Иs la particiС arrel (/) del vostre sistema?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Tipus d'instal╥laciС"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Quin tipus d'instal╥laciС voleu?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
msgstr "Instal╥la/Actualitza"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
msgstr "Es tracta d'una instal╥laciС o d'una actualitzaciС?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "AutomЮtica"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Personalitzada"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Esteu segur que sou un expert? \n"
-"AquМ podreu fer coses molt potents, perР tambИ perilloses."
+"AquМ podreu fer coses molt potents, perР tambИ perilloses.\n"
+"\n"
+"Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
+"contrasenyes?'',\n"
+"Sou capaГ de respondre aquest tipus de preguntes?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "EstaciС de treball"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Desenvolupament"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "Amb quina finalitat utilitzeu el sistema? "
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Amb quina finalitat utilitzeu el sistema?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolМ."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Port del ratolМ"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sХrie a quХ estЮ connectat el vostre ratolМ."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "S'estan configurant les targetes PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "S'estЮ configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Si us plau, seleccioneu una particiС per utilitzar-la com a arrel."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"No puc llegir la vostra taula de particions, estЮ massa malmesa per a mi :(\n"
+"IntentarИ seguir, buidant les particions incorrectes (es perdran TOTES LES "
+"DADES!).\n"
+"L'altra soluciС Иs impedir al DrakX que modifiqui la taula de particions.\n"
+"(l'error Иs %s)\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
+"Si continueu, Иs sota la vostra responsabilitat!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "ParticiС arrel"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Quina Иs la particiС arrel (/) del vostre sistema?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrЮ tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'estЮ creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la instal╥laciС; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-"Al sistema no li queda prou espai per a la instal╥laciС o actualitzaciС"
+"Al vostre sistema no li queda prou espai per a la instal╥laciС o "
+"actualitzaciС (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Completa (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "MМnima (%dMB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Recomanada (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Seleccioneu la mida que voleu instal╥lar"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "SelecciС del grup de paquets"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "SelecciС individual de paquets"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2841,12 +4273,12 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancel╥la.\n"
"Si nomИs falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2854,175 +4286,11 @@ msgstr ""
"S'estЮ instal╥lant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Publica la configuraciС de la instal╥laciС "
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Conserva la configuraciС IP actual"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Torna a configurar la xarxa ara"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "No configuris la xarxa"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "ConfiguraciС de xarxa"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "La xarxa local ja s'ha configurat. Voleu:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "no s'ha trobat cap targeta de xarxa"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "ConfiguraciС del mРdem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"Voleu configurar el marcatge amb xarxa per mРdem per al vostre sistema?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "S'estЮ configurant el dispositiu de xarxa %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Si us plau, introduОu la configuraciС IP d'aquest ordinador.\n"
-"S'ha d'introduir cada element com a una adreГa IP amb notaciС decimal amb\n"
-"punts (per exemple, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP automЮtic"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "AdreГa IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "SubmЮscara de la xarxa:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "L'adreГa IP ha d'estar amb el format 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "S'estЮ configurant la xarxa"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Si us plau, introduОu el nom del vostre ordinador central.\n"
-"Aquest nom ha de ser complet, com ara\n"
-"``mybox.mylab.myco.com''.\n"
-"TambИ podeu introduir l'adreГa IP de la passarel╥la, si en teniu una"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "servidor DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Dispositiu de la passarel╥la:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Passarel╥la:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Nom de l'ordinador central:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Voleu que intenti trobar un mРdem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-"Si us plau, seleccioneu el port sХrie al qual teniu connectat el mРdem."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Opcions de marcatge"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nom de la connexiС"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "NЗmero de telХfon"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "ID d'entrada"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AutenticaciС"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Basat en script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Basat en terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nom de domini"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Servidor DNS primari"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Servidor DNS secundari"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3089,91 +4357,95 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
"S'estЮ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Si us plau, escolliu els paquets que voleu instal╥lar"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Quina Иs la vostra zona horЮria?"
+msgstr "En quina zona horЮria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "El rellotge del vostre ordinador estЮ regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Quin sistema d'impressiС voleu utilitzar?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Utilitza el fitxer d'ombra"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "ombra"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Utilitza les contrasenyes MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Utilitza el NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "pЮgines grogues"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya Иs massa senzilla (ha de tenir com a mМnim %d carЮcters)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS d'autenticaciС"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3183,61 +4455,91 @@ msgstr ""
"IntroduОu un usuari\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nom real"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Icona"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Aquesta contrasenya Иs massa senzilla"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Si us plau, introduОu un nom d'usuari"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari nomИs pot contenir lletres en minЗscula, nЗmeros, `-' i `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Un disc d'arrencada personalitzat proporciona una manera d'arrencar el "
+"vostre\n"
+"sistema Linux sense dependre del carregador d'arrencada normal. AixР Иs "
+"Зtil\n"
+"si no voleu instal╥lar el SILO al sistema, o si un altre sistema operatiu\n"
+"elimina el SILO, o si el SILO no funciona amb la vostra configuraciС de\n"
+"maquinari. Un disc d'arrencada personalitzat tambИ es pot utilitzar amb la\n"
+"imatge de rescat del Mandrake, facilitant molt la recuperaciС de fallides\n"
+"serioses del sistema.\n"
+"\n"
+"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
+"a la primera unitat i premeu \"D'acord\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3261,66 +4563,34 @@ msgstr ""
"imatge de rescat del Mandrake, facilitant molt la recuperaciС de fallides\n"
"serioses del sistema. Voleu crear un disc d'arrencada per al vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "S'estЮ creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Ha fallat la instal╥laciС del LILO. S'ha produОt l'error segЭent:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Voleu utilitzar el SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Opcions principals del SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Aquestes sСn les entrades segЭents del SILO.\n"
-"Podeu afegir-ne algunes mИs o canviar-ne les existents."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "ParticiС"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Aquesta etiqueta ja estЮ en Зs"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Ha fallat la instal╥laciС del SILO. S'ha produОt l'error segЭent:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "S'estЮ preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
-msgstr "Voleu utilitzar aboot?"
+msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3329,128 +4599,124 @@ msgstr ""
"voleu intentar igualment la instal╥laciС encara que aixР destrueixi la "
"primera particiС?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "ConfiguraciС dels proxys"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "El proxy ha de ser http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "El proxy ha de ser ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"Ha fallat la instal╥laciС del carregador d'arrencada. S'ha produОt l'error "
+"segЭent:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Pobre"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Baix"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "MitjЮ"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Alt"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Preguntes diverses"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(pot malmetre les dades)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Voleu utilitzar l'optimitzaciС del disc dur?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Escolliu el nivell de seguretat"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Muntatge automЮtic del suport extraОble"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Habilita perfils mЗltiples"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Habilita la tecla Bloc Num en iniciar"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "IntroduОu la mida de la RAM en Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"El DrakX generarЮ els fitxers de configuraciС tant per a l'XFree 3.3 com per "
-"a l'Xfree 4.0.\n"
-"Per defecte, s'utilitza el servidor 3.3 perquХ funciona en mИs targetes "
-"grЮfiques.\n"
-"\n"
-"Voleu provar l'Xfree 4.0?"
+"AtenciС: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
+"CONSOLA!\n"
+"Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su\".\n"
+"En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
+"servidor.\n"
+"Esteu avisat."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Aneu amb compte; si teniu BlocNЗm habilitat, moltes tecles donaran\n"
+"nЗmeros en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Voleu que intenti trobar dispositius PCI?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Voleu utilitzar la configuraciС existent per a X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Voleu generar un disquet d'instal╥laciС automЮtica per fer cРpies del Linux?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "S'estЮ creant el diquet d'instal╥laciС automЮtica"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3460,7 +4726,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3483,153 +4749,18 @@ msgstr ""
"l'Зltim capМtol d'instal╥laciС de la Guia Oficial de l'Usuari del\n"
"Linux-Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "S'estЮ tancant l'ordinador"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "S'estЮ instal╥lant el programa de control per a la targeta %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(mРdul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Quin programa de control %s he de provar?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"En alguns casos, el programa de control %s necessita informaciС addicional\n"
-"per funcionar correctament, tot i que normalment funciona bИ sense ella.\n"
-"Voleu especificar opcions addicionals o deixar que el programa de control\n"
-"cerqui al vostre ordinador la informaciС que necessita? Aquesta recerca\n"
-"podria blocar l'ordinador, perР aixР no causaria cap dany."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "ExploraciС automЮtica"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Especifica les opcions"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Ara podeu proporcionar les seves opcions per al mРdul %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mРdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Opcions del mРdul:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Ha fallat la cЮrrega del mРdul %s.\n"
-"Voleu tornar-ho a intentar amb altres parЮmetres?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "S'estan configurant les targetes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "S'han trobat %s interfМcies %s"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "En teniu una altra?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Teniu alguna interfМcie %s?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "No"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "SМ"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Mira la informaciС del maquinari"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "S'estЮ activant la xarxa"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "S'estЮ desactivant la xarxa"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Instal╥laciС del Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. segЭent"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Ara podeu fer les particions al disc dur %s\n"
-"Quan acabeu, no oblideu desar-les utiltzant `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Si us plau, espereu"
@@ -3639,7 +4770,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "AmbigЭitat (%s), sigueu mИs precМs\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "ElecciС incorrecta, torneu-ho a intentar\n"
@@ -3653,448 +4784,955 @@ msgstr " ? (predeterminat %s) "
msgid "Your choice? (default %s) "
msgstr "La vostra elecciС? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "La vostra elecciС? (predeterminat %s introduОu `cap' per a cap) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Txec"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "FinХs"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "FrancХs"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "PolonХs"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeni (mЮquina d'escriure)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeni (fonХtic)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AzerbaidjanХs (llatМ)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AzerbaidjanХs (cirМl╥lic)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BЗlgar"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "BielorЗs"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "SuМs (disposiciС alemanya)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "SuМs (disposiciС francesa)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DanХs"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (EU)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Noruec)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "EstoniЮ"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "GeorgiЮ (disposiciС \"russa\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "GeorgiЮ (disposiciС \"llatina\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "HongarХs"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "IsraeliЮ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "IsraeliЮ (fonХtic)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IraniЮ"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IslandХs"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "ItaliЮ"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "JaponХs de 106 tecles"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Espanyol sud-americЮ"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "HolandХs"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "LituЮ AZERTY (antic)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "LituЮ AZERTY (nou)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "LituЮ \"fila de nЗmeros\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "LituЮ \"fonХtic\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "PolonХs (disposiciС qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "PolonХs (disposiciС qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortuguХs"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "EslovХ"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Eslovac"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Teclat thai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "UcraОnХs"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamita \"fila de nЗmeros\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Iugoslau (disposiciС llatina)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "EstЮndard"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "General"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "De bola"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "sХrie"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Generic 2 Button Mouse"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Generic 3 Button Mouse"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sХrie, tipus C7 antic)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Cap ratolМ"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 botons"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 botons"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "cap"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Cap ratolМ"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "SegЭent ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "AixР Иs correcte?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "ConfiguraciС d'Internet"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Voleu intentar connectar-vos a Internet ara?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Configura la connexiС a Internet"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "No et connectis a Internet"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Connecta't a Internet / Configura la xarxa local"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ConfiguraciС de l'XDSI"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Seleccioneu el vostre proveОdor.\n"
+" Si no Иs a la llista, seleccioneu No Иs a la llista"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "ConfiguraciС de la connexiС"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Si us plau, ompliu o marqueu el camp inferior"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Targeta IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Targeta de memРria (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Targeta d'E/S"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Targeta d'E/S_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Targeta d'E/S_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "El vostre telХfon particular"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Nom del proveОdor (p.ex. proveidor.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "NЗmero de telХfon del proveОdor"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "DNS 1 del proveОdor"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "DNS 2 del proveОdor"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Mode de marcatge"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Entrada del compte (nom d'usuari)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Contrasenya del compte"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Confirmeu la contrasenya"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Resta del mСn"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Resta del mСn - cap canal D (lМnies llogades)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Quin protocol voleu utilitzar?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "No sИ"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Quin tipus de targeta teniu?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Continua"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Interromp"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
"\n"
+"Si teniu una targeta ISA, els valors de la pantalla segЭent han de ser "
+"correctes.\n"
+"\n"
+"Si teniu una targeta PCMCIA, us en cal saber l'irq i l'io.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Quina targeta XDSI teniu ?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "He trobat una targeta XDSI:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"He detectat una targeta PCI XDSI, perР no en conec el tipus. Si us plau, "
+"seleccioneu una targeta PCI a la pantalla segЭent."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
+"pantalla segЭent"
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
+"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
+"No puc configurar aquest tipus de connexiС."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Escolliu la interfМcie de xarxa"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Si us plau, seleccioneu quin adaptador de xarxa voleu utilitzar per\n"
+"connectar-vos a Internet."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "InterfМcie de la xarxa"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Ara reiniciarИ el dispositiu de xarxa $device. Hi esteu d'acord?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ConfiguraciС de l'ADSL"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Voleu iniciar la connexiС en arrencar?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Voleu que intenti trobar un mРdem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
+"Si us plau, seleccioneu el port sХrie al qual teniu connectat el mРdem."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Opcions de marcatge"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nom de la connexiС"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "NЗmero de telХfon"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "ID d'entrada"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AutenticaciС"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Basat en script"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Basat en terminal"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Nom de domini"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Servidor DNS primari"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Servidor DNS secundari"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-"segons\n"
-"fins a l'arrencada predeterminada.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Connecta't a Internet / Configura la xarxa local"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Configura la connexiС a Internet"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "No et connectis a Internet"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-"Utilitzeu les tecles %c i %c per seleccionar quina posiciС estЮ ressaltada."
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "No et connectis a Internet"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordres prХvies a l'arrencada, o 'c' per obtenir una lМnia d'ordres."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "Connecta't a Internet"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "La posiciС ressaltada arrencarЮ automЮticament dintre de %d segons."
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "Desconnecta't d'Internet"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "no hi ha prou espai a /boot"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Configura la connexiС a Internet"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Escriptori"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "ConnexiС i configuraciС d'Internet"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "MenЗ Inici"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+"Ara reiniciarИ el dispositiu de xarxa $netc->{NET_DEVICE}. Hi esteu d'acord?"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Configura la connexiС a Internet"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB Mouse"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Configura la connexiС a Internet"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB Mouse (2 botons)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Targeta XDSI interna"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB Mouse (3 o mИs botons)"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "MРdem XDSI extern"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB Mouse"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Connecta't a internet"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB Mouse (2 botons)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Quin tipus de connexiС XDSI teniu?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB Mouse (3 o mИs botons)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Configura la connexiС a Internet"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Generic Mouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "FranГa"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Altres paОsos"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Generic 3 Button Mouse (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "A quin paМs us trobeu?"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "MРdem Alcatel"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "MРdem ECI"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"Si el vostre mРdem adsl Иs un mРdem Alcatel, seleccioneu Alcatel. Si no, ECI."
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "utilitza pppoe"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "no utilitzis pppoe"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"La manera mИs habitual de connectar amb adsl Иs dhcp + pppoe.\n"
+"No obstant aixР, hi ha connexions que utilitzen nomИs dhcp.\n"
+"Si no ho sabeu, escolliu 'utilitza pppoe'"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Configura la connexiС a Internet"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Quin client dhcp voleu utilitzar?\n"
+"El predeterminat Иs dhcpd"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Configura la connexiС a Internet"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Configura la xarxa local"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ConfiguraciС de xarxa"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Mouse"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Voleu comprovar la configuraciС?"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Mouse (3 o mИs botons)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "Inhabilita el sistema de xarxa"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Cap ratolМ"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Connecta't a Internet / Configura la xarxa local"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A o superior (sХrie)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"La xarxa local ja s'ha configurat.\n"
+"Voleu:"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (sХrie)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Com us voleu connectar a Internet?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (sХrie)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "ConfiguraciС de xarxa"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (sХrie)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Ara que ja teniu configurada la connexiС a Internet,\n"
+"podeu configurar l'ordinador per tal que la comparteixi.\n"
+"Nota: per configurar una xarxa d'Юrea local (LAN), us cal un adaptador de "
+"xarxa dedicat.\n"
+"\n"
+"Voleu configurar la comparticiС de la connexiС a Internet?\n"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (sХrie)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (sХrie)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "S'estЮ configurant la xarxa"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (sХrie)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Si us plau, introduОu el nom del vostre ordinador central, si el sabeu.\n"
+"Alguns servidors DHCP necessiten que aquest nom funcioni.\n"
+"El nom ha de ser complet,\n"
+"com ara ``mybox.mylab.myco.com''."
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (sХrie)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Nom de l'ordinador central"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sХrie, tipus C7 antic)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"ATENCIс: Aquest dispositiu ja es va configurar per connectar-se a Internet.\n"
+"NomИs cal que premeu D'acord per conservar-lo configurat.\n"
+"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuraciС."
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (sХrie)"
+#: ../../network.pm_.c:302
+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 ""
+"Si us plau, introduОu la configuraciС IP d'aquest ordinador.\n"
+"S'ha d'introduir cada element com a una adreГa IP amb notaciС decimal amb\n"
+"punts (per exemple, 1.2.3.4)."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Generic Mouse (sХrie)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "S'estЮ configurant el dispositiu de xarxa %s"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Compatible Microsoft (sХrie)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP automЮtic"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "RatolМ Generic de 3 botons (sХrie)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "AdreГa IP"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (sХrie)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "SubmЮscara de la xarxa"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "AixР Иs correcte?"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "L'adreГa IP ha d'estar amb el format 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Si us plau, introduОu el nom del vostre ordinador central.\n"
+"Aquest nom ha de ser complet, com ara\n"
+"``mybox.mylab.myco.com''.\n"
+"TambИ podeu introduir l'adreГa IP de la passarel╥la, si en teniu una"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "servidor DNS"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Passarel╥la"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Dispositiu de la passarel╥la"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "ConfiguraciС dels proxys"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Proxy FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "El proxy ha de ser http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "El proxy ha de ser ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4104,21 +5742,21 @@ msgstr ""
"L'Зnica soluciС Иs moure les particions primЮries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produОt un error en llegir el fitxer %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauraciС del fitxer %s: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Fitxer de cРpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produОt un error en escriure al fitxer %s"
@@ -4152,42 +5790,51 @@ msgstr "interessant"
msgid "maybe"
msgstr "potser"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (important)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (molt bonic)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (bonic)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Mostra'n menys"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Mostra'n mИs"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "lpd remot"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Impressora remota"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Servidor CUPS remot"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Impressora de xarxa (sРcol)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Dispositiu URI d'impressora"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
@@ -4201,11 +5848,11 @@ msgstr "Ports de comprovaciС"
msgid "A printer, model \"%s\", has been detected on "
msgstr "S'ha detectat una impressora, model \"%s\", a"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Dispositiu de la impressora local"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4213,15 +5860,15 @@ msgstr ""
"A quin dispositiu estЮ connectada la vostra impressora?\n"
"(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Dispositiu d'impressora"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4231,19 +5878,19 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Cua remota"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4258,27 +5905,27 @@ msgstr ""
"de comparticiС de la impressora a quХ voleu accedir i el nom d'usuari,\n"
"contrasenya i informaciС de grup si sСn necessaris."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Nom de comparticiС"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4292,130 +5939,154 @@ msgstr ""
"la impressora a quХ voleu accedir i el nom d'usuari i contrasenya si sСn\n"
"necessaris."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressiС"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Opcions de la impressora de sРcol"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Per imprimir a una impressora de sРcol, heu d'indicar el nom de l'ordinador\n"
+"central de la impressora i, opcionalment, el nЗmero de port."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Nom de l'ordinador central de la impressora"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Quin tipus d'impressora teniu?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Voleu comprovar la impressiС?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "S'esta(n) imprimint la(es) pЮgina(es) de prova... "
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"La(es) pЮgina(es) de prova s'ha(n) enviat al procИs d'impressiС.\n"
+"Degut a aixР, pot passar un cert temps abans no comenci la impressiС.\n"
+"Estat de la impressiС:\n"
+"%s\n"
+"\n"
+"Funciona correctament?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"La(es) pЮgina(es) de prova s'ha(n) enviat al procИs d'impressiС.\n"
+"Degut a aixР, pot passar un cert temps abans no comenci la impressiС.\n"
+"Funciona correctament?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "SМ, imprimeix una pЮgina ASCII de prova"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "SМ, imprimeix una pЮgina PostScript de prova"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "SМ, imprimeix ambdues pЮgines de prova"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Quin tipus d'impressora teniu?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Mida del paper"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Voleu expulsar la pЮgina desprИs de la tasca?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Opcions del programa de control Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Opcions de profunditat del color"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Voleu imprimir el text com a PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Inverteix l'ordre de les pЮgines"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Voleu ajustar el text 'stair-stepping'?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Nombre de pЮgines per pЮgines de sortida"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "opcions addicionals del GhostScript"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Opcions addicionals per al text"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Voleu comprovar la impressiС?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "S'esta(n) imprimint la(es) pЮgina(es) de prova... "
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"La(es) pЮgina(es) de prova s'ha(n) enviat al procИs d'impressiС.\n"
-"Degut a aixР, pot passar un cert temps abans no comenci la impressiС.\n"
-"Estat de la impressiС:\n"
-"%s\n"
-"\n"
-"Funciona correctament?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"La(es) pЮgina(es) de prova s'ha(n) enviat al procИs d'impressiС.\n"
-"Degut a aixР, pot passar un cert temps abans no comenci la impressiС.\n"
-"Funciona correctament?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4423,19 +6094,66 @@ msgstr ""
"Aquestes sСn les cues d'impressiС segЭents.\n"
"Podeu afegir-ne algunes mИs o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "S'estЮ iniciant el CUPS"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "S'estЮ llegint la base de dades de controladors CUPS..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Seleccioneu la connexiС de la impressora"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Com estЮ connectada la impressora?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Seleccioneu la connexiС de la impressora remota"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Amb un servidor CUPS remot, aquМ no us cal configurar cap\n"
+"impressora; les impressores es detectaran automЮticament.\n"
+"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Elimina la cua"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Cada impressora necessita un nom (p.ex. lp).\n"
+"Es poden definir altres parЮmetres, com ara la descripciС de la impressora\n"
+"o la seva ubicaciС. Quin nom cal utilitzar per a aquesta impressora, i com\n"
+"estЮ connectada?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Nom de la impressora"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "DescripciС"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "UbicaciС"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4447,45 +6165,45 @@ msgstr ""
"directori cal utilitzar per a aquesta cua, i com estЮ connectada la "
"impressora?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nom de la cua"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Directori d'spool"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "ConnexiС de la impressora"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una particiС a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "No es pot escriure al fitxer $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, un programador d'ordres periРdiques."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4494,7 +6212,7 @@ msgstr ""
"mitjanГant el registre del sistema.\n"
"TambИ es pot utilitzar per apagar l'ordinador quan queda poca bateria."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4503,7 +6221,7 @@ msgstr ""
"especificar en executar 'at', i executa les ordres 'batch' quan la\n"
"mitjana de cЮrrega Иs prou baixa."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4515,7 +6233,7 @@ msgstr ""
"caracterМstiques al cron bЮsic, incloent seguretat millorada i opcions\n"
"de configuraciС mИs potents."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4526,7 +6244,7 @@ msgstr ""
"el Midnight Commander. TambИ permet operacions de tallar i enganxar amb el "
"ratolМ, i inclou suport de menЗs desplegables a la consola."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4534,7 +6252,7 @@ msgstr ""
"L'Apache Иs un servidor de World Wide Web. S'utilitza per servir fitxers\n"
"HTML i CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4549,7 +6267,7 @@ msgstr ""
"d'iniciar molts serveis, incloent el telnet, l'ftp, l'rsh i l'rlogin. Si\n"
"s'inhabilita l'inetd s'inhabiliten tots els serveis de quХ Иs responsable."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4560,7 +6278,7 @@ msgstr ""
"kbdconfig.\n"
"Per a la majoria d'ordinadors, s'ha de deixar habilitat."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4569,7 +6287,7 @@ msgstr ""
"correctament. BЮsicament, es tracta d'un servidor que assigna les\n"
"tasques d'impressiС a la(es) impressora(es)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4577,7 +6295,7 @@ msgstr ""
"named (BIND) Иs un servidor de noms de domini (DNS) que s'utiilitza\n"
"per convertir noms d'ordinadors centrals en adreces IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4585,7 +6303,7 @@ msgstr ""
"Munta i desmunta tots els punts de muntatge dels sistemes de fitxers\n"
"de xarxa (NFS), SMB (gestor de xarxes d'Юrea local/Windows) i NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4593,7 +6311,7 @@ msgstr ""
"Activa/Desactiva totes les interfМcies de xarxa configurades per\n"
"iniciar-se durant l'arrencada."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4603,7 +6321,7 @@ msgstr ""
"Aquest servei proporciona la funcionalitat del servidor NFS, que es\n"
"configura mitjanГant el fitxer /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4611,7 +6329,7 @@ msgstr ""
"L'NFS Иs un popular protocol de comparticiС de fitxers en xarxes TCP/IP\n"
"Aquest servei proporciona la funcionalitat de blocatge del fitxer NFS."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4622,7 +6340,7 @@ msgstr ""
"i els mРdems en portЮtils. No s'iniciarЮ tret que es configuri, de manera\n"
"que no hi ha problema per instal╥lar-lo en ordinadors que no el necessiten."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4634,7 +6352,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4642,7 +6360,7 @@ msgstr ""
"El Postfix Иs un agent de transport de correu, que Иs el programa que\n"
"passa el correu d'un ordinador a un altre."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4650,7 +6368,7 @@ msgstr ""
"Desa i recupera el generador d'entropia del sistema per a\n"
"la generaciС de nombres aleatoris d'una mИs alta qualitat."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4661,7 +6379,7 @@ msgstr ""
"Юmpliament en xarxes petites, les xarxes complexes necessiten protocols\n"
"d'encaminament mИs complexs."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4669,7 +6387,7 @@ msgstr ""
"El protocol rstat permet que els usuaris d'una xarxa recuperin\n"
"mХtrics de funcionament de qualsevol ordinador de la mateixa."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4677,7 +6395,7 @@ msgstr ""
"El protocol rusers permet que els usuaris d'una xarxa identifiquin\n"
"qui estЮ connectat en altres ordinadors de la mateixa."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4686,7 +6404,7 @@ msgstr ""
"de tots els usuaris que estАn connectats a un ordinador que estЮ\n"
"executant el procИs rwho (similar al finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4695,63 +6413,236 @@ msgstr ""
"missatges en diversos fitxers de registre del sistema. иs aconsellable\n"
"executar-lo sempre."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "Aquest script d'inici intenta carregar els mРduls del ratolМ USB."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Inicia i atura l'X Font Server en arrencar i apagar l'ordinador."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Escolliu els serveis que s'han d'iniciar automЮticament durant l'arrencada"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-"\n"
-"Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-"\n"
-"Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-"segons\n"
-"fins a l'arrencada predeterminada.\n"
+"No puc llegir la vostra taula de particions, estЮ massa malmesa per a mi :(\n"
+"IntentarИ seguir buidant les particions incorrectes"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Configura el LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Crea un disquet d'arrencada"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formata el disquet"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "ElecciС"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Ha fallat la instal╥laciС del LILO. S'ha produОt l'error segЭent:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "La comparticiС de connexiС a Internet estЮ habilitada"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "La comparticiС de la connexiС a Internet ja ha estat configurada.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Taula"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Configura l'X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "La comparticiС de connexiС a Internet estЮ inhabilitada"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "La comparticiС de la connexiС a Internet ja ha estat configurada.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Taula"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "No s'ha pogut interpretar el contingut del fitxer de configuraciС."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "ComparticiС de la connexiС a Internet"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Ara que ja teniu configurada la connexiС a Internet,\n"
+"podeu configurar l'ordinador per tal que la comparteixi.\n"
+"Nota: per configurar una xarxa d'Юrea local (LAN), us cal un adaptador de "
+"xarxa dedicat.\n"
+"\n"
+"Voleu configurar la comparticiС de la connexiС a Internet?\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Mode de marcatge"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "No teniu cap adaptador de xarxa al sistema!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
+"executeu l'eina de configuraciС de maquinari."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"NomИs teniu un adaptador de xarxa configurat al sistema:\n"
+"\n"
+"$interface\n"
+"\n"
+"Voleu configurar la vostra xarxa d'Юrea local amb aquest adaptador?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Si us plau, escolliu l'adaptador de xarxa que es connectarЮ\n"
+"a la vostra xarxa d'Юrea local."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Compte, l'adaptador de xarxa ja estЮ configurat.\n"
+"El voleu tornar a configurar?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+"S'ha trobat un conflicte potencial d'adreГa LAN en la configuraciС actual de "
+"$_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "S'ha detectat la configuraciС del sistema de tallafocs!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"AtenciС! S'ha detectat una configuraciС existent del sistema de tallafocs. "
+"Potser us caldrЮ fer algun ajustament manual desprИs de la instal╥laciС. "
+"Voleu continuar?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"S'estan configurant les seqЭХncies, instal╥lant el programari, iniciant els "
+"servidors..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "S'estЮ configurant l'IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "No s'ha pogut instal╥lar el RPM d'ipchains amb l'urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "No s'ha pogut instal╥lar el RPM de dhcp amb l'urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "No s'ha pogut instal╥lar el RPM de linuxconf amb l'urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "No s'ha pogut instal╥lar el RPM de bind amb l'urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "No s'ha pogut instal╥lar el RPM de caching-nameserver amb l'urpmi"
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Felicitats!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt mИs\n"
-"fЮcil d'utilitzar, perР tambИ molt sensible: no s'ha d'utilitzar en un\n"
-"ordinador connectat a d'altres o a Internet. No hi ha contrasenya d'accИs."
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt mИs "
+"fЮcil\n"
+"d'utilitzar, perР tambИ molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No s'hi accedeix mitjanГant contrasenya."
#: ../../standalone/draksec_.c:31
msgid ""
@@ -4807,23 +6698,37 @@ msgstr "S'estЮ establint el nivell de seguretat"
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Quina Иs la disposiciС del vostre teclat?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Canvia la resoluciС"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "De quin tipus Иs el vostre ratolМ?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Canvieu el vostre CD-ROM!\n"
+"\n"
+"Si us plau, inseriu el CD-ROM etiquetat com \"%s\" a la unitat i desprИs\n"
+"premeu D'acord.\n"
+"Si no el teniu, premeu Cancel╥la per no fer la instal╥laciС des d'aquest "
+"CD-ROM."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botС?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "A quin port sХrie estЮ connectat el vostre ratolМ?"
@@ -5036,6 +6941,1260 @@ msgstr "S'estan cercant les fulles"
msgid "Finding leaves takes some time"
msgstr "Cal una mica de temps per cercar les fulles"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "ConfiguraciС d'Internet"
+
+#, fuzzy
+msgid "Internet"
+msgstr "interessant"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "bonic"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "MultimХdia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "MultimХdia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "MultimХdia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "MultimХdia"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "cap"
+
+msgid "Documentation"
+msgstr "DocumentaciС"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "MultimХdia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Escolliu la mida que voleu instal╥lar"
+
+#~ msgid "Total size: "
+#~ msgstr "Mida total: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Torna a configurar la xarxa local"
+
+#~ msgid ""
+#~ " Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read carefully this document. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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 MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+#~ "Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
+#~ "documentation for \n"
+#~ "further details.\n"
+#~ "Some versions of the Software Products may contain components which are not "
+#~ "governed by the GPL \n"
+#~ "License or similar agreements. Each such component is then governed by the "
+#~ "terms and conditions \n"
+#~ "of its own specific license. Please read carefully and comply with such "
+#~ "specific licenses before \n"
+#~ "you install, use or redistribute the said components. Such licenses will in "
+#~ "general prevent the \n"
+#~ "transfer, duplication (except for backup purposes), redistribution, reverse "
+#~ "engineering, \n"
+#~ "de-assembly, \n"
+#~ "de-compilation or modification of the component. Any breach of agreement "
+#~ "will immediately terminate \n"
+#~ "your rights under the specific license. Unless the specific license terms "
+#~ "grant you such rights, \n"
+#~ "you usually cannot install the programs on more than one system, or adapt it "
+#~ "to be used on a \n"
+#~ "network. \n"
+#~ "In doubt, please contact directly the distributor or editor of the "
+#~ "component. Transfer to third \n"
+#~ "parties or copying of such components including the documentation is usually "
+#~ "forbidden.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. 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"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts,\n"
+#~ "by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. All rights \n"
+#~ "are \n"
+#~ "reserved. The duplication is forbidden without prior written consent by "
+#~ "MandrakeSoft S.A.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law. Should the Software Products be defective, "
+#~ "MandrakeSoft S.A. will at its \n"
+#~ "own will either replace the Software Products, or reimburse the paid fee.\n"
+#~ "This limited warranty is void if you fail to comply to the recommendations, "
+#~ "instructions and \n"
+#~ "conditions \n"
+#~ "of use listed in the documentation or license agreements of the Software "
+#~ "Products.\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. will in no circumstances "
+#~ "be liable for any \n"
+#~ "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"
+#~ "judgement, or any other consequential loss) arising out of the use or "
+#~ "inability to use the \n"
+#~ "Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility or "
+#~ "occurance 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, MandrakeSoft 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 \n"
+#~ "damages for loss of business, interruption of business, financial loss, "
+#~ "legal fees and penalties \n"
+#~ "resulting from a court judgement, or any other consequential loss) arising "
+#~ "out of the possession \n"
+#~ "and \n"
+#~ "use of software components or arising out of downloading software "
+#~ "components from one of \n"
+#~ "Linux-Mandrake \n"
+#~ "sites which are prohibited or restricted in some countries by local laws. "
+#~ "This limited liability \n"
+#~ "applies to, but is not restricted to, the strong cryptography components "
+#~ "included in the Software \n"
+#~ "Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by a "
+#~ "court judgement, 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, \n"
+#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
+#~ "France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
+#~ "43, rue d'Aboukir, 75002 Paris - France\n"
+#~ msgstr ""
+#~ " IntroducciС\n"
+#~ "\n"
+#~ "D'ara endavant, el sistema operatiu i els diferents components que "
+#~ "s'inclouen\n"
+#~ "a la distribuciС Linux-Mandrake s'anomenaran els \"Productes de "
+#~ "programari\".\n"
+#~ "Els Productes de programari inclouen, perР no es limiten a, el conjunt de\n"
+#~ "programes, mХtodes, regles i documentaciС relativa al sistema operatiu i "
+#~ "als\n"
+#~ "diferents components de la distribuciС Linux-Mandrake.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. Acord de LlicХncia\n"
+#~ "\n"
+#~ "Si us plau, llegiu aquest document atentament. Aquest document Иs un acord\n"
+#~ "de llicХncia entre vСs i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 ParМs,\n"
+#~ "FranГa, que s'aplica als Productes de programari.\n"
+#~ "Pel fet d'instal╥lar, duplicar o utilitzar els Productes de programari, en \n"
+#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera explМcita, "
+#~ "en\n"
+#~ "sometre-us als termes i condicions d'aquesta LlicХncia. Si no esteu d'acord "
+#~ "amb\n"
+#~ "qualsevol part d'aquesta LlicХncia, no esteu autoritzat a instal╥lar, "
+#~ "duplicar\n"
+#~ "ni utilitzar els Productes de programari. Qualsevol intent d'instal╥lar,\n"
+#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
+#~ "als\n"
+#~ "termes i condicions d'aquesta LlicХncia Иs invЮlid i conclourЮ els vostres\n"
+#~ "drets sota aquesta LlicХncia. En concloure la LlicХncia, heu de destruir\n"
+#~ "immediatament totes les cРpies dels Productes de programari.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. la LlicХncia GPL i LlicХncies relacionades\n"
+#~ "\n"
+#~ "Els Productes de programari sСn components creats per diferents persones o\n"
+#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
+#~ "condicions de la LlicХncia General PЗblica de GNU (d'ara endavant \"GPL\"), "
+#~ "o\n"
+#~ "de llicХncies similars. La majoria d'aquestes llicХncies us permeten "
+#~ "utilitzar,\n"
+#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us plau,\n"
+#~ "llegiu atentament els termes i condicions de l'acord de llicХncia de cada\n"
+#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component s'ha\n"
+#~ "d'adreГar al seu autor i no a MandrakeSoft. Els programes desenvolupats per\n"
+#~ "MandrakeSoft S.A. estan coberts per la LlicХncia GPL. La documentaciС "
+#~ "escrita\n"
+#~ "per MandrakeSoft S.A. estЮ coberta per una llicХncia especМfica. Si us "
+#~ "plau,\n"
+#~ "consulteu la documentaciС per a mИs informaciС. Algunes versions dels "
+#~ "Productes\n"
+#~ "de programari poden incloure components que no estiguin coberts per la\n"
+#~ "LlicХncia GPL o llicХncies similars; en aquest cas, cada un d'aquests\n"
+#~ "components estarЮ cobert pels termes i condicions de la seva prРpia "
+#~ "llicХncia\n"
+#~ "especМfica. Si us plau, llegiu atentament i respecteu aquestes llicХncies\n"
+#~ "especМfiques abans d'instal╥lar, utilitzar o redistribuir els components\n"
+#~ "esmentats. En general, aquestes llicХncies impediran la transferХncia,\n"
+#~ "duplicaciС (excepte amb la finalitat de fer cРpies de seguretat),\n"
+#~ "redistribuciС, enginyeria inversa, desensamblatge, decompilaciС o "
+#~ "modificaciС\n"
+#~ "del component. Qualsevol ruptura de l'acord conclourЮ immediatament els "
+#~ "vostres\n"
+#~ "drets sota la llicХncia especМfica. Tret que els termes de la llicХncia\n"
+#~ "especМfica us ho autoritzin, normalment no podreu instal╥lar els programes "
+#~ "en\n"
+#~ "mИs d'un sistema ni adaptar-lo per al seu Зs en xarxa. Si hi teniu dubtes,\n"
+#~ "poseu-vos en contacte directament amb el distribuОdor o editor del "
+#~ "component.\n"
+#~ "Normalment, estЮ prohibida la transferХncia a terceres parts i la cРpia\n"
+#~ "d'aquests components, incloent la documentaciС.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. Drets de propietat intel╥lectual\n"
+#~ "\n"
+#~ "Tots els drets dels components dels Productes de programari pertanyen als "
+#~ "seus\n"
+#~ "autors respectius i estan protegits per la propietat intel╥lectual i les "
+#~ "lleis\n"
+#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
+#~ "drets\n"
+#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment o\n"
+#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake\",\n"
+#~ "\"Linux-Mandrake\" i els logotips associats son marques registrades de\n"
+#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicaciС "
+#~ "sense\n"
+#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Garantia limitada\n"
+#~ "\n"
+#~ "Els Productes de programari i la documentaciС que s'hi adjunta es "
+#~ "subministren\n"
+#~ "\"tal com sСn\", sense cap garantia, fins al punt permХs per la llei. En "
+#~ "cas\n"
+#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
+#~ "criteri seu, decidirЮ si reemplaГa els Productes de programari o si en\n"
+#~ "reemborsa el preu pagat. Aquesta garantia limitada Иs nul╥la si no compliu "
+#~ "les\n"
+#~ "recomanacions, instruccions i condicions d'Зs que s'indiquen a la "
+#~ "documentaciС\n"
+#~ "o als acords de llicХncia dels Productes de programari. Fins al punt permХs "
+#~ "per\n"
+#~ "la llei, MandrakeSoft S.A. no serЮ, en cap circumstЮncia, responsable de "
+#~ "cap\n"
+#~ "dany especial, incidental, directe o indirecte (incloent, perР sense "
+#~ "limitar-se\n"
+#~ "a, danys per pХrdua de negocis, interrupciС de negocis, pХrdues financeres,\n"
+#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
+#~ "pХrdua\n"
+#~ "important) que resulti de l'Зs o impossibilitat d'utilitzar els Productes "
+#~ "de\n"
+#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la possibilitat "
+#~ "de\n"
+#~ "que es produeixin aquests danys.\n"
+#~ "\n"
+#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSIс O UTILITZACIс DE PROGRAMARI "
+#~ "PROHIBIT EN ALGUNES PAоSOS\n"
+#~ "\n"
+#~ "Fins al put permХs per la llei, MandrakeSoft S.A. i els seus distribuОdors "
+#~ "no\n"
+#~ "seran, sota cap circumstЮncia, responsables de cap dany especial, "
+#~ "incidental,\n"
+#~ "directe o indirecte (incloent, perР sense limitar-se a, danys per pХrdua de\n"
+#~ "negocis, interrupciС de negocis, pХrdues financeres, honoraris i multes "
+#~ "legals\n"
+#~ "que resultin per un judici i qualsevol altre pХrdua important) que resultin "
+#~ "de\n"
+#~ "la possessiС i Зs de components de programari o de la descЮrrega de "
+#~ "components\n"
+#~ "de programari d'algun dels llocs web de Linux-Mandrake que estiguin "
+#~ "prohibits o\n"
+#~ "restringits en alguns paОsos per lleis locals. Aquesta responsabilitat "
+#~ "limitada\n"
+#~ "s'aplica, perР no estЮ restringida a, els potents components de "
+#~ "criptografia\n"
+#~ "inclosos en els Productes de programari.\n"
+#~ "\n"
+#~ "\n"
+#~ "5. Lleis aplicables \n"
+#~ "\n"
+#~ "Si qualsevol part d'aquest acord Иs declarat nul, il╥legal o inaplicable en "
+#~ "un\n"
+#~ "judici, aquesta part s'exclou del contracte, perР seguiu obligat per les "
+#~ "altres\n"
+#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta LlicХncia\n"
+#~ "estan coberts per les lleis de FranГa. Preferiblement, tots els desacords "
+#~ "sobre\n"
+#~ "els termes d'aquesta LlicХncia es resoldran fora dels tribunals. Com a "
+#~ "Зltim\n"
+#~ "recurs, el plet es dirimirЮ en els tribunals de ParМs, FranГa.\n"
+#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte amb\n"
+#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 ParМs, FranГa.\n"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexiС a "
+#~ "Internet.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "S'ha configurat tot.\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Connecta't a Internet amb un mРdem normal"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Connecta't a Internet mitjanГant XDSI"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Connecta't a Internet mitjanГant DSL (o ADSL)"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Connecta't a Internet mitjanГant cable"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "Temps (en segons) d'inactivitat desprИs del qual\n"
+#~ "penjarЮ (deixeu-ho en blanc per inhabilitar-ho)."
+
+#~ msgid "Germany"
+#~ msgstr "Alemany"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Alemanya (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "QuХ voleu fer?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Instal╥la/Rescata"
+
+#~ msgid "Rescue"
+#~ msgstr "Rescata"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Quin tipus de particiС voleu?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Escolliu \"Instal╥laciС\" si no hi ha instal╥lada cap versiС anterior de "
+#~ "GNU/Linux,\n"
+#~ "o si voleu utilitzar diverses distribucions o versions.\n"
+#~ "\n"
+#~ "Escolliu \"Rescat\" si voleu rescatar una versiС anterior de\n"
+#~ "Mandrake Linux ja instal╥lada.\n"
+#~ "\n"
+#~ "\n"
+#~ "Seleccioneu:\n"
+#~ "\n"
+#~ " - Recomanada: Si mai no heu instal╥lat el GNU/Linux,\n"
+#~ " escolliu aquesta opciС.\n"
+#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
+#~ " triar l'Зs principal del vostre ordinador. Consulteu-ne els detalls\n"
+#~ " mИs avall.\n"
+#~ "\n"
+#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
+#~ "una\n"
+#~ " instal╥laciС altament personalitzada. Com en el cas del tipus\n"
+#~ " d'instal╥laciС \"Personalitzada\", podreu seleccionar l'Зs del vostre\n"
+#~ " sistema.\n"
+#~ " PerР, si us plau, sobretot NO TRIEU AQUESTA OPCIс TRET QUE SAPIGUEU QUх "
+#~ "ESTEU FENT!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "En aquest moment podeu decidir quina(es) particiС(ns) voleu utilitzar\n"
+#~ "per instal╥lar el sistema Linux-Mandrake, si Иs que ja es va(n)\n"
+#~ "definir (en una instal╥laciС anterior del GNU/Linux o mitjanГant una\n"
+#~ "altra eina de particiС). En altres casos, s'han de definir les\n"
+#~ "particions del disc dur: aquesta operaciС consisteix en dividir el\n"
+#~ "disc dur de l'ordinador en Юrees lРgiques separades.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si heu de crear noves particions, utilitzeu \"AssignaciС\n"
+#~ "automЮtica\" per crear particions per al GNU/Linux de manera automЮtica.\n"
+#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
+#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
+#~ "\"sda\" per a la primera unitat SCSI, i aixМ successivament.\n"
+#~ "\n"
+#~ "\n"
+#~ "Dues particions habituals sСn: la particiС root (/), que Иs el punt\n"
+#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
+#~ "/boot, que contИ tots els fitxers necessaris per iniciar el sistema\n"
+#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
+#~ "\n"
+#~ "\n"
+#~ "Donat que aquest procИs sol ser irreversible, la particiС d'un disc\n"
+#~ "Иs sovint un procИs que espanta als usuaris sense experiХncia, perР\n"
+#~ "el DiskDrake simplifica molt aquest procИs. Consulteu la documentaciС\n"
+#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
+#~ "particiС.\n"
+#~ "\n"
+#~ "Podeu accedir a qualsevol opciС mitjanГant el teclat: desplaceu-vos per les "
+#~ "particions amb el tabulador i les fletxes amunt i avall. Quan se selecciona "
+#~ "una particiС, podeu utilitzar:\n"
+#~ "\n"
+#~ "- Ctrl-c per crear una nova particiС (quan se selecciona una particiС "
+#~ "buida)\n"
+#~ "\n"
+#~ "- Ctrl-d per suprimir una particiС\n"
+#~ "\n"
+#~ "- Ctrl-m per definir el punt de muntatge\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
+#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
+#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
+#~ "existents per eliminar les dades que contenen. Nota: no Иs\n"
+#~ "necessari tornar a formatar les particions existents, especialment\n"
+#~ "si contenen fitxers o dades que voleu conservar.\n"
+#~ "Els directoris que es solen conservar sСn /home i /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Ara s'estan instal╥lant els paquets seleccionats. Aquesta operaciС\n"
+#~ "trigarЮ pocs minuts, tret que hagueu escollit actualitzar un\n"
+#~ "sistema existent; en aquest cas trigarЮ mИs temps, fins i tot\n"
+#~ "abans que s'iniciО la instal╥laciС."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Si el DrakX no ha pogut trobar el ratolМ, o si voleu comprovar quХ\n"
+#~ "ha fet, a la part superior apareixerЮ la llista de ratolins.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si esteu d'acord amb els parЮmetres del DrakX, feu clic a 'D'acord'.\n"
+#~ "Si no, escolliu, al menЗ superior, el tipus de ratolМ que us sembli mИs "
+#~ "semblant al vostre.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si es tracta d'un ratolМ sХrie, tambИ us caldrЮ indicar al DrakX a\n"
+#~ "quin port sХrie estЮ connectat."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Aquesta secciС estЮ dedicada a la configuraciС d'una xarxa local\n"
+#~ "(LAN) o d'un mРdem.\n"
+#~ "\n"
+#~ "Escolliu \"LAN local\" i el DrakX intentarЮ trobar un adaptador\n"
+#~ "Ethernet al vostre ordinador. El sistema trobarЮ i inicialitzarЮ\n"
+#~ "automЮticament els adaptadors PCI.\n"
+#~ "No obstant aixР, si el vostre perifХric Иs ISA, la detecciС\n"
+#~ "no funcionarЮ, i us caldrЮ escollir un programa de control a la\n"
+#~ "llista que apareixerЮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
+#~ "el programa de control comprovi l'adaptador; si no ho feu aixМ, us\n"
+#~ "caldrЮ especificar les opcions del programa de control que haureu\n"
+#~ "d'anar a buscar a la documentaciС del vostre maquinari.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si instal╥leu un sistema Linux-Mandrake en un ordinador que forma\n"
+#~ "part d'una xarxa existent, l'administrador de la xarxa us haurЮ de\n"
+#~ "facilitar la informaciС necessЮria (l'adreГa IP, la submЮscara de\n"
+#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
+#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
+#~ "\n"
+#~ "\n"
+#~ "Escolliu \"Marcatge amb mРdem\" i es configurarЮ la connexiС a\n"
+#~ "Internet amb un mРdem. El DrakX intentarЮ trobar el mРdem, perР,\n"
+#~ "si no se'n surt, us caldrЮ seleccionar el port sХrie al qual estЮ\n"
+#~ "connectat."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
+#~ "un d'aquests tipus, perР, cal una configuraciС diferent. Tingueu\n"
+#~ "en compte, perР, que l'spooler utilitza 'lp' com a nom d'impressora\n"
+#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
+#~ "No obstant aixР, podeu donar diferents noms a una impressora, separant-\n"
+#~ "los amb el carЮcter '|'. D'aquesta manera, si voleu donar-li un nom mИs\n"
+#~ "aclaridor nomИs us caldrЮ indicar-lo en primer lloc, p.ex. \"La meva\n"
+#~ "impressora|lp\".\n"
+#~ "La impressora que contingui \"lp\" al(s) nom(s) serЮ la impressora per\n"
+#~ "defecte\n"
+#~ "\n"
+#~ "\n"
+#~ "Si la vostra impressora estЮ connectada directament a l'ordinador,\n"
+#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
+#~ "estЮ connectada i seleccionar-ne el filtre corresponent.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
+#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
+#~ "cal cap nom d'usuari ni contrasenya, perР us caldrЮ saber el nom\n"
+#~ "de la cua d'impressiС del servidor remot.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si voleu accedir a una impressora SMB (Иs a dir, una impressora\n"
+#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
+#~ "fer haureu d'indicar el seu nom SMB (que no Иs el seu nom TCP/IP)\n"
+#~ "i possiblement la seva adreГa IP, nom d'usuari, grup de treball,\n"
+#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
+#~ "per a una impressora NetWare, perР en aquest cas no us caldrЮ la\n"
+#~ "informaciС del grup de treball."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "иs molt recomanable que respongueu \"SМ\" aquМ. Si mИs endavant\n"
+#~ "instal╥leu Microsoft Windows, sobreescriurЮ el sector d'arrencada.\n"
+#~ "Tret que hagueu fet el disc d'arrencada com es\n"
+#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Moveu la bola!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Voleu descartar els canvis?"
+
+#~ msgid "Cable connection"
+#~ msgstr "ConnexiС de cable"
+
+#~ msgid "Host name:"
+#~ msgstr "Nom de l'ordinador central:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "De quin tipus Иs el vostre ratolМ?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Resolucions automЮtiques"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Per saber quines resolucions estan disponibles, en provarИ algunes.\n"
+#~ "La pantalla parpellejarЮ...\n"
+#~ "Ho podeu desactivar si voleu; sentireu un avМs sonor quan estigui llest"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
+#~ "De vegades, perР, aixР pot penjar l'ordinador.\n"
+#~ "Us hi voleu arriscar?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "No s'han trobat modes vЮlids\n"
+#~ "Intenteu-ho amb una altra targeta de vМdeo o monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Recerca automЮtica de resolucions"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB Mouse"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB Mouse (2 botons)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB Mouse (3 o mИs botons)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB Mouse"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB Mouse (2 botons)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB Mouse (3 o mИs botons)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Generic Mouse"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB Mouse"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Mouse (3 o mИs botons)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A o superior (sХrie)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (sХrie)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (sХrie)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (sХrie)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Generic Mouse (sХrie)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Compatible Microsoft (sХrie)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "RatolМ Generic de 3 botons (sХrie)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "RatolМ Kensington Thinking (sХrie)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr ""
+#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
+#~ "Internet."
+
+#~ msgid "nfs mount failed"
+#~ msgstr "ha fallat el muntatge de l'nfs"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "SРcol"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "El DrakX generarЮ els fitxers de configuraciС tant per a l'XFree 3.3 com per "
+#~ "a l'Xfree 4.0.\n"
+#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
+#~ "vostra targeta.\n"
+#~ "\n"
+#~ "Voleu conservar l'Xfree 3.3?"
+
+#~ msgid "curly"
+#~ msgstr "arrissat"
+
+#~ msgid "default"
+#~ msgstr "predeterminat"
+
+#~ msgid "tie"
+#~ msgstr "llaГ"
+
+#~ msgid "brunette"
+#~ msgstr "morena"
+
+#~ msgid "girl"
+#~ msgstr "noia"
+
+#~ msgid "woman-blond"
+#~ msgstr "dona-rossa"
+
+#~ msgid "automagic"
+#~ msgstr "automagic"
+
+#~ msgid "Cryptographic"
+#~ msgstr "CriptogrЮfic"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "Encarrega't del disc dur"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "No configuris la xarxa"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "Us han donat un nom d'ordinador central?"
+
+#~ msgid "using dhcp"
+#~ msgstr "s'estЮ utilitzant dhcp"
+
+#~ msgid "Show less"
+#~ msgstr "Mostra'n menys"
+
+#~ msgid "Show more"
+#~ msgstr "Mostra'n mИs"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "URI per a la impressora local"
+
+#~ msgid "URI for Network printer"
+#~ msgstr "URI per a la impressora de xarxa"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Dispositiu de la impressora local (URI)"
+
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "A quin dispositiu URI estЮ connectada la vostra impressora?\n"
+#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
+
+#~ msgid "Network Printer Options (URI)"
+#~ msgstr "Opcions de la impressora de xarxa (URI)"
+
+#~ msgid ""
+#~ "Choose the right Device URI for a network printer or a local file. "
+#~ "Examples:\n"
+#~ " file:/path/to/filename.prn\n"
+#~ " http://hostname:631/ipp/port1\n"
+#~ " ipp://hostname/ipp/port1\n"
+#~ " lpq://hostname/queue\n"
+#~ " socket://hostname\n"
+#~ " socket://hostname:9100"
+#~ msgstr ""
+#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o un "
+#~ "fitxer local. Exemples:\n"
+#~ " file:/camМ/al/nomdefitxer.prn\n"
+#~ " http://ordinadorcentral:631/ipp/port1\n"
+#~ " ipp://ordinadorcentral/ipp/port1\n"
+#~ " lpq://ordinadorcentral/cua\n"
+#~ " socket://ordinadorcentral\n"
+#~ " socket://ordinadorcentral:9100"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "EspecificaciС de la xarxa d'Юrea local"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
+
+#~ msgid "Network:"
+#~ msgstr "Xarxa:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "ComparticiС de la connexiС a Internet: configuraciС de $device"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ara es configurarЮ la interfМcie segЭent:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "S'ha configurat tot!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Quina Иs la disposiciС del vostre teclat?"
+
+#~ msgid "Normal"
+#~ msgstr "Normal"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Voleu que intenti trobar els dispositius %s?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "ConfiguraciС del mРdem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr ""
+#~ "Voleu configurar el marcatge amb xarxa per mРdem per al vostre sistema?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Voleu que intenti trobar dispositius PCI?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "S'estЮ cercant la particiС arrel."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr ""
+#~ "%s: Aquesta particiС no Иs arrel; si us plau, seleccioneu-ne una altra."
+
+#~ msgid "No root partition found"
+#~ msgstr "No s'ha trobat cap particiС arrel"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "No es pot utilitzar l'emissiС sense un domini NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Si us plau, seleccioneu una particiС per utilitzar-la com a arrel."
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "No teniu cap particiС de Windows!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "No teniu prou espai per al Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "AutomЮtica"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
+#~ "\n"
+#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
+#~ "\n"
+#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
+#~ "segons\n"
+#~ "fins a l'arrencada predeterminada.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
+#~ "\n"
+#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
+#~ "\n"
+#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
+#~ "segons\n"
+#~ "fins a l'arrencada predeterminada.\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "Opcions principals del SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Aquestes sСn les entrades segЭents del SILO.\n"
+#~ "Podeu afegir-ne algunes mИs o canviar-ne les existents."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Aquesta etiqueta ja estЮ en Зs"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Ha fallat la instal╥laciС del SILO. S'ha produОt l'error segЭent:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "En primer lloc, el DrakX intentarЮ trobar un o mИs adaptadors SCSI\n"
+#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
+#~ "l'inserirЮ o els inserirЮ automЮticament.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si el vostre adaptador SCSI Иs una targeta ISA, o si Иs PCI perР\n"
+#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
+#~ "si no teniu cap adaptador SCSI, se us preguntarЮ si en teniu un o\n"
+#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o mИs,\n"
+#~ "respongueu \"SМ\". ApareixerЮ una llista de programes de control,\n"
+#~ "de la qual n'haureu de triar un.\n"
+#~ "\n"
+#~ "\n"
+#~ "Un cop hagueu triat el programa de control, el DrakX us preguntarЮ\n"
+#~ "si voleu establir-ne les opcions. Primer, perР, deixeu que el\n"
+#~ "programa de control explori el maquinari: normalment funciona bИ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Si no, no oblideu la informaciС sobre el vostre maquinari que\n"
+#~ "pugueu aconseguir a la documentaciС o al Windows (si el teniu al\n"
+#~ "sistema), com aconsella la guia d'instal╥laciС. Aquestes sСn les\n"
+#~ "opcions que haureu de proporcionar al programa de control."
+
+#~ msgid "Shutting down"
+#~ msgstr "S'estЮ tancant l'ordinador"
+
#~ msgid ""
#~ "Some true type fonts from windows have been found on your computer.\n"
#~ "Do you want to use them? Be sure you have the right to use them under Linux."
@@ -5051,9 +8210,6 @@ msgstr "Cal una mica de temps per cercar les fulles"
#~ msgid "garbage"
#~ msgstr "escombraries"
-#~ msgid "Recommended"
-#~ msgstr "Recomanada"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5226,9 +8382,6 @@ msgstr "Cal una mica de temps per cercar les fulles"
#~ msgid "Hurt me plenty"
#~ msgstr "Fes-me molt de mal"
-#~ msgid "Which usage do you want?"
-#~ msgstr "Quin Зs voleu?"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "Quins paquets voleu instal╥lar"
@@ -5291,9 +8444,6 @@ msgstr "Cal una mica de temps per cercar les fulles"
#~ msgid "server"
#~ msgstr "servidor"
-#~ msgid "Local Printer Options"
-#~ msgstr "Opcions de la impressora local"
-
#~ msgid "Password:"
#~ msgstr "Contrasenya:"
@@ -5335,8 +8485,5 @@ msgstr "Cal una mica de temps per cercar les fulles"
#~ msgid "Installation CD Nr 1"
#~ msgstr "CD d'instal╥laciС Nr 1"
-#~ msgid "Dialup with modem"
-#~ msgstr "Marcatge amb el mРdem"
-
#~ msgid "Local LAN"
#~ msgstr "LAN local"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index d7e73898e..67ebd7f05 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -7,51 +7,105 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-01 15:00+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-09-18 10:39+0200\n"
"Last-Translator: VladimМr Marek <vlmarek@volny.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "ObecnЩ"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
-msgstr "Videokarta"
+msgstr "GrafickА karta"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
-msgstr "Vyberte videokartu"
+msgstr "Zvolte typ va╧М grafickИ kary"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
-msgstr "Zvolte si X server"
+msgstr "Zvolte X server"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X server"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "KterИ XFree byste chtЛli pou╬Мt?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Va╧e karta podporuje 3D akceleraci, ale pouze s XFree %s.\n"
+"Pokud pou╬ijete XFree %s, mЫ╬ete na druhou stranu dosАhnout lep╧Мch vЩsledkЫ "
+"ve 2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "S XFree %s mЫ╬e va╧e karta vyu╬Мt 3D hardwarovИ akcelerace."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akceleracМ"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Va╧e karta podporuje 3D akceleraci, ale pouze s XFree %s,\n"
+"ALE TOTO JE POUZE EXPERIMENTаLNм VERZE, A Mы╝E VиST K NESTABILITл SYSTиMU.\n"
+"Va╧e karta je podporovАna i v XFree %s, kde mЫ╬e mМt lep╧М podporu pro 2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"S XFree %s mЫ╬e va╧e karta vyu╬Мt 3D hardwarovИ akcelerace.ALE TOTO JE POUZE "
+"EXPERIMENTаLNм VERZE, A Mы╝E VиST K NESTABILITл SYSTиMU."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s s EXPERIMENTаLNм 3D hardwarovou akceleracМ"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "NastavenМ XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
-msgstr "Zvolte kolik pamЛti mА Va╧e videokarta"
+msgstr "Kolik pamЛti je na va╧М grafickИ kartЛ ?"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Zvolte mo╬nosti pro danЩ X server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
-msgstr "Zvolte monitor"
+msgstr "Zvolte typ svИho monitoru"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -64,52 +118,52 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-"Dva rozhodujМcМ parametry jsou: vertikАlnМ obnovovacМ frekvence, co╬ je "
+"Dva rozhodujМcМ parametry jsou: vertikАlnМ synchronizaХnМ frekvence, co╬ je "
"frekvence\n"
-"kterou je obnovovАna celА obrazovka, a horizontАlnМ synchronizaХnМ "
-"frekvence\n"
-"(horiz. sync rate), co╬ je frekvence jakou jsou zobrazovАny jednotlivИ "
+"kterou je obnovovАna celА obrazovka, a frekvence ЬАdkovИ synchronizace\n"
+"(horiz. sync. rate), co╬ je frekvence jakou jsou zobrazovАny jednotlivИ "
"mikroЬАdky (scanline).\n"
"\n"
"Je VELMI DыLE╝ITи abyste nezvolili typ monitoru se schopnostmi vy╧╧Мmi ne╬ "
"mА\n"
"VА╧ monitor, proto╬e byste si ho tМm mohli po╧kodit. Jestli╬e si nejste "
"jistМ\n"
-"zvolte typ s ni╬╧Мmi schopnostmi."
+"zvolte radЛji typ s ni╬╧Мmi schopnostmi."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
-msgstr "HorizontАlnМ obnovovacМ frekvence"
+msgstr "HorizontАlnМ(ЬАdkovА) synchronizace"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
-msgstr "VertikАlnМ obnovovacМ frekvence"
+msgstr "VertikАlnМ(obrazovkovА) synchronizace"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor nenМ nastaven"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
-msgstr "Videokarta je╧tЛ nenМ nastavena"
+msgstr "GrafickА karta je╧tЛ nenМ nastavena"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Je╧tЛ nejsou zvolena rozli╧enМ"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
-msgstr "Chcete otestovat nastavenМ?"
+msgstr "Chcete si vyzkou╧et nastavenМ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "VarovАnМ: na tИto grafickИ kartЛ je testovАnМ nebezpeХnИ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
-msgstr "Otestovat nastavenМ"
+msgstr "Vyzkou╧et nastavenМ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -117,412 +171,392 @@ msgstr ""
"\n"
"zkuste zmЛnit nЛkterИ parametry"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Vyskytla se tato chyba:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
-msgstr "Zru╧М se za %d sekund"
+msgstr "Test skonХМ automaticky za %d sekund"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Je to sprАvnИ nastavenМ?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Vyskytla se chyba, zkuste zmЛnit nЛkterИ parametry"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "AutomatickИ nastavenМ rozli╧enМ"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Abych na╧el dostupnА rozli╧enМ, budu je muset vyzkou╧et.\n"
-"Va╧e obrazovka bude blikat ...\n"
-"Jestli chcete, mЫ╬ete vypnout monitor. A╬ bude po v╧em, usly╧Мte pМpnutМ."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Rozli╧enМ"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
-msgstr "Zvolte rozli╧enМ a barevnou hloubku"
+msgstr "Vyberte si rozli╧enМ a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
-msgstr "Videokarta: %s"
+msgstr "GrafickА karta: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 server: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "UkАzat v╧e"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Rozli╧enМ"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"MЫ╬u se pokusit najМt dostupnА rozli╧enМ (napЬ. 800x600),\n"
-"nicmИnЛ mЫ╬e se stАt, ╬e se pЬi tom poХМtaХ zhroutМ.\n"
-"Chcete to zkusit?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"NepodaЬilo se mi najМt ╬АdnА dostupnА rozli╧enМ\n"
-"Zkuste nastavit jinou videokartu, nebo monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozlo╬enМ klАvesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ my╧i: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "PЬМpojka my╧i: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizontАlnМ frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertikАlnМ frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
-msgstr "Videokarta: %s\n"
+msgstr "GrafickА karta: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
-msgstr "VideopamЛ╩: %s kB\n"
+msgstr "PamЛ╩ na gr. kartЛ: %s kB\n"
+
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "Mo╬nosti BarevnИ hloubky"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Rozli╧enМ"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 server: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "PЬipravuji nastavenМ X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
-msgstr "ZmЛРit monitor"
+msgstr "ZmЛnit monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
-msgstr "ZmЛРit videokartu"
+msgstr "ZmЛnit grafickou kartu"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
-msgstr "ZmЛРit parametry X Serveru"
+msgstr "ZmЛnit parametry X Serveru"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
-msgstr "ZmЛР Rozli╧enМ"
+msgstr "ZmЛnit Rozli╧enМ"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "AutomatickИ vyhledАvАnМ rozli╧enМ"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Zobraz informace"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
-msgstr "Zkus to znovu"
+msgstr "Znovu vyzkou╧ej nastavenМ X"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Konec"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Co chcete dЛlat?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Zru╧it zmЛny?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Ponechat stАvajМcМ nastavenМ IP"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Pro aktivaci zmЛn se prosМm znovu pЬihlaste na %s"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "ProsМm odhlaste se a pak stisknЛte Ctrl-Alt-BackSpace"
+msgstr "ProsМm odhlaste se a pak stisknЛte Ctrl-Alt-Backspace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
-msgstr "spou╧tМ se X"
+msgstr "Spou╧tМ se X"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"MЫ╬u nastavit VА╧ poХМtaХ tak aby automaticky spustil X pЬi startu.\n"
+"MЫ╬u nastavit VА╧ poХМtaХ tak, aby automaticky spustil X pЬi startu.\n"
"Chcete aby poХМtaХ po zapnutМ spustil grafickЩ re╬im?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"MЫ╬u nastavit VА╧ poХМtaХ tak, aby se automaticky pЬihla╧oval jako\n"
+"u╬ivatel. Pokud nechcete pou╬Мt tuto mo╬nost, kliknЛte na tlaХМtko Zru╧it."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Zvolte standardnМho u╬ivatele :"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Vyberte si kterЩ sprАvce oken mА bЩt spou╧tЛn:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 barev (8 bitЫ)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tisМc barev (15 bitЫ)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tisМc barev (16 bitЫ)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miliСnЫ barev (24 bitЫ)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miliardy barev (32 bitЫ)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB nebo vМce"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "KlasickИ VGA, 640x480 pЬi 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 pЬi 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "KompatibilnМ s 8514, 1024x768 pЬi 87 Hz proklАdanЛ (ne 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 pЬi 87 Hz proklАdanЛ, 800x600 pЬi 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Lep╧М Super VGA, 800x600 pЬi 60 Hz, 640x480 pЬi 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "NeproklАdanА SVGA, 1024x768 pЬi 60 Hz, 800x600 pЬi 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "VysokofrekvenХnМ SVGA, 1027x768 pЬi 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "MultifrekvenХnМ kterЩ umМ 1280x1024 pЬi 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "MultifrekvenХnМ kterЩ umМ 1280x1024 pЬi 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "MultifrekvenХnМ kterЩ umМ 1280x1024 pЬi 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor kterЩ umМ 1600x1200 pЬi 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor kterЩ umМ 1600x1200 pЬi 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "kudrnatЩ"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "standardnМ"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "s kravatou"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "bruneta"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "dМvka"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondЩna"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automagicky"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
-msgstr "PrvnМ sektor startovacМho diskovИho oddМlu"
+msgstr "PrvnМ sektor zavАdЛcМho diskovИho oddМlu"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "PrvnМ sektor disku (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "Instalace LILO/grub"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Instalace SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zavАdЛcМ program?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Instalace LILO/Grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "╝АdnЩ"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "KterИ zavАdЛcМ programy chcete pou╬Мt?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Instalace zavАdЛcМho programu"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "StartovacМ zaЬМzenМ"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starЩm BIOSem)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "KompaktnМ"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompaktnМ"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Prodleva pЬed automatickЩm startem"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "TextovЩ re╬im"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Prodleva pЬed automatickЩm spu╧tЛnМm"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Heslo (podruhИ)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "OmezenМ nastavenМ z pЬМkazovИ ЬАdky"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "omezenМ"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "ZАkladnМ nastavenМ zavАdЛcМho programu"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ``OmezenМ nastavenМ z pЬМkazovИ ЬАdky'' je bezpЬedmЛtnИ bez hesla"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Zkuste to znovu, prosМm"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Hesla nejsou shodnА"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -530,167 +564,355 @@ msgstr ""
"Tady jsou v╧echny zАznamy.\n"
"MЫ╬ete pЬidat dal╧М nebo zmЛnit stАvajМcМ."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "PЬidat"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "JakЩ typ zАznamu chcete pЬidat?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "JinЩ systИm (SunOs...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "JinЩ systИm (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "JakЩ typ zАznamu chcete pЬidat?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "KoЬenovЩ(root)"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "PЬipojit"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Pro ХtenМ i zАpis"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "NejistЩ"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "ZnaХka"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "StandardnМ"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Odstranit zАznam"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
-msgstr "NenМ mo╬nА prАzdnА znaХka"
+msgstr "PrАzdnА znaХka nenМ povolena"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Tato znaХka se ji╬ pou╬МvА"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Na╧el jsem rozhranМ %s %s"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "MАte je╧tЛ nЛjakЩ jinИ?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "MАte nЛjakИ %s rozhranМ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ne"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ano"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "PodМvejte se na informace o hardware"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instaluji ovladaХ pro %s kartu %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "KterЩ %s ovladaХ mАm zkusit?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"V nЛkterЩch pЬМpadech potЬebuje ovladaХ %s pro svoji sprАvnou funkci dal╧М\n"
+"informace, pЬesto╬e normАlnЛ funguje i bez nich. ChtЛli byste zadat\n"
+"nЛjakИ doplРujМcМ mo╬nosti, nebo radЛji nechАte ovladaХ samostatnЛ "
+"prozkoumat\n"
+"hardware va╧eho poХМtaХe, aby zМskal informace kterИ potЬebuje? ZkoumАnМ\n"
+"hardware mЫ╬e ve vyjМmeХnЩch pЬМpadech zpЫsobit zamrznutМ poХМtaХe, ale "
+"nemЛlo\n"
+"by v ╬АdnИm pЬМpadЛ zpЫsobit jinИ ╧kody."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "AutomatickИ prozkoumАnМ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Zadejte mo╬nosti"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "NynМ mЫ╬ete poskytnout modulu %s dal╧М parametry."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"NynМ mЫ╬ete poskytnout modulu %s dal╧М parametry.\n"
+"Volby se zadАvajМ ve tvaru ``jmИno=hodnota jmИno2=hodnota2 ...''.\n"
+"NapЬМklad, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Volby modulu:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Spu╧tЛnМ modulu %s selhalo.\n"
+"Chcete to zkusit s jinЩmi parametry?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Vitejte v %s, v programu pro start operacniho systemu!\n"
+"\n"
+"Pro seznam moznych voleb stisknete <TAB>.\n"
+"\n"
+"Napiste jmeno vybraneho systemu a stisknete <ENTER>, nebo pockejte\n"
+"%d sekund do automatickeho startu.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Vitejte v GRUBu, programu pro vyber operacniho systemu"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Stisknete ENTER pro start vybranИho OS, 'e' pro upravu"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nenМ dost mМsta v /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "NabМdka Start"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minut"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minuta"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekund"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "VytvoЬit"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Smazat"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FormАtovat"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "ZmЛnit velikost"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
-msgstr "Typ"
+msgstr "ZmЛnit typ"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "PЬМpojnЩ bod"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Zapsat /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "PЬepnout se do mСdu 'expert'"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "PЬepnout se do mСdu 'normАlnМ'"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Obnovit ze souboru"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Ulo╬it do souboru"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "PomocnМk"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Obnovit z diskety"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Ulo╬it na disketu"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
-msgstr "Smazat v╧e"
+msgstr "V╧e smazat"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "NaformАtovat v╧echny"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
-msgstr "Automaticky vyhradit"
+msgstr "Automaticky rozmМstit"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "V╧echny primАrnМ oddМly (partitions) jsou pou╬МvАny"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "NemЫ╬u pЬidat ╬АdnЩ dal╧М oddМl"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -699,59 +921,63 @@ msgstr ""
"mМstЛ\n"
"vytvoЬit roz╧МЬenЩ(extended) oddМl"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "ZachrАnit tabulku oddМlЫ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "ZpЛt"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Zapsat tabulku oddМlЫ"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Obnovit"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "PrАzdnЩ"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "JinЩ"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOs"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "OdklАdacМ (swap)"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "PrАzdnЩ"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "JinЩ"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
-msgstr "SouborovИ systИmy :"
+msgstr "SouborovИ systИmy:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -759,22 +985,22 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"MАte jeden velikЩ oddМl FAT\n"
-"(vЛt╧inou pou╬МvanЩ Dos/Windows).\n"
+"(vЛt╧inou pou╬МvanЩ Microsoft Dos/Windows).\n"
"DoporuХuji vАm nejprve zmen╧it tento oddМl\n"
"(klepnЛte na nЛj a potom na\n"
"\"ZmЛnit velikost\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "ZАlohujte si nejdЬМv svА data, prosМm"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "хtЛte pozornЛ!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -783,77 +1009,77 @@ msgstr ""
"Jestli╬e chcete pou╬Мvat aboot, musМte nechat volnИ mМsto na zaХАtku disku\n"
"(2048 sektorЫ staХМ)"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "BuОte opatrnМ: tato akce je nebezpeХnА."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Chyba"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "AdresАЬ pЬipojenМ (mount point): "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "ZaЬМzenМ: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "PМsmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "ZaХАtek: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Velikost: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorЫ"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "NaformАtovanЩ\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "NenaformАtovanЩ\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "PЬipojenЩ\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback soubor(y): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -861,80 +1087,80 @@ msgstr ""
"StandardnМ startovacМ oddМl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "зroveР %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "ProsМm klepnЛte na oddМl"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Velikost: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrЫ, %s hlav, %s sektorЫ\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddМlЫ: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "na sbЛrnici %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "PЬipojit"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "AktivnМ"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "PЬidat do RAIDu"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "ZmЛnit RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Pou╬itМ loopbacku"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Co udЛlАte ?"
# msgstr "Vyberte si Хinnost"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -946,7 +1172,7 @@ msgstr ""
"BuОto pou╬ijete LILO a nebude to fungovat, nebo nepou╬ijete LILO a tedy "
"nepotЬebujete /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -959,205 +1185,211 @@ msgstr ""
"manager),\n"
"pЬidejte je╧tЛ /boot oddМl"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-"Zvolij jste softwarovou RAID partition jako koЬenovЩ oddМl (/).\n"
+"Zvolili jste softwarovou RAID partition jako koЬenovЩ oddМl (/).\n"
"S tМm se nenМ schopnЩ vypoЬАdat ╬АdnЩ zavАdЛcМ program bez pou╬itМ oddМlu\n"
-"/boot. Jestli chcete pou╬Мt LILO nebo grub musМte mМt dal╧М oddМl /boot."
+"/boot. UjistЛte se prosМm, ╬e tento oddМl mАte."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "MМsto toho pou╬ijte ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Nejprve pou╬ijte ``Odpojit''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "ZmЛnou typu oddМlu %s z nЛj ztratМte v╧echna data"
+msgstr "TМm ╬e zmЛnМte typ oddМlu %s pЬijdete o v╧echna jeho data"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "PЬesto chcete pokraХovat?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Konec bez ulo╬enМ"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Chcete skonХit bez zapsАnМ do tabulky oddМlЫ?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "ZmЛnit typ oddМlu"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "KterЩ typ oddМlu chcete?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "KterЩ systИm chcete pou╬Мt pro tisk?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
+msgstr "NemЫ╬ete pou╬Мt ReiserFS pro oddМl men╧М ne╬ 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete pЬipojit loopback %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete pЬipojit zaЬМzenМ %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"NemЫ╬u smazat pЬМpojnЩ bod, proto╬e tento oddМl je pou╬МvАn pro loopback.\n"
-"OdstraРte nejdЬМve loopback"
+"OdstraРte nejprve loopback"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Kdy╬ naformАtujete oddМl %s, ztratМte tМm na nЛm v╧echna data"
+msgstr "Kdy╬ naformАtujete oddМl %s, ztratМte tМm v╧echna jeho data"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "FormАtuji"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "FormАtuji soubor loopbacku %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
-msgstr "FormАtuji oddМly %s"
+msgstr "FormАtuji oddМl %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Po naformАtovАnМ v╧ech oddМlЫ,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "na nich budou v╧echna data ztracena"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "PЬesunout"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
-msgstr "Na kterЩ disk to chcete pЬesunout?"
+msgstr "Na kterЩ disk chcete oddМl pЬesunout?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
-msgstr "Na kterЩ sektor to chcete pЬesunout?"
+msgstr "Na kterЩ sektor chcete oddМl pЬesunout?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "PЬesouvАm"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "PЬesouvАm oddМl..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "Tabulka oddМlЫ disku %s bude zapsАna na disk!"
+msgstr "NovА tabulka oddМlЫ na disku %s bude zapsАna!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se zmЛny uplatnily budete muset restartovat poХМtaХ"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "PoХМtАm hranice souborovИho systИmu fat"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "MЛnМm velikost"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Na kterИm oddМlu chcete mЛnit velikost?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "V╧echna data z tohoto oddМlu by mЛla bЩt zАlohovАna"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "Kdy╬ zmЛnМte velikost oddМlu %s, ztratМte tМm na nЛm v╧echna data"
+msgstr "Kdy╬ zmЛnМte velikost oddМlu %s, ztratМte tМm v╧echna jeho data"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "VytvoЬit novЩ oddМl"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "PoХАteХnМ sektor: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "SouborovЩ systИm: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "NastavenМ: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Tento oddМl nemЫ╬e bЩt pou╬it pro loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "NАzev souboru loopbacku:"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
-msgstr "Soubor u╬ je pou╬МvАn jinЩm loopbackem, zkuste jinЩ"
+msgstr "Soubor u╬ je pou╬МvАn jinЩm loopbackem, zvolte si jinЩ"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Soubor u╬ existuje. MАm ho pou╬Мt?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1165,11 +1397,11 @@ msgstr ""
"ZАlo╬nМ tabulka oddМlЫ nemА stejnou velikost\n"
"Chcete pЬesto chcete pokraХovat?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "VarovАnМ"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1177,156 +1409,161 @@ msgstr ""
"Vlo╬te disketu do mechaniky\n"
"V╧echna data na tИto disketЛ budou smazАna"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Pokou╧Мm se obnovit tabulku oddМlЫ"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "zaЬМzenМ"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "ЗroveР"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "Velikost bloku(chunk)"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existujМcМ RAID pro pЬidАnМ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "novЩ"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formАtovАnМ %s skonХilo chybou"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevМm jak naformАtovat %s na typ %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "pЬipojovАnМ nfs skonХilo chybou"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "chyba pЬipojovАnМ: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojovАnМ %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "PЬМpojnИ body (mount points) musМ zaХМnat '/'"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "OddМl s pЬМpojnЩm bodem %s u╬ existuje\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "PropletenИ pЬМpojnИ body %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-"Pro tento pЬipojovanЩ bod potЬebujete opravdovЩ souborovЩ systИm (ext2, "
-"reiserfs)\n"
+"Pro tento pЬМpojnЩ bod potЬebujete opravdovЩ souborovЩ systИm (Ext2, "
+"ReiserFS)\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba pЬi otevМrАnМ %s pro zАpis: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Stala se chyba - nebylo nalezeno ╬АdnИ zaЬМzenМ na kterИm by se daly "
-"vytvoЬit novИ\n"
-"souborovИ systИmy. Zkontrolujte VА╧ hardware kvЫli tИto chybЛ, prosМm"
+"vytvoЬit novИ souborovИ systИmy. Zkontrolujte prosМm hardware"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "NemАte ╬АdnИ oddМly!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Zvolte si jazyk pro instalaci a pou╬МvАnМ systИmu."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Zvolte si odpovМdajМcМ rozlo╬enМ klАvesnice"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Zvolte si odpovМdajМcМ rozlo╬enМ klАvesnice"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Zvolte \"Instalace\" pokud nemАte ╬Аdnou pЬedchozМ verzi Linuxu "
-"nainstalovanou,\n"
-"nebo pokud si pЬejete pou╬Мvat vМce distribucМ nebo verzМ najednou.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Zvolte \"Upgrade\" jestli╬e si pЬejete pЬeinstalovat stАvajМcМ verzi\n"
-"Mandrake Linuxu: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus)\n"
-"6.1 (Helios), Gold 2000 nebo 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Vyberte si:\n"
-" - AutomatickА (doporuХenА): PravА volba, jestli╬e jste nikdy dЬМve\n"
-"neinstalovali Linux. PoznАmka: PЬi tomto typu instalace nebudou nastaveny\n"
-"sМ╩ovИ slu╬by. Pro jejich pozdЛj╧М nastavenМ pou╬ijte nАstroj "
-"\"linuxconf\".\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
-" - VlastnМ: Jestli╬e znАte Linux, budete si moct vybrat typickИ pou╬itМ\n"
-"nainstalovanИho systИmu. Detaily jsou popsАny nМ╬e.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
"\n"
-" - Expert: Jestli╬e jste dobЬe obeznАmeni s GNU/Linuxem a chcete provИst\n"
-"preciznМ nastavenМ instalace, je prАvЛ pro VАs tato volba. Budete si moci\n"
-"vybrat typickИ pou╬itМ Va╧eho systИmu stejnЛ jako v pЬМpadЛ \"VlastnМ\"\n"
-"instalace. ProsМm nevolte tuto instalaci JESTLI╝E NEVмTE PьESNл CO DлLаTE!\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1334,12 +1571,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Vyberte si:\n"
"\n"
@@ -1350,36 +1588,35 @@ msgstr ""
"\"VЩvojovЩ\", nebo zvolte \"Server\" jestli╬e si pЬejete nainstalovat\n"
"obecnЛ server (pro po╧tu, tisk...).\n"
"\n"
+"\n"
" - Expert: Jestli╬e jste dobЬe obeznАmeni s GNU/Linuxem a chcete provИst\n"
"preciznМ nastavenМ instalace, je prАvЛ pro VАs tato volba. Budete si moci\n"
"vybrat typickИ pou╬itМ Va╧eho systИmu stejnЛ jako v pЬМpadЛ \"VlastnМ\"\n"
-"instalace.\n"
+"instalace."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"RЫznИ mo╬nosti pou╬itМ va╧eho poХМtaХe (pokud jste zvolili \"VlastnМ\"\n"
"nebo \"Expert\" tЬМdu instalace) jsou:\n"
@@ -1397,30 +1634,38 @@ msgstr ""
" SMB protokol), nebo jako ovЛЬovacМ (NIS), databАzovЩ, atd. NeoХekАvejte\n"
" ╬АdnИ KDE nebo GNOME.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
"DrakX se nejdЬМve pokusМ najМt PCI SCSI adaptИry. Pokud nЛjakИ najde,\n"
"a bude vЛdЛt kterЩ ovladaХ pro nЛ pou╬Мt, automaticky ho pou╬ije.\n"
@@ -1437,256 +1682,481 @@ msgstr ""
"PotИ co jste si vybrali ovladaХ se VАs DrakX zeptА jestli pro nЛj\n"
"chcete zadat nЛjakИ informace. Nechat ovladaХ samostatnЛ prozkoumat "
"hardware\n"
-"vЛt╧inou funguje dobЬe, proto to zkuste nejdЬМve.\n"
+"vЛt╧inou funguje dobЬe, proto to zkuste jako prvnМ vЛc.\n"
"\n"
"\n"
-"Pokud to nebude fungovat, vzpomeРte si na informace kterИ mАte z\n"
-"dokumentace k hardware, nebo z Windows (pokud je mАte na poХМtaХi).\n"
-"PodrobnЛj╧М informace mЫ╬ete najМt v instalaХnМ pЬМruХce."
+"Pokud to nebude fungovat budete muset zadat dal╧М informace pro ovladaХ\n"
+"Pro dal╧М nАpovЛdu se podМvejte do instalaХnМ pЬМruХky, kde je popsАno\n"
+"jak zМskat tyto informace z Windows (pokud je mАte na poХМtaХi), z\n"
+"dokumentace k hardware, nebo z internetovИ strАnky vЩrobce (pokud mАte\n"
+"pЬМstup k internetu."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"Pokud ji╬ mАte vytvoЬenИ diskovИ oddМly (od pЬedchozМ instalace Linuxu, "
-"nebo\n"
-"pomocМ jinИho programu), mЫ╬ete si zvolit kterИ z nich pou╬ijete pro "
-"instalaci\n"
-"Mandrake Linuxu. Pokud tyto oddМly je╧tЛ nemАte, musМte je nejprve "
-"vytvoЬit.\n"
-"To znamenА logicky rozdЛlit kapacitu hardisku na vМce ХАstМ.\n"
-"\n"
-"Jestli╬e musМte vytvoЬit novИ oddМly, pou╬ijte tlaХМtko \"Automaticky "
-"vyhradit\"\n"
-"pro automatickИ vytvoЬenМ oddМlЫ pro Linux. Disk pro rozdЛlenМ si mЫ╬ete "
-"vybrat\n"
-"klepnutМm na jeho symbol. \"hda\" znamenА prvnМ IDE hardisk, \"hdb\" je "
-"druhЩ,\n"
-"\"sda\" je prvnМ SCSI disk, a tak dАle.\n"
-"\n"
-"\n"
-"Dva oddМly kterИ se obvykle vytvАЬМ jsou: koЬenovЩ oddМl (/), co╬ je "
-"zaХАtek\n"
-"stromovИ struktury souborЫ, a /boot, kterЩ obsahuje v╧echny soubory "
-"potЬebnИ\n"
-"ke startu systИmu po zapnutМ poХМtaХe.\n"
-"\n"
-"\n"
-"RozdЛlovАnМ disku mЫ╬e bЩt pro nezku╧enИho u╬ivatele stresujМcМ, proto╬e\n"
-"nАsledky jsou obvykle nezvratnИ. DiskDrake tento proces zjednodu╧uje.\n"
-"Ne╬ budete pokraХovat, prostudujte si dokumentaci a nechte si v╧e projМt\n"
-"hlavou.\n"
-"\n"
-"Ve╧kerИ operace lze provАdЛt i pomocМ klАvesnice:\n"
-"Po jednotlivЩch oddМlech se mЫ╬ete pohybovat pomocМ klАvesy Tab a ╧ipek\n"
-"Nahoru/Dolu.\n"
-" - Ctrl-c vytvoЬМ novЩ oddМl (pokud je zvolenЩ prАzdnЩ oddМl)\n"
-" - Ctrl-d sma╬e oddМl\n"
-" - Ctrl-m slou╬М k pЬiЬazenМ pЬМpojnИho bodu vybranИmu oddМlu\n"
-
-#: ../../help.pm_.c:131
-msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
-msgstr ""
-"V╧echny diskovИ oddМly kterИ byly novЛ vytvoЬeny musМ bЩt naformАtovАny aby\n"
-"mohly bЩt pou╬МvАny (formАtovАnМ znamenА vytvАЬenМ souborovИho systИmu).\n"
-"TakИ si mЫ╬ete pЬАt pЬeformАtovat nЛkterИ u╬ existujМcМ oddМly aby z nich\n"
-"byla odstranЛna data. PoznАmka: nenМ nutnИ pЬeformАtovАvat u╬ existujМcМ\n"
-"diskovИ oddМly, obzvlА╧tЛ pokud obsahujМ soubory nebo data kterИ si pЬejete\n"
-"zachovat. Typicky zachovАvanИ jsou /home a /usr/local."
-
-#: ../../help.pm_.c:139
+
+#: ../../help.pm_.c:160
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"NynМ si mЫ╬ete vybrat skupiny balМХkЫ pro instalaci nebo obnovenМ.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
-"DrakX potom otestuje, zda mАte dostatek prostoru pro instalaci v╧ech\n"
-"zvolenЩch balМХkЫ. Varuje vАs pokud dostatek prostoru nemАte. Ale i pЬesto\n"
-"mЫ╬ete pokraХovat s tМm, ╬e DrakX nenaistaluje nЛkterИ balМХky s ni╬╧М\n"
-"prioritou. Na konci seznamu si mЫ╬ete zvolit \"VЩbЛr jednotlivЩch "
-"balМХkЫ\",\n"
-"co╬ znamenА, ╬e budete prochАzet vМce jak 1000 programЫ..."
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:252
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Pokud mАte v╧echna CD vypsanА vЩ╧e, klepnЛte na Ok.\n"
-"Pokud nemАte ╬АdnИ z nich, klepnЛte na Zru╧it.\n"
-"Pokud VАm chybМ pouze nЛkterИ z nich, od-oznaХte je, a zvolte Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:257
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"VybranИ balМХky se nynМ budou instalovat. Tato operace mЫ╬e trvat\n"
-"pАr minut jestli╬e jste si nezvolili pЬeinstalovАnМ existujМcМho\n"
-"sytИmu. V tomto pЬМpadЛ mЫ╬e trvat del╧М dobu ne╬ zaХne\n"
-"pЬeinstalovАvАnМ."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:267
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"Jestli╬e DrakX neuspЛl pЬi detekci my╧i, nebo jestli╬e si chcete ovЛЬit\n"
-"co detekoval, bude VАm pЬelo╬en seznam my╧М.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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"
-"Jestli╬e souhlasМte s nastavenМm, pЬesuРte se do oddМlu do kterИho chcete\n"
-"pouhЩm klepnutМm na nЛj vlevo v menu. Jinak si zvolte typ my╧i o kterИ si\n"
-"myslМte, ╬e je nejblМ╬e k tИ Va╧М.\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
"\n"
-"V pЬМpadЛ my╧i na sИriovИ lince budete takИ muset zadat ke kterИmu\n"
-"sИriovИmu portu je pЬipojena."
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
-#: ../../help.pm_.c:176
-msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"ProsМm zvolte sprАvnЩ port. NapЬМklad COM1 v MS Windows je pojmenovАn\n"
-"v Linuxu ttyS0."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:303
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Tento oddМl je vЛnovАn nastavenИ mМstnМ sМtЛ (LAN) nebo modemu.\n"
+
+#: ../../help.pm_.c:329
+#, fuzzy
+msgid ""
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
+msgstr ""
+"NynМ si mЫ╬ete vybrat skupiny balМХkЫ pro instalaci nebo obnovenМ.\n"
+"\n"
+"DrakX potom otestuje, zda mАte dostatek prostoru pro instalaci v╧ech\n"
+"zvolenЩch balМХkЫ. Varuje vАs pokud dostatek prostoru nemАte. Ale i pЬesto\n"
+"mЫ╬ete pokraХovat s tМm, ╬e DrakX nenainstaluje nЛkterИ balМХky s ni╬╧М\n"
+"prioritou. Na konci seznamu si mЫ╬ete zvolit \"VЩbЛr jednotlivЩch "
+"balМХkЫ\",\n"
+"co╬ znamenА, ╬e budete prochАzet vМce jak 1000 programЫ..."
+
+#: ../../help.pm_.c:341
+msgid ""
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
"\n"
-"Zvolte si \"MМstnМ LAN\" a DrakX se na Va╧em poХМtaХi pokusМ najМt\n"
-"ethernet adaptИr. PCI adaptИry by mЛly bЩt nalezeny a inicializovАny\n"
-"automaticky. Pokud je ale Va╧e karta ISA, nebude autodetekce fungovat,\n"
-"a budete si muset zvolit ovladaХ ze seznamu kterЩ se pak objevМ.\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"Jako u SCSI adaptИrЫ, mЫ╬ete nejprve nechat ovladaХ prozkoumat adaptИry,\n"
-"a pЬМpadnЛ potom zadat vlastnМ nastavenМ, kterИ zМskАte z WindowsovИho\n"
-"ovlАdacМho panelu.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"Jestli╬e instalujete Mandrake Linux na poХМtaХi kterЩ je ХАstМ u╬\n"
-"existujМcМ sМtЛ, jejМ sprАvce VАm sdЛlМ ve╧kerИ potЬebnИ informace\n"
-"(IP adresu, sМ╩ovou masku - netmask, a hostname). Jestli╬e si\n"
-"zЬizujete soukromou sМ╩, napЬМklad doma, mЛli byste si zvolit\n"
-"adresu.\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"Pokud mАte v╧echna CD vypsanА vЩ╧e, klepnЛte na Ok.\n"
+"Pokud nemАte ╬АdnИ z nich, klepnЛte na Zru╧it.\n"
+"Pokud VАm chybМ pouze nЛkterИ z nich, od-oznaХte je, a zvolte Ok."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"Zvolte si \"PЬipojenМ modemem\" pro spojenМ s Internetem pomocМ modemu\n"
-"DrakX se pokusМ najМt VА╧ modem, pokud toto sel╬e vyberete si sИriovЩ port\n"
-"kde je VА╧ modem pЬipojenЩ."
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Enter:\n"
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"ProsМm zvolte sИriovЩ port. NapЬМklad COM1 v MS Windows je pojmenovАn\n"
+"v GNU/Linuxu ttyS0."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
"\n"
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"NynМ mЫ╬ete zadat parametry pЬipojenМ k internetu pЬes modem. Pokud nevМte\n"
+"co zadat, mЫ╬ete zМskat sprАvnИ hodnoty od Va╧eho internetovИho "
+"poskytovatele."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
+"\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
+"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
+"\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Zadejte:\n"
"\n"
@@ -1703,7 +2173,23 @@ msgstr ""
"Pokud si nejste jistМ, zeptejte se Va╧eho sprАvce sМtЛ, nebo internetovИho\n"
"poskytovatele.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Jestli╬e Va╧e sМ╩ pou╬МvА NIS, zvolte \"Pou╬ij NIS\". Pokud si nejste "
+"jistМ,\n"
+"zeptejte se Va╧eho sprАvce sМtЛ."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1712,7 +2198,7 @@ msgstr ""
"co zadat, mЫ╬ete zМskat sprАvnИ hodnoty od Va╧eho internetovИho "
"poskytovatele."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1721,13 +2207,15 @@ msgstr ""
"jestli proxy pou╬Мvat budete nebo ne, zeptejte se Va╧eho sprАvce sМtЛ, nebo\n"
"internetovИho poskytovatele."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1738,110 +2226,201 @@ msgstr ""
"\n"
"PoznАmka: Mirror a balМХky si musМte zvolit podle mМstnМch zАkonЫ"
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"NynМ si mЫ╬ete vybrat Va╧e ХasovИ pАsmo podle toho kde ╬ijete.\n"
"\n"
"\n"
-"Linux pracuje s Хasem v GMT (GreenwichskЩ Хas) a pЬepoХМtАvА ho na mМstnМ,\n"
-"podle ХasovИho pАsma, kterИ si vyberete\n"
-"."
+"GNU/Linux pracuje s Хasem v GMT (GreenwichskЩ Хas) a pЬepoХМtАvА ho na "
+"mМstnМ,\n"
+"podle ХasovИho pАsma, kterИ si vyberete."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"MЫ╬ete si zvolit kterИ slu╬by majМ bЩt spu╧tЛny pЬi startu poХМtaХe.\n"
-"Pokud pЬejedete my╧М nad nЛkterou polo╬ku, objevМ se malА nАpovЛda s "
-"popisem\n"
-"co danА slu╬ba dЛlА."
+"Pokud pЬejedete my╧М nad nЛkterou polo╬ku, objevМ se malА nАpovЛda s\n"
+"popisem co danА slu╬ba dЛlА."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-"Linux si rozumМ s mnoha typy tiskАren. Ka╬dЩ tento typ vy╬aduje\n"
-"jinИ nastavenМ. Pozn.: TiskovА fronta standardnЛ pou╬МvА nАzev 'lp'. Pokud\n"
-"byste rАdi pЬiЬadili tiskАrnЛ dal╧М, smysluplnЛj╧М jmИno, mЫ╬ete to uХinit\n"
-"pomocМ oddЛlovaХe '|'. JmИno tiskАrny tedy bude tЬeba \"Moje "
-"tiskАrna|lp0|lp\".\n"
-"PrvnМ alias (\"Moje tiskАrna\") bude pou╬it pro ikonu, sambu, atd. Pro\n"
-"pЬМkazovou ЬАdku bude nejsnaz╧М pou╬Мt jmИno \"lp0\", a proto╬e mА tiskАrna\n"
-"i alias \"lp\", bude pou╬ita jako standardnМ.\n"
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
"\n"
"\n"
-"Jestli╬e je Va╧e tiskАrna pЬМmo pЬipojenА k Va╧emu poХМtaХi, vyberte\n"
-"\"MМstnМ tiskАrna\". Potom zadАte ke kterИmu portu je tiskАrna pЬipojena\n"
-"a vyberete pro ni filtr(ovladaХ).\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"Jestli╬e chcete pracovat s tiskАrnou umМstЛnou na vzdАlenИm UnixovИm\n"
-"stroji, vyberte si \"VzdАlenЩ lpd\". Abyste ji mohli pou╬Мvat nenМ\n"
-"zapotЬebМ ╬АdnИ u╬ivatelskИ jmИno ani heslo, ale potЬebujete vЛdЛt\n"
-"jmИno tiskovИ fronty na vzdАlenИm serveru.\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
"\n"
-"Jestli╬e chcete pracovat s SMB tiskАrnu (co╬ znamenА tiskАrna umМstЛnА\n"
-"na vzdАlenИm Windows9x/NT stroji), budete muset zadat jejМ SMB jmИno\n"
-"(co╬ nenМ jejМ TCP/IP jmИno), a popЬМpadЛ jejМ IP adresu, u╬ivatelskИ\n"
-"jmИno, pracovnМ skupinu a heslo pro pЬМstup na tuto tiskАrnu. A samozЬejmЛ\n"
-"jmИno tiskАrny. To samИ platМ pro NetWare tiskАrnu, kromЛ toho, ╬e\n"
-"nepotЬebujete informaci o pracovnМ skupinЛ."
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:542
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You need to enter some informations here.\n"
+"\n"
"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"NynМ mЫ╬ete zadat superu╬ivatelskИ (root) heslo pro vА╧ Mandrake Linux.\n"
"Heslo musМ bЩt zadАno dvakrАt pro vylouХenМ pЬeklepu.\n"
@@ -1856,7 +2435,7 @@ msgstr ""
"nebo komplikovanИ, proto╬e musМte bЩt schopni si ho zapamatovat bez pЬМli╧\n"
"velkИ nАmahy."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1864,15 +2443,16 @@ msgstr ""
"Pro bezpeХnЛj╧М systИm byste si mЛli zvolit \"Pou╬МvАnМ stМnovАnМ\"\n"
"(shadow file) a \"Pou╬МvАnМ MD5 hesel\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Jestli╬e Va╧e sМ╩ pou╬МvА NIS, zvolte \"Pou╬ij NIS\". Pokud to nevМte,\n"
+"Jestli╬e Va╧e sМ╩ pou╬МvА NIS, zvolte \"Pou╬ij NIS\". Pokud si nejste "
+"jistМ,\n"
"zeptejte se Va╧eho sprАvce sМtЛ."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1914,34 +2494,29 @@ msgstr ""
"kterЩ si zde vytvoЬМte, a jako superu╬ivatel se pЬihla╧ovat pouze pro\n"
"spravovАnМ systИmu."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"DoporuХuji VАm, odpovЛzte \"Ano\". Pokud budete pozdЛji instalovat "
-"Microsoft\n"
-"Windows, bude boot sektor pЬepsАn. Pokud nemАte vytvoЬenЩ startovacМ disk,\n"
-"u╬ se nebudete moct do Linuxu dostat."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Je zapotЬebМ zadat kam si pЬejete umМstit\n"
-"informaci potЬebnou k nastartovАnМ Linuxu.\n"
+"informaci potЬebnou k nastartovАnМ GNU/Linuxu.\n"
"\n"
"\n"
"Pokud nevМte pЬesnЛ co dЛlАte, zvolte \"PrvnМ sektor disku (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1949,10 +2524,10 @@ msgstr ""
"Pokud nemАte jinЩ speciАlnМ po╬adavek, obvykle se volМ \"/dev/hda\"\n"
"(master disk na prvnМm ЬadiХi) nebo \"/dev/sda\" (prvnМ SCSI disk)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1963,12 +2538,14 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (LInux LOader) a Grub jsou zavАdЛcМ programy, co╬ znamenА, ╬e mohou\n"
-"spustit buО Linux, nebo kterЩkoliv jinЩ operaХnМ systИm, kterЩ je na Va╧em\n"
+"spustit buО GNU/Linux, nebo kterЩkoliv jinЩ operaХnМ systИm, kterЩ je na "
+"Va╧em\n"
"poХМtaХi. NormАlnЛ jsou v╧echny takovИto systИmy detekovАny a nastaveny.\n"
"Pokud se tak nestalo, mЫ╬ete v tИto obrazovce ruХnЛ pЬidat dal╧М zАznam.\n"
"MusМte ale sprАvnЛ zadat nЛkterИ parametry danИho systИmu."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1985,10 +2562,12 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-"HlavnМ mo╬nosti pro LILO a grub jsou:\n"
+"HlavnМ mo╬nosti pro LILO a Grub jsou:\n"
" - StartovacМ zaЬМzenМ: NastavМte jmИno zaЬМzenМ (napЬ. diskovЩ oddМl)\n"
"kterЩ obsahuje startovacМ sektor (boot sector). Pokud nemАte jinЩ speciАlnМ\n"
"po╬adavek, zvolte \"/dev/hda\".\n"
@@ -2007,10 +2586,57 @@ msgstr ""
" * normАlnМ: standardnМ re╬im 80x25 znakЫ\n"
" * <ХМslo>: pou╬ije odpovМdajМcМ re╬im."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO je zavАdЛcМ program pro SPARC: umМ nastartovat buО GNU/Linux, nebo\n"
+"jakЩkoliv jinЩ operaХnМ systИm na Va╧em poХМtaХi. NormАlnЛ jsou v╧echny\n"
+"takovИto systИmy detekovАny a nastaveny. Pokud se tak nestalo, mЫ╬ete\n"
+"v tИto obrazovce ruХnЛ pЬidat dal╧М zАznam. MusМte ale sprАvnЛ zadat\n"
+"nЛkterИ parametry danИho systИmu."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"HlavnМ mo╬nosti pro SILO jsou:\n"
+" - Instalace zavАdЛcМho programu: NastavМte jmИno zaЬМzenМ (napЬ.\n"
+"diskovЩ oddМl) kam si pЬejete umМstit informace potЬebnИ pro start systИmu.\n"
+"Pokud pЬesnЛ nevМte co dЛlАte, zvolte \"PrvnМ sektor disku (MBR)\".\n"
+"\n"
+"\n"
+" - Prodleva pЬed automatickЩm startem: UrХuje poХet desetin sekundy, po "
+"kterИ\n"
+"bude zavАdЛcМ program Хekat, ne╬ spustМ standardnМ volbu. Toto je ╧ikovnИ "
+"pro\n"
+"poХМtaХe, kterИ okam╬itЛ po zapnutМ klАvesnice zaХnou startovat. ZavАdЛcМ\n"
+"program nebude Хekat pokud je tato hodnota nastavena na 0, nebo nenМ zadАna\n"
+"vЫbec."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2021,7 +2647,7 @@ msgid ""
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
-"TeО je Хas nastavit grafickЩ systИm X, co╬ je jАdro LinuxovИho GUI\n"
+"TeО je Хas nastavit grafickЩ systИm X, co╬ je jАdro GNU/LinuxovИho GUI\n"
"(GrafickИho U╬ivatelskИho RozhranМ). K tomuto ЗХelu musМte nastavit\n"
"Va╧i grafickou kartu a monitor. VЛt╧ina tИto prАce je provАdЛna\n"
"automaticky, tak╬e na VАs by mЛla zbЩt pouze kontrola toho co bylo\n"
@@ -2033,7 +2659,7 @@ msgstr ""
"Pokud VАm vyhovovat nebudou, mЫ╬ete se vrАtit a mЛnit je tak dlouho,\n"
"dokud to bude zapotЬebМ."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2041,7 +2667,7 @@ msgstr ""
"Pokud je nastavenМ X ╧patnИ, pou╬ijte tyto mo╬nosti pro sprАvnИ nastavenМ\n"
"grafickИho systИmu."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2049,42 +2675,47 @@ msgstr ""
"Jestli╬e radЛji pou╬МvАte pЬihla╧ovАnМ v grafickИm re╬imu, zvolte \"Ano\".\n"
"Jinak zvolte \"Ne\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"NynМ mЫ╬ete zmЛnit rЫznИ nastavenМ Va╧eho systИmu.\n"
"\n"
@@ -2099,11 +2730,6 @@ msgstr ""
" - Zvolte si ЗroveР zabezpeХenМ: MЫ╬ete si vybrat jak moc si pЬejete\n"
"zabezpeХit VА╧ systИm. Bli╬╧М informace mЫ╬ete najМt v instalaХnМ\n"
"pЬМruХce. Pokud nevМte co zvolit, bude nejvhodnЛj╧М volba \"StЬednМ\".\n"
-"Pokud opravdu chcete mМt zabezpeХenЩ systИm zvolte \"ParanoidnМ\",\n"
-"ale pozor, V TиTO зROVNI NEBUDE POVOLENO PьIHLа╘ENм ROOTa V KONZOLI! Pokud\n"
-"se chcete pЬihlАsit jako superu╬ivatel, musМte se nejprve pЬihlАsit jako\n"
-"normАlnМ u╬ivatel a potom pou╬Мt pЬМkaz \"su\". ObecnЛ nebude takovЩto\n"
-"poХМtaХ pou╬itelnЩ jinak ne╬ server. Byli jste varovАni.\n"
"\n"
"\n"
" - Pokud tЬeba, upЬesnЛte velikost RAM: Bohu╬el v dne╧nМ dobЛ neexistuje\n"
@@ -2120,9 +2746,9 @@ msgstr ""
"\n"
" - PЬi startu zapni Numlock: Jestli chcete aby byl po startu Numlock "
"zapnut,\n"
-"pak zvolte tuto mo╬nost. (Pozn.: Numlock nebude zapnutЩ v X)."
+"pak zvolte tuto mo╬nost. (Pozn.: Numlock mЫ╬e a nemusМ fungovat v X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2135,96 +2761,119 @@ msgstr ""
"Po resetu se VА╧ novЩ Mandrake Linux automaticky spustМ. Jestli chcete\n"
"nastartovat jinЩ existujМcМ operaХnМ systИm, pЬeХtЛte si dal╧М informace."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Zvolte si jazyk"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Zvolte si typ instalace"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Detekce hardiskЫ"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "NastavenМ my╧i"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Zvolte si klАvesnici"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "RЫznИ"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "SouborovИ systИmy"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "FormАtovАnМ oddМlЫ"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "VЩbЛr balМХkЫ k instalaci"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "NainstalovАnМ sytИmu"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "NastavenМ sМtМ"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "╘ifrovАnМ"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "хasovИ pАsmo"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "NastavenМ slu╬eb"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "NastavenМ tiskАrny"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "HlavnМ(root) heslo"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "PЬidАnМ u╬ivatele"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "StartovacМ disketa"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "ZavАdЛcМ program"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "NastavenМ X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Auto-instalaХnМ disketa"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "UkonХit instalaci"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Chyba pЬi ХtenМ souboru $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Vyzkou╧ejte prosМm, zda my╧ funguje"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Vyzkou╧ejte prosМm, zda my╧ funguje"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, 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ЛkterА ХАst va╧eho hardware potЬebuje ``speciАlnМ'' ovladaХe, aby mohla "
+"pracovat.\n"
+"Dal╧М informace mЫ╬ete nalИzt na: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2232,237 +2881,256 @@ msgid ""
msgstr ""
"MusМte mМt koЬenovЩ oddМl.\n"
"K jeho vytvoЬenМ musМte zvolit jeden existujМcМ oddМl\n"
-"(nebo vytvoЬit novЩ), potИ zvolit ``PЬМpojnЩ bod''\n"
+"(nebo vytvoЬit novЩ), zvolit ``PЬМpojnЩ bod''\n"
"a nastavit ho na `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"NemЫ╬u pЬeХМst Va╧i tabulku oddМlЫ, mo╬nА je pЬМli╧ naru╧enА :(\n"
-"PokusМm se pokraХovat v Хi╧tЛnМ ╧patnЩch oddМlЫ"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "MusМte mМt odklАdacМ oddМl"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake neuspЛl pЬi ХtenМ tabulky oddМlЫ.\n"
-"PokraХujte pouze na vlastnМ riziko!"
+"NemАte odklАdacМ oddМl\n"
+"\n"
+"PЬesto chcete pokraХovat?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "VyhledАvАnМ koЬenovИho oddМlu."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Pou╬Мt volnИ mМsto"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informace"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "NenМ dostatek mМsta pro vytvoЬenМ novИho diskovИho oddМlu"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Toto nenМ koЬenovЩ diskovЩ oddМl, prosМm zvolte jinЩ."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Pou╬Мt existujМcМ oddМl"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Nebyl nalezen ╬АdnЩ koЬenovЩ oddМl"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "NenМ zde ╬АdnЩ existujМcМ oddМl k pou╬itМ"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NemЫ╬u pou╬Мt broadcast bez NIS domИny"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Pou╬Мt Windows oddМl jako loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Chyba pЬi ХtenМ souboru $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "KterЩ diskovЩ oddМl chcete pou╬Мt pro Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Stala se chyba, ale nevМm jak jМ sprАvnЛ interpretovat.\n"
-"PokraХujte na vlastnМ riziko."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Zvolte velikosti"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "ZdvojenЩ pЬМpojnЩ bod %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Velikost koЬenovИho oddМlu v MB:"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"NЛkterИ dЫle╬itИ balМХky nebyli sprАvnЛ nainstalovanИ.\n"
-"Je mo╬nИ, ╬e po╧kozen CD disk nebo CD-ROM mechanika\n"
-"Zkontrolujete to pou╬itМm pЬМkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Velikost swapovИho oddМlu v MB: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "VМtejte na %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Pou╬Мt volnИ mМsto na Windows oddМlu"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "NenМ dostupnА disketovА mechanika"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Na kterИm oddМlu chcete mЛnit velikost?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "PoХМtАm hranice souborovИho systИmu s Windows"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "ZaХМnАm `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"ZmЛnu velikost FAT nenМ mo╬nИ provИst, \n"
+"vyskytla se nАsledujМcМ chyba: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "MusМte mМt oddМl odklАdacМho prostoru"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"VА╧ diskovЩ oddМl s Windows je pЬМli╧ fragmentovАn, pou╬ijte nejdЬМve "
+"``defrag''"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"NemАte oddМl odklАdacМho prostoru\n"
+"VAROVаNм!\n"
"\n"
-"PЬesto chcete pokraХovat?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Zadejte velikost kterou chcete pro nainstalovanЩ systИm"
+"DrakX nynМ musМ zmen╧it oddМl s Windows. BuОte opatrnМ: tato operace je\n"
+"nebezpeХnА. Pokud jste tak ji╬ neuХinili, mЛli byste nejprve ukonХit "
+"instalaci\n"
+"spustit scandisk ve Windows (popЬМpadЛ i defrag) a potom instalaci znovu "
+"spustit\n"
+"TakИ byste si mЛli data zАlohovat. A╬ si budete jistМ, ╬e chcete pokraХovat\n"
+"stisknЛte Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "CelkovА velikost: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Jakou velikost oddМlu chcete nechat pro Windows na"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Verze: %s\n"
+msgid "partition %s"
+msgstr "diskovИm oddМlu %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Velikost: %d kB\n"
+msgid "FAT resizing failed: %s"
+msgstr "ZmЛna FAT oddМlu neuspЛla: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Vyberte si balМХky kterИ chcete nainstalovat"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Nejsou zde ╬АdnИ FAT oddМly, kterИ by bylo mo╬nИ zmЛnit (nebo nenМ dostatek "
+"mМsta)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Informace"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Smazat celЩ disk"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instaluj"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Odstranit Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instaluji"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "MАte vМce ne╬ jeden pevnЩ disk, na kterЩ chcete instalovat Linux?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "ProsМm poХkejte, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "V╧echny diskovИ oddМly a data na disku %s budou zru╧ena"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "ZbЩvajМcМ Хas "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "MСd pro Experty"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "CelkovЩ Хas "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Pou╬Мt DiskDrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "PЬipravuji instalaci"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Pou╬Мt fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Instaluji balМХek %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"NynМ mЫ╬ete rozdЛlit VА╧ %s hardisk\n"
+"A╬ skonХМte, nezapomeРte ulo╬it zmЛny pomocМ `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "PЬesto pokraХovat?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Pou╬Мt volnИ mМsto na Windows oddМlu"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Stala se chyba pЬi ЬazenМ balМХkЫ:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "NemЫ╬u pЬidat ╬АdnЩ dal╧М oddМl"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Pou╬Мt existujМcМ nastavenМ pro X11?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "PrЫvodce DrakX na╧el nАsledujМcМ Ьe╧enМ:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "ProsМm zvolte jednu z nАsledujМcМch instalaХnМch tЬМd:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "VytvАЬenМ diskovЩch oddМlЫ selhalo: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "NemАte ╬АdnИ Windows-ovИ oddМly!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Startuji sМ╩"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "NemАte dostatek prostoru pro Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Zastavuji sМ╩"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"VAROVаNм!\n"
-"\n"
-"DrakX nynМ musМ zmen╧it oddМl s Windows. BuОte opatrnМ: tato operace je\n"
-"nebezpeХnА. Pokud jste tak ji╬ neuХinili, mЛli byste nejprve ukonХit "
-"instalaci\n"
-"spustit scandisk ve Windows (popЬМpadЛ i defrag) a potom instalaci znovu "
-"spustit\n"
-"TakИ byste si mЛli data zАlohovat. A╬ si budete jistМ, ╬e chcete pokraХovat\n"
-"stisknЛte Ok."
+"Stala se chyba, ale nevМm jak jМ sprАvnЛ interpretovat.\n"
+"PokraХujte na vlastnМ riziko."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "AutomatickА zmЛna velikosti neuspЛla"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "ZdvojenЩ pЬМpojnЩ bod %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "KterЩ diskovЩ oddМl chcete pou╬Мt pro Linux4Win?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"NЛkterИ dЫle╬itИ balМХky nebyly sprАvnЛ nainstalovanИ.\n"
+"Je mo╬nИ, ╬e je po╧kozen CD disk nebo CD-ROM mechanika\n"
+"Zkontrolujete to pou╬itМm pЬМkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Zvolte velikosti"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "VМtejte na %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Velikost koЬenovИho oddМlu v MB:"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "NenМ dostupnА ╬АdnА disketovА mechanika"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Velikost swapovИho oddМlu v MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "ZaХМnАm `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"VА╧ systИm mА mАlo prostЬedkЫ. PЬi instalaci Mandrake Linuxu se\n"
+"mЫ╬ete setkat s rЫznЩmi problИmy. Pokud se tak stane, zkuste textovou\n"
+"verzi instalaХnМho programu. Ten se spou╧tМ tak, ╬e pЬi startu z\n"
+"CD mechaniky stisknete `F1' a potИ napМ╧ete `text'."
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "ProsМm zvolte jednu z nАsledujМcМch instalaХnМch tЬМd:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "CelkovА velikost zvolenЩch balМХkЫ je pЬibli╬nЛ %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2476,7 +3144,7 @@ msgstr ""
"MalЩ poХet procent nainstaluje pouze ty nejdЫle╬itЛj╧М balМХky, 100%%\n"
"nainstaluje v╧echny zvolenИ."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2491,58 +3159,99 @@ msgstr ""
"procent. MalЩ poХet procent nainstaluje pouze ty nejdЫle╬itЛj╧М\n"
"balМХky, %d%% nainstaluje maximАlnМ mo╬nИ mno╬stvМ balМХkЫ."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "PЬesnЛji si budete moci vybrat v pЬМ╧tМm kroku"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Procent balМХkЫ k instalaci"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Vyberte si balМХky kterИ chcete nainstalovat"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Informace"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instaluj"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "AutomatickИ zАvislosti"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
-msgstr "Rozbal strom"
+msgstr "Rozbal vЛtev"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
-msgstr "Sbal strom"
+msgstr "Sbal vЛtev"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
-msgstr "PЬepnutМ mezi zАkladnМm a skupinovЩm rovnАnМm"
+msgstr "PЬepnutМ mezi celkovЩm a skupinovЩm rovnАnМm"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "╘patnЩ balМХek"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "JmИno: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Verze: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Velikost: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "DЫle╬itost: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "CelkovА velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"NemЫ╬ete oznaХit tento balМХek, proto╬e pro jeho instalaci nenМ dost mМsta"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Tyto balМХky budou instalovАny"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Tyto balМХky budou odebrАny"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "NemЫ╬ete vybrat/nevybrat tento balМХek"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradatelnЩ balМХek, nemЫ╬e bЩt odstranЛn"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "NemЫ╬ete od-oznaХit tento balМХek, proto╬e je u╬ nainstalovanЩ"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2550,45 +3259,89 @@ msgstr ""
"Tento balМХek musМ bЩt obnoven\n"
"Jste si jisti, ╬e ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balМХek musМ bЩt obnoven, nemЫ╬ete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"NemЫ╬ete oznaХit tento balМХek, proto╬e pro jeho instalaci nenМ dost mМsta"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Tyto balМХky budou instalovАny/odebrАny"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "NemЫ╬ete vybrat/nevybrat tento balМХek"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instaluji"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "ProsМm poХkejte, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "ZbЩvajМcМ Хas "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "CelkovЩ Хas "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Zru╧it"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "PЬipravuji instalaci"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d balМХkЫ"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U Mb"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaluji balМХek %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "VytvoЬit u╬ivatele"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2603,181 +3356,390 @@ msgstr ""
"\n"
"Pokud toto CD nemАte stisknЛte Zru╧it a toto CD nebude nainstalovАno."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "ZmЛnit velikost"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "PЬesto pokraХovat?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Stala se chyba pЬi ЬazenМ balМХkЫ:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Stala se chyba pЬi instalaci balМХkЫ:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Stala se chyba"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "ProsМm zvolte si, kterЩ jazyk chcete pou╬Мvat."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "KlАvesnice"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "JakИ je rozlo╬enМ Va╧М klАvesnice?"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "MЫ╬ete si zvolit dal╧М jazyky, kterИ budou dostupnИ po instalaci"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "KoЬenovЩ oddМl"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "KterЩ diskovЩ oddМl je koЬenovЩ (/) ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "KterЩ typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instalace/Upgrade"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "Je to instalace nebo upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "Je to instalace nebo zАchrana?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "AutomatickА"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "DoporuХenА"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "VlastnМ"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Jste si jistЩ, ╬e jste expert?\n"
-"Pozor na to, budete moct provАdЛt i nebezpeХnИ vЛci."
+"Pozor na to, budete moct provАdЛt i nebezpeХnИ vЛci.\n"
+"\n"
+"Budete dotazovАni na otАzky jako napЬ. ``Pou╬Мt stМnovА(shadow) hesla?''.\n"
+"UmМte na takovИto otАzky odpovЛdЛt?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Upgrade"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "NormАlnМ"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "PracovnМ stanice"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "VЩvojovЩ"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Jak budete poХМtaХ vyu╬Мvat ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "JakЩ je typ Va╧М my╧i?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "PЬipojenМ my╧i"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ke kterИmu sИriovИmu portu je pЬipojena Va╧e my╧?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Nastavuji PCMCIA karty"
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nejsou dostupnИ ╬АdnИ diskovИ oddМly"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "KterЩ diskovЩ oddМl chcete pou╬Мt jako koЬenovЩ"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Zvolte si pЬМpojnИ(mount) body"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"NemЫ╬u pЬeХМst Va╧i tabulku oddМlЫ, je pro mЛ pЬМli╧ poru╧enА :(\n"
+"MЫ╬u se pokusit pokraХovat v Хi╧tЛnМ ╧patnЩch oddМlЫ (V╘ECHNA\n"
+"DATA budou ztracena!). JinА mo╬nost je zakАzat DrakX mЛnit tabulku\n"
+"oddМlЫ (chyba je %s)\n"
+"\n"
+"SouhlasМte s tМm, ╬e pЬМjdete o v╧echny oddМly?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake neuspЛl pЬi ХtenМ tabulky oddМlЫ.\n"
+"PokraХujte pouze na vlastnМ riziko!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "KoЬenovЩ oddМl"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "KterЩ diskovЩ oddМl je koЬenovЩ (/) ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "MusМte restartovat poХМtaХ aby se projevily zmЛny v tabulce oddМlЫ"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskovИ oddМly kterИ chcete naformАtovat"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Otestovat na vadnИ stopy?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "FormАtuji oddМly"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "VytvАЬМm a formАtuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "NenМ dostatek odklАdacМho prostoru k instalaci, prosМm pЬidejte nЛjakЩ"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "HledАm dostupnИ balМХky"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "VyhledАvАm balМХky pro upgrade"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "Na Va╧em systИmu nenМ dostatek mМsta pro instalaci nebo upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"Na Va╧em systИmu nenМ dostatek mМsta pro instalaci nebo upgrade (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "KompletnМ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "MinimАlnМ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "DoporuХenА (%dMB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "VlastnМ"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Zadejte velikost kterou chcete pou╬Мt pro nainstalovanЩ systИm"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "VЩbЛr skupiny balМХkЫ"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "VЩbЛr jednotlivЩch balМХkЫ"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2787,12 +3749,12 @@ msgstr ""
"Pokud nemАte ╬АdnИ z nich, klepnЛte na Zru╧it.\n"
"Pokud VАm chybМ pouze nЛkterИ z nich, od-oznaХte je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM Х. \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2800,172 +3762,11 @@ msgstr ""
"Instaluji balМХek %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "NastavenМ po instalaci"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Ponechat stАvajМcМ nastavenМ IP"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "NynМ znovu nastavit sМ╩"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Nenastavovat sМtЛ"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "NastavenМ sМtЛ"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "MМstnМ sМ╩ u╬ byla nastavena. Chcete:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Chcete na Va╧em poХМtaХi nastavit mМstnМ sМ╩ ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "nebyla nalezena sМ╩ovА karta"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "NastavenМ modemu"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Chcete na Va╧em poХМtaХi nastavit pЬipojenМ k sМti pЬes modem?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Nastavuji sМ╩ovИ zaЬМzenМ %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"ProsМm zadejte IP nastavenМ pro tento stroj.\n"
-"Ka╬dА polo╬ka musМ bЩt zadАna jako IP adresa v desetinnИ formЛ\n"
-"(napЬМklad 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "AutomatickА IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP adresa:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Maska sМtЛ:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa musМ bЩt ve formАtu 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Nastavuji sМ╩"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"ProsМm zadejte Va╧i hostname.\n"
-"Va╧e hostname musМ bЩt ЗplnА, jako ``mybox.mylab.myco.com''.\n"
-"Pokud pou╬МvАte brАnu(gateway), mЫ╬ete takИ zadat jejМ adresu"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS server:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "ZaЬМzenМ brАny(gateway):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "BrАna(gateway):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Hostname:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "MАm se pokusit najМt modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Ke kterИmu sИriovИmu portu je VА╧ modem pЬipojen?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Mo╬nosti vytАХenМ"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "JmИno pЬipojenМ"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "TelefonnМ ХМslo"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "PЬihla╧ovacМ jmИno"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "OvЛЬenМ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Podle scИnАЬe"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "PomocМ terminАlu"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "JmИno domИny"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "PrvnМ DNS Server"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "DruhЩ DNS Server"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3003,7 +3804,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"NynМ si mЫ╬ete stАhnout ╧ifrovacМ software.\n"
+"NynМ si mЫ╬ete stАhnout ╧ifrovacМ software. Chcete tak uХinit PЬijmout ?\n"
"\n"
"VAROVаNм:\n"
"\n"
@@ -3033,88 +3834,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Zvolte si zrcadlo(mirror) pro stahovАnМ balМХkЫ"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Stahuji ze zrcadla(mirror) seznam dostupnЩch balМХkЫ"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "ProsМm vyberte si balМХky kterИ chcete nainstalovat."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "KterИ ХasovИ pАsmo je Va╧e?"
+msgstr "JakИ je va╧e ХasovИ pАsmo?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Jsou Va╧e hardwarovИ hodiny nastaveny na GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "KterЩ systИm chcete pou╬Мt pro tisk?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "╝АdnИ heslo"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Pou╬Мt stМnovЩ soubor (shadow)"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "stМn"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Pou╬Мvat MD5 hesla"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Pou╬Мvat NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "╬lutИ strАnky"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Toto heslo je pЬМli╧ jednoduchИ (musМ bЩt alespoР %d znakЫ dlouhИ)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "OvЛЬenМ pravosti NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS DomИna"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
-msgstr "PЬijmout u╬ivatele"
+msgstr "VytvoЬit u╬ivatele"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "PЬidat u╬ivatele"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(u╬ byl pЬidАn %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3124,60 +3929,86 @@ msgstr ""
"Zadejte u╬ivatele\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "SkuteХnИ jmИno"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "U╬ivatelskИ jmИno"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikona"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Toto heslo je pЬМli╧ jednoduchИ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "ProsМm zadejte u╬ivatelskИ jmИno"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "U╬ivatelskИ jmИno mЫ╬e obsahovat pouze malА pМsmena, ХМsla, `-' a `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
-msgstr "Toto u╬ivatelskИ jmИno u╬ bulo pЬidАno"
+msgstr "Toto u╬ivatelskИ jmИno u╬ bylo pЬidАno"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"PomocМ startovacМ diskety mЫ╬ete nastartovat Linux, bez pou╬itМ normАlnМho\n"
+"zavАdЛcМho programu (bootloader). To je u╬iteХnИ pokud nechcete instalovat\n"
+"SILO, nebo jinЩ operaХnМ systИm odstranМ SILO, nebo SILO\n"
+"na Va╧em poХМtaХi nefunguje. VlastnМ startovacМ disketa takИ mЫ╬e bЩt\n"
+"pou╬ita spolu s\"Mandrake zАchrannЩm diskem\" (rescue image), co╬ poskytuje\n"
+"ЗХinnou pomoc pЬi havАrii systИmu.\n"
+"Jestli╬e chcete vytvoЬit startovacМ disketu, nejdЬМve vlo╬te disketu do\n"
+"mechaniky a potom stisknЛte \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "PrvnМ disketa"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "DruhА disketa"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "PЬeskoХit"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3192,69 +4023,37 @@ msgid ""
msgstr ""
"PomocМ startovacМ diskety mЫ╬ete nastartovat Linux, bez pou╬itМ normАlnМho\n"
"zavАdЛcМho programu (bootloader). To je u╬iteХnИ pokud nechcete instalovat\n"
-"LILO (nebo grub), nebo jinЩ operaХnМ systИm odstranМ LILO, nebo LILO\n"
-"nefunguje na Va╧em poХМtaХi. VlastnМ startovacМ disketa takИ mЫ╬e bЩt\n"
+"LILO (nebo Grub), nebo jinЩ operaХnМ systИm odstranМ LILO, nebo LILO\n"
+"na Va╧em poХМtaХi nefunguje. VlastnМ startovacМ disketa takИ mЫ╬e bЩt\n"
"pou╬ita spolu s\"Mandrake zАchrannЩm diskem\" (rescue image), co╬ poskytuje\n"
"ЗХinnou pomoc pЬi havАrii systИmu. Chcete vytvoЬit startovacМ disketu ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Bohu╬el nenМ dostupnА ╬АdnА disketovА mechanika"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvolte mechaniku kde chcete vytvoЬit startovacМ disketu"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Vlo╬te disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "VytvАЬМm startovacМ disketu"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalace LILO neuspЛla. Stala se tato chyba:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Chcete pou╬Мt SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "ZАkladnМ nastavenМ SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Zde jsou jednotlivИ zАznamy SILO.\n"
-"MЫ╬ete pЬidat dal╧М nebo zmЛnit stАvajМcМ."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "DiskovЩ oddМl"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Tato znaХka se ji╬ pou╬МvА"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalace SILO neuspЛla. Stala se tato chyba:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "PЬipravuji zavАdЛcМ program"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Chcete pou╬Мt aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3262,135 +4061,127 @@ msgstr ""
"Stala se chyba pЬi instalaci aboot,\n"
"mАm se pokusit o instalaci i kdy╬ to zru╧М prvnМ oddМl na disku?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "NastavenМ Proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalace zavАdЛcМho programu neuspЛla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy by mЛla bЩt http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy by mЛla bЩt ftp://..."
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "DveЬe dokoЬАn"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "SlabА"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "NМzkА"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "StЬednМ"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "VysokА"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanoidnМ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "RЫznИ otАzky"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(mЫ╬e zpЫsobit naru╧enМ dat)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "MАm pou╬Мt optimalizace hardisku?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Zvolte si ЗroveР zabezpeХenМ"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud tЬeba, upЬesnЛte velikost RAM (nalezeno %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "AutomatickИ pЬipojovАnМ mИdiМ"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "VyХistit /tmp pЬi ka╬dИm startu"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Povolit vМce profilЫ"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "PЬi startu zapni Numlock"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
-msgstr "Zadejte velikost pamЛti v Mb"
+msgstr "Zadejte velikost pamЛti v MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "PЬi vysokИ Зrovni zabezpeХenМ nemЫ╬ete pou╬Мt supermount"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX vytvoЬМ soubory s konfiguracМ pro XFree verze 3.3 i 4.0.\n"
-"StandardnЛ je pou╬it server verze 3.3 proto╬e funguje na vМce grafickЩch\n"
-"karet.\n"
-"Chcete radЛji pou╬Мt XFree 4.0?"
+"Pozor: V TиTO зROVNI ZABEZPEхENм NENм MO╝Nи SE PьIHLаSIT Z KONZOLE JAKO\n"
+"ROOT! Pokud chcete bЩt root, musМte se nejdЬМve pЬihlАsit jako normАlnМ\n"
+"u╬ivatel a potom pou╬Мt \"su\". CelkovЛ neoХekАvejte, ╬e budete moct pou╬Мt\n"
+"poХМtaХ k nЛХemu jinИmu ne╬ jako server.\n"
+"Byli jste varovАni."
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "MАm zkusit najМt PCI zaЬМzenМ?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Dejte si pozor, zda mАte zapnutЩ Numlock, proto╬e jinak mnoho klАves\n"
+"pМ╧e ХМsla mМsto pМsmen (napЬ: pЬi stisknutМ `p' dostanete `6')"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Pou╬Мt existujМcМ nastavenМ pro X11?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
-msgstr "PЬejete si vygenerovat auto instalaХnМ disketu pro replikaci linuxu?"
+msgstr "PЬejete si vytvoЬit auto instalaХnМ disketu pro replikaci Linuxu?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vlo╬te prАzdnou disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "VytvАЬМm disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"NЛkterИ kroky nejsou dokonХeny.\n"
-"\n"
-"Chcete nynМ opravdu skonХit?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3402,162 +4193,19 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Gratulujeme, instalace je dokonХena.\n"
-"VyjmЛte startovacМ mИdium a stisknЛte Enter pro spu╧tЛnМ systИmu.\n"
-"\n"
-"Informace o opravАch kterИ jsou dostupnИ pro tuto verzi Mandrake\n"
-"Linuxu zМskАte na strАnkАch dostupnЩch na http://www.linux-mandrake.com/.\n"
-"\n"
-"Informace o sprАvЛ Va╧eho systИmu je dostupnА v po-instalaХnМ kapitole\n"
-"OficiАlnМ Mandrake Linux U╬ivatelskИ pЬМruХce."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "VypМnАm poХМtaХ"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaluji ovladaХ pro %s kartu %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "KterЩ %s ovladaХ bych mЛl zkusit?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Aby mohl ovladaХ %s sprАvnЛ pracovat, potЬebuje v nЛkterЩch pЬМpadech extra\n"
-"informace, pЬesto╬e vЛt╧inou funguje i bez nich. Chcete zadat nЛjakИ\n"
-"doplРujМcМ parametry, nebo nechАte ovladaХ samostatnЛ prozkoumat VА╧\n"
-"systИm? VyjМmeХnЛ mЫ╬e zkoumАnМ zhroutit poХМtaХ, ale nemЛlo by to\n"
-"zpЫsobit ╬Аdnou ╧kodu."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "AutomatickИ prozkoumАnМ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Zadat parametry"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "NynМ mЫ╬ete zadat doplРujМcМ parametry modulu %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"NynМ mЫ╬ete zadat doplРujМcМ parametry modulu %s.\n"
-"Informace majМ formАt ``jmИno=hodnota jmИno2=hodnota2 ...''.\n"
-"NapЬМklad: ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "DoplРujМcМ parametry:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Nata╬enМ modulu %s neuspЛlo.\n"
-"Chcete to zkusit znovu s jinЩmi parametry?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "MАm zkusit najМt PCMCIA zaЬМzenМ?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "NastavujМ PCMCIA karty..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "MАm zkusit najМt zaЬМzenМ %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Nalezeno %s %s rozhranМ"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "MАte jinЩ?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "MАte nЛjakИ %s rozhranМ"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ne"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ano"
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "PodМvejte se do dokumentace k hardware"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Startuji sМ╩"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "UkonХuji prАci v sМti"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Mandrake Linux Instalace %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> pЬep. mezi prvky | <Space> vЩbЛr | <F12> dal╧М obraz."
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"NynМ mЫ╬ete rozdЛlit VА╧ %s hardisk\n"
-"A╬ skonХМte, nezapomeРte ulo╬it zmЛny pomocМ `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "ProsМm poХkejte"
@@ -3567,7 +4215,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Dvojsmyslnost (%s), buОte pЬesnЛj╧М\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "╘patnА volba, zkuste to znovu\n"
@@ -3581,446 +4229,950 @@ msgstr " ? (standardnЛ %s) "
msgid "Your choice? (default %s) "
msgstr "Va╧e volba? (standardnЛ %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Va╧e volba? (standardnЛ %s; zadejte `none' pro nic) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "хeskИ"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "NЛmeckИ"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "DvoЬАk"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "╘panЛlskИ"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "FinskИ"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "FrancouzskИ"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "NorskИ"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "PolskИ"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "RuskИ"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UK-BritskИ"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US-AmerickИ"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "ArmИnskИ (starИ)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "ArmИnskИ (psacМ stroj)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "ArmИnskИ (foneticky)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "аzerbajd╬АnskИ (latinka)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "аzerbajd╬АnskИ (cyrilice)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "BelgickИ"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BulharskИ"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "BrazilskИ (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "BЛloruskИ"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "╘vЩcarskИ (NЛmeckЩ styl)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "╘vЩcarskИ (FrancouzskЩ styl)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "NЛmeckИ (bez mrtvЩch klАves)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DАnskИ"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "DvoЬАk (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "DvoЬАk (NorskИ)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "EstonskИ"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "GruzМnskИ (\"RuskИ\" rozlo╬enМ)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "GruzМnskИ (rozlo╬enМ \"Latin\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "ьeckИ"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "MaОarskИ"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "ChorvatskИ"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "IzraelskИ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "IzraelskИ (foneticky)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "мrАnskИ"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IslandskИ"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "ItalskИ"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "JaponskА 106 klАves"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latinsko-AmerickИ"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "HolandskИ"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "LitevskИ AZERTY (starА)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "LitevskИ AZERTY (novА)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "LitevskИ \"ХМselnА Ьada\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "LitevskИ \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "PolskИ (rozlo╬enМ QWERTY)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "PolskИ (rozlo╬enМ QWERTZ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortugalskИ"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "KanadskИ (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "RuskИ (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "╘vИdskИ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "SlovinskИ"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SlovenskИ"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "ThaiskИ"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "TureckИ (tradiХnМ model \"F\")"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "TureckИ (modernМ model \"Q\")"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "UkrajinskИ"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US (mezinАrodnМ)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "VietnamskА \"ХМselnА Ьada\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "JugoslАvskИ (rozlo╬enМ latin)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - my╧"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "StandardnМ"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "ObecnЩ"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "KoleХko"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "sИriovА"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "StandardnМ tЬМtlaХМtkovА My╧"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "StandardnМ tЬМtlaХМtkovА My╧"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech sИrie CC (sИriovА)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sИriovА, starЩ C7 typ)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Bez my╧i"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 taХМtka"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 tlaХМtka"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "╝АdnЩ"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Bez my╧i"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "Dal╧М ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Je to sprАvnЛ?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "NastavenМ Internetu"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Chcete se nynМ pokusit pЬipojit k internetu?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "NastavenМ pЬipojenМ k internetu"
+
+# ../.vygenerovat ./netconnect.pm_.c:528
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "NepЬipojovat se k internetu"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "PЬipojenМ k Internetu / NastavenМ mМstnМ sМtЛ"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "NastavenМ ISDN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Vyberte si svИho poskytovatele internetu.\n"
+" Pokud nenМ na seznamu, vyberte si Unlisted"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "NastavenМ PЬipojenМ"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "ProsМm vyplРte nebo zkontrolujte nАsledujМcМ Зdaje"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ karty"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "DMA karty"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO karty"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 karty"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 karty"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Va╧e osobnМ telefonnМ ХМslo"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "JmИno poskytovatele (napЬ provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Tel. ХМslo poskytovatele"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "PrimАrnМ DNS poskytovatele"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "SekundАrnМ DNS poskytovatele"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Typ vytАХenМ"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "VА╧ ЗХet (u╬ivatelskИ jmИno)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Heslo va╧eho ЗХtu"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Heslo va╧eho ЗХtu (je╧tЛ jednou)"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Evropa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Evropa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Zbytek svЛta"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Zbytek svЛta - ╬АdnЩ D-Channel (leased lines)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "KterЩ protokol chcete pou╬Мt?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "NevМm"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "JakЩ typ karty mАte?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "PokraХovat"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "PЬeru╧it"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"Vitejte v LILO, v programu pro start operacniho systemu!\n"
"\n"
-"Pro seznam voleb stisknete <TAB>.\n"
+"Jestli mАte ISA kartu, mЛly by bЩt hodnoty na nАsledujМcМ obrazovce "
+"sprАvnИ.\n"
"\n"
-"Napiste jmeno vybraneho systemu a stisknete <ENTER>, nebo pockejte\n"
-"%d sekund do automatickeho startu.\n"
+"Jestli mАte PCMCIA kartu, musМte znАt jejМ IRQ a IO.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Kterou z tЛhto ISND karet mАte?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Na╧el jsem ISDN kartu:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Na╧el jsem ISDN PCI kartu, jejМ╬ typ ale neznАm. ProsМm zvolte si jednu z "
+"nАsledujМcМho seznamu PCI karet."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Nena╧el jsem ╬Аdnou ISDN PCI kartu. ProsМm zvolte si jednu z nАsledujМcМ "
+"nabМdky"
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Na Va╧em poХМtaХi nebyl nalezen ╬АdnЩ sМ╩ovЩ adaptИr. Spus╩te prosМm program "
+"pro nastavenМ hardware."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Zvolte sМ╩ovИ rozhranМ"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Vyberte si prosМm kterЩ sМ╩ovЩ adaptИr chcete pou╬Мt pro pЬipojenМ k "
+"internetu"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "SМ╩ovИ rozhranМ"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Vitejte v GRUBu, programu na vyber operacniho systemu"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Znovu spustМm sМ╩ovИ rozhranМ. SouhlasМte ?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Pro vЩbЛr polo╬ek pou╬ijte klАvesy %c a %c."
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "NastavenМ ADSL"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "StisknЛte ENTER pro start vybranИho OS, 'e' pro Зpravu"
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Chcete se automaticky pЬipojovat po startu poХМtaХe?"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "startovacМch parametrЫ, nebo 'c' pro pЬМkazovou ЬАdku."
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "MАm se pokusit najМt modem?"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "VybranА polo╬ka bude automaticky spu╧tЛna za %d sekund."
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Ke kterИmu sИriovИmu portu je VА╧ modem pЬipojen?"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "nenМ dost mМsta v /boot"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Mo╬nosti vytАХenМ"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "JmИno pЬipojenМ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "NabМdka Start"
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "TelefonnМ ХМslo"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - my╧"
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "PЬihla╧ovacМ jmИno"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Aplle ADB my╧ "
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "OvЛЬenМ"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB my╧ (2 tlaХМtka)"
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB my╧ (3 nebo vМce tlaХМtek)"
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Podle scИnАЬe"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB my╧"
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "PomocМ terminАlu"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB my╧ (2 tlaХМtka)"
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "JmИno domИny"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB my╧ (3 nebo vМce tlaХМtek)"
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "PrvnМ DNS Server"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "StandardnМ my╧ (PS/2)"
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "DruhЩ DNS Server"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "PЬipojenМ k Internetu / NastavenМ mМstnМ sМtЛ"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "StandardnМ tЬМtlaХМtkovА My╧ (PS/2)"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "NastavenМ pЬipojenМ k internetu"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+# ../.vygenerovat ./netconnect.pm_.c:528
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "NepЬipojovat se k internetu"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+# ../.vygenerovat ./netconnect.pm_.c:528
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "NepЬipojovat se k internetu"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "PЬipojit se k internetu"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Odpojit se od internetu"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "NastavenМ pЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "NastavenМ a pЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+#, fuzzy
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Znovu spustМm sМ╩ovИ rozhranМ. SouhlasМte ?"
+
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "NastavenМ pЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "NastavenМ pЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "InternМ ISDN kartou"
+
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "ExternМm modemem"
+
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "PЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "JakИ je va╧e ISDN pЬipojenМ?"
+
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "NastavenМ pЬipojenМ k internetu"
+
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Francie"
+
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "OstatnМ zemЛ"
+
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "Ve kterИ zemi se nachАzМte?"
+
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
+
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modemem"
+
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Pokud je vА╧ adsl modem Alcatel, zvolte Alcatel, jinak zvolte ECI."
+
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "pou╬Мt pppoe"
+
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "nepou╬Мvat pppoe"
+
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"NejbЛ╬nЛji se pro pЬipojenМ pomocМ adsl pou╬МvА dhcp + pppoe.\n"
+"PЬesto ale existujМ pЬipojenМ, kterИ pou╬МvajМ pouze dhcp. Jestli si nejste "
+"jistМ, zvolte 'pou╬Мt pppoe'"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "NastavenМ pЬipojenМ k internetu"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"KterИho dhcp klienta chcete pou╬Мt?\n"
+"StandardnМ je dhcpd"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "NastavenМ pЬipojenМ k internetu"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "NastavenМ mМstnМ sМtЛ"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "NastavenМ sМtЛ"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Chcete si vyzkou╧et nastavenМ?"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "VypnutМ sМ╩ovЩch slu╬eb"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "PЬipojenМ k Internetu / NastavenМ mМstnМ sМtЛ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB my╧"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"MМstnМ sМ╩ u╬ byla nastavena.\n"
+"Chcete:"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB my╧ (3 nebo vМce tlaХМtek)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Jak se chcete pЬipojit k Internetu?"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Bez my╧i"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "NastavenМ sМtЛ"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Ver. 2.1A nebo vy╧╧М (sИriovА)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech sИrie CC (sИriovА)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "nebyla nalezena sМ╩ovА karta"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (sИriovА)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Nastavuji sМ╩"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (sИriovА)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"ProsМm zadejte Va╧e hostname, proto╬e ji vy╬adujМ nЛkterИ\n"
+"DHCP servery. Va╧e hostname musМ bЩt ЗplnИ, jako napЬМklad\n"
+"``mybox.mylab.myco.com''."
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (sИriovА)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Host name"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (sИriovА)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (sИriovА)"
+#: ../../network.pm_.c:302
+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 ""
+"ProsМm zadejte IP nastavenМ pro tento poХМtaХ.\n"
+"Ka╬dА polo╬ka musМ bЩt zadАna jako IP adresa v 'desetinnИ' formЛ\n"
+"(napЬМklad 1.2.3.4)."
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (sИriovА)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Nastavuji sМ╩ovИ zaЬМzenМ %s"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sИriovА, starЩ C7 typ)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "AutomatickА IP"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (sИriovА)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP adresa"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "StandardnМ my╧ (sИriovА)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Maska sМtЛ"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft kompatibilnМ (sИriovА)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "StandardnМ tЬМtlaХМtkovА My╧ (sИriovА)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresa musМ bЩt ve formАtu 1.2.3.4"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (sИriovА)"
+#: ../../network.pm_.c:341
+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 ""
+"ProsМm zadejte Va╧i hostname.\n"
+"Va╧e hostname musМ bЩt ЗplnА, jako ``mybox.mylab.myco.com''.\n"
+"Pokud pou╬МvАte brАnu(gateway), mЫ╬ete takИ zadat jejМ adresu"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Je to sprАvnЛ?"
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS server"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "BrАna(gateway)"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "ZaЬМzenМ brАny(gateway)"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "NastavenМ proxy"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy by mЛla bЩt http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy by mЛla bЩt ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
-msgstr "NepodporovanИ roz╧МЬenИ diskovИ oddМly"
+msgstr "Roz╧МЬenИ diskovИ oddМly nejsou na tomto systИmu podporovАny"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4030,21 +5182,21 @@ msgstr ""
"JedinИ Ьe╧enМ je pЬesunout primАrnМ oddМly tak, abyste mЛli mezeru vedle\n"
"roz╧МЬenЩch oddМlЫ."
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Chyba pЬi ХtenМ souboru %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspЛla: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "╘patnЩ zАlo╬nМ soubor"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba pЬi zapisovАnМ do souboru %s"
@@ -4078,42 +5230,51 @@ msgstr "zajМmavИ"
msgid "maybe"
msgstr "mo╬nА"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (dЫle╬itИ)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (velmi pЛknИ)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (pЛknИ)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Uka╬ mИnЛ"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Uka╬ vМce"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "MМstnМ tiskАrna"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "VzdАlenЩ lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "VzdАlenА tiskАrna"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "VzdАlenЩ CUPS server"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "VzdАlenЩ lpd server"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "SМ╩ovА tiskАrna (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "URI TiskovИho ZaЬМzenМ"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Detekuji zaЬМzenМ..."
@@ -4127,11 +5288,11 @@ msgstr "Otestovat porty"
msgid "A printer, model \"%s\", has been detected on "
msgstr "TiskАrna typu \"%s\" byla nalezena na "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "MМstnМ TiskАrna"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4139,15 +5300,15 @@ msgstr ""
"Ke kterИmu zaЬМzenМ je Va╧e tiskАrna pЬipojena\n"
"(v╧imli jste si ╬e /dev/lp0 odpovМdА LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "ZaЬМzenМ TiskАrny"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Mo╬nosti VzdАlenИ lpd TiskАrny"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4157,19 +5318,19 @@ msgstr ""
"musМte zadat hostname tiskovИho serveru a jmИno fronty\n"
"kam mА bЩt posМlАn tisk."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "VzdАlenИ hostname"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "VzdАlenА fronta"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Mo╬nosti SMB (Windows 9x/NT) tiskАrny"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4182,27 +5343,27 @@ msgstr ""
"hostname) a mo╬nА i IP adresu tiskovИho serveru, jmИno sdМlenИ tiskАrny,\n"
"vhodnИ u╬ivatelskИ jmИno, heslo a informace o pracovnМ skupinЛ."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Hostname SMB serveru"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP SMB serveru"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "SdМlenИ jmИno"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "PracovnМ skupina"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Mo╬nosti NetWare TiskАrny"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4211,133 +5372,157 @@ msgid ""
msgstr ""
"Abyste mohli tisknout na NetWare tiskАrnЛ, musМte zadat jmИno NetWare\n"
"serveru (Pozor! To mЫ╬e bЩt odli╧nИ od jeho TCP/IP hostname!), jmИno\n"
-"tiskovИ fronty tiskАrny kterou chcete pou╬Мvat a vhodnИ u╬ivatelskИ\n"
+"tiskovИ fronty tiskАrny kterou chcete pou╬Мvat a u╬ivatelskИ\n"
"jmИno a heslo."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "TiskovЩ Server"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "JmИno TiskovИ Fronty"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Mo╬nosti SoketovИ TiskАrny"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Abyste mohli tisknout na soketovИ tiskАrnЛ, musМte zadat\n"
+"hostname tiskАrny a volitelnЛ i ХМslo portu."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Hostname tiskАrny"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "S CUPS mЫ╬ete pЬМmo zadat URI pro pЬМstup k tiskАrnЛ."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "JakЩ typ tiskАrny mАte?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Chcete vyzkou╧et tisk?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Tisknu testovacМ strАnku(ky)"
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Zku╧ebnМ tisk byl poslАn tiskovИmu dИmonu.\n"
+"MЫ╬e chvilku trvat ne╬ zaХne tisk.\n"
+"Stav tisku:\n"
+"%s\n"
+"\n"
+"ProbЛhl tisk sprАvnЛ ?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Zku╧ebnМ tisk byl poslАn tiskovИmu dИmonu.\n"
+"MЫ╬e chvilku trvat ne╬ zaХne tisk.\n"
+"ProbЛhl tisk sprАvnЛ ?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ano, vytiskni testovacМ ASCII strАnku"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ano, vytiskni Postskriptovou testovacМ strАnku"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ano, vytiskni obЛ testovacМ strАnky"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "NastavenМ TiskАrny"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "JakЩ typ tiskАrny mАte?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Mo╬nosti tiskАrny"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Velikost PapМru"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Vysunout papМr po tisku?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Mo╬nosti Uniprint ovladaХe"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Mo╬nosti BarevnИ hloubky"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Tisknout text jako PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Tisknout odzadu"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Opravovat schodovitЩ text?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "PoХet strАnek na jeden vyti╧tЛnЩ list"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "PravЩ/LevЩ okraj v bodech (1/72 palce)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "HornМ/DolnМ okraj v bodech (1/72 palce)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Extra mo╬nosti GhostScriptu"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "SpeciАlnМ textovИ mo╬nosti"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Chcete vyzkou╧et ti╧tЛnМ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Tisknu testovacМ strАnku(ky)"
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Zku╧ebnМ tisk byl poslАn tiskovИmu dИmonu.\n"
-"MЫ╬e chvilku trvat ne╬ zaХne tisk.\n"
-"Stav tisku:\n"
-"%s\n"
-"\n"
-"ProbЛhl tisk sprАvnЛ ?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Zku╧ebnМ tisk byl poslАn tiskovИmu dИmonu.\n"
-"MЫ╬e chvilku trvat ne╬ zaХne tisk.\n"
-"ProbЛhl tisk sprАvnЛ ?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "TiskАrna"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "ChtЛli byste nastavit tiskАrnu?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4345,19 +5530,67 @@ msgstr ""
"Zde jsou tiskovИ fronty.\n"
"MЫ╬ete pЬidat dal╧М nebo zmЛnit stАvajМcМ."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Odhaduji"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Zvolte pЬipojenМ tiskАrny"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Jak je tiskАrna pЬipojena?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Zvolte pЬipojenМ vzdАlenИ tiskАrny"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"V pЬМpadЛ CUPS serveru nemusМte pЬМmo nastavovat tiskАrny,\n"
+"ty budou automaticky detekovАny.\n"
+"Pokud si nejste jistМ, zvolte \"VzdАlenЩ CUPS server\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Odebrat frontu"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Ka╬dА tiskАrna musМ mМt jmИno (napЬ. lp).\n"
+"OstatnМ parametry jako je popis tiskАrny, nebo jejМ umМstЛnМ\n"
+"mohou takИ bЩt definovАny. JakИ mА bЩt pou╬ito jmИno pro tuto\n"
+"tiskАrnu a jak je tak tiskАrna pЬipojena?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "JmИno tiskАrny"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Popis"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "UmМstЛnМ"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4368,45 +5601,45 @@ msgstr ""
"jmИno (Хasto lp) a vlastnМ (spool) adresАЬ. JakИ jmИno a adresАЬ\n"
"mА bЩt pou╬it pro tuto frontu, a jak je tiskАrna pЬipojena ?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "JmИno fronty"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spool adresАЬ"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "PЬipojenМ tiskАrny"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "NemЫ╬u pЬidat oddМl do _naformАtovanИho_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "NemЫ╬u zapsat soubor $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid neuspЛl"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspЛl (mo╬nА, ╬e chybМ raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "NenМ dostatek oddМlЫ pro RAID ЗrovnЛ %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron - spou╧tМ opakujМcМ se akce"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4414,7 +5647,7 @@ msgstr ""
"apmd je pou╬МvАn pro sledovАnМ stavu baterie a zaznamenАvАnМ pЬes syslog.\n"
"MЫ╬e takИ bЩt pou╬it pro vypnutМ poХМtaХe pЬi vybitИ baterii."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4422,18 +5655,18 @@ msgstr ""
"Spou╧tМ pЬМkazy naplАnovanИ pЬМkazem na urХitЩ Хas pЬМkazem 'at'.\n"
"TakИ spou╧tМ pЬМkazy pЬi nМzkИm vytМ╬enМ systИmu."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-"cron je standardnМ UNIXovЩ program kterЩ spou╧tМ u╬ivatelem zadanИ programy\n"
+"cron je standardnМ UnixovЩ program kterЩ spou╧tМ u╬ivatelem zadanИ programy\n"
"v pЬedem definovanЩch intervalech. vixie cron mА navМc mnoho vlastnostМ,\n"
"vХetnЛ vy╧╧М bezpeХnosti a vМce mo╬nostМ nastavenМ."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4444,13 +5677,13 @@ msgstr ""
"Commander).\n"
"MЫ╬e takИ v konzoli provАdЛt operace 'vyjmi' a 'vlo╬' a ovlАdat pop-up menu."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr "Apache je WWW server. Je pou╬МvАn k poskytovАnМ HTML a CGI souborЫ."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4464,7 +5697,7 @@ msgstr ""
"telnetu, ftp, rsh a rlogin. Pokud vypnete inetd, vypnete tМm i ostatnМ\n"
"slu╬by kterИ spou╧tМ."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4473,7 +5706,7 @@ msgstr ""
"Tento balМХek nahraje zvolenou mapu klАvesnice (v /etc/sysconfig/keyboard).\n"
"Pro vЛt╧inu poХМtaХЫ byste ho mЛli nechat zapnutЩ."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4481,7 +5714,7 @@ msgstr ""
"lpd je tiskovЩ dИmon, bez kterИho nebude fungovat lpr (program pro tisk).\n"
"Je to server kterЩ posМlА ti╧tЛnИ dokumenty jednotlivЩm tiskАrnАm."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4489,7 +5722,7 @@ msgstr ""
"named (BIND) je DNS server, kterЩ pЬeklАdА hostitelskА jmИna (hostnames) na\n"
"IP adresy."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4498,7 +5731,7 @@ msgstr ""
"(NCP)\n"
"pЬМpojnИ body (mount points)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4506,7 +5739,7 @@ msgstr ""
"Aktivuje a Deaktivuje v╧echny sМ╩ovА rozhranМ kterА majМ nastartovat pЬi\n"
"startu systИmu."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4515,7 +5748,7 @@ msgstr ""
"NFS je oblМbenЩ protokol pro sdМlenМ souborЫ pЬes sМtЛ TCP/IP.\n"
"Tato slu╬ba poskytuje NFS server, jeho╬ nastavenМ je v /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4523,7 +5756,7 @@ msgstr ""
"NFS je oblМbenЩ protokol pro sdМlenМ souborЫ pЬes sМtЛ TCP/IP.\n"
"Tato slu╬ba poskytuje mo╬nost uzamykАnМ souborЫ na NFS."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4535,7 +5768,7 @@ msgstr ""
"problИm\n"
"jМ mМt nainstalovanou i na poХМtaХМch, kterИ ji nepotЬebujМ."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4546,13 +5779,13 @@ msgstr ""
"a NIS. portmap sever musМ bЩt spu╧tЛn na poХМtaХМch, kterИ fungujМ jako\n"
"servery pro protokoly, kterИ pou╬МvajМ mechanismus RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr "Postfix je program pro doruХovАnМ po╧ty z jednoho poХМtaХe na jinЩ."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4560,7 +5793,7 @@ msgstr ""
"UklАdА a obnovuje 'stav entropie' na poХМtaХi, co╬ je pou╬МvАno pro\n"
"kvalitnЛj╧М generaci nАhodnЩch ХМsel."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4571,7 +5804,7 @@ msgstr ""
"pro IP adresy. K tomu pou╬МvА protokol RIP. ZatМmco RIP je bЛ╬nЛ pou╬МvАn\n"
"v malЩch sМtМch, pro slo╬itЛj╧М sМtЛ je zapotЬebМ slo╬itЛj╧М protokoly."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4579,7 +5812,7 @@ msgstr ""
"Protokol rstat umo╬Рuje u╬ivatelЫm sМtЛ sledovat vytМ╬enМ jednotlivЩch\n"
"strojЫ pЬipojenЩch k sМti."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4587,7 +5820,7 @@ msgstr ""
"Protokol rusers umo╬Рuje u╬ivatelЫm sМtЛ zjistit kdo je pЬihlА╧en na\n"
"jinИm poХМtaХi."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4596,7 +5829,7 @@ msgstr ""
"v╧ech u╬ivatelЫ pЬihlА╧enЩch na poХМtaХi s dИmonem rwho (je to podobnИ\n"
"slu╬bЛ finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4605,53 +5838,212 @@ msgstr ""
"systИmovЩch\n"
"log souborЫ. Je dobrИ mМt spu╧tЛnЩ syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "Tento startovacМ skript se pokusМ nahrАt moduly pro Va╧i USB my╧."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Startuje a ukonХuje Font Server pro grafickИ rozhranМ"
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Zvolte si kterИ slu╬by by mЛli bЩt automaticky spu╧tЛny pЬi startu"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Vitejte v SILO, v programu pro zvoleni operacniho systemu!\n"
-"\n"
-"Pro seznam moznych voleb stisknete <TAB>.\n"
-"\n"
-"Napiste jmeno vybraneho systemu a stisknete <ENTER>, nebo pockejte\n"
-"%d sekund do automatickeho startu.\n"
-"\n"
+"NemЫ╬u pЬeХМst Va╧i tabulku oddМlЫ, mo╬nА je pЬМli╧ naru╧enА :(\n"
+"PokusМm se pokraХovat v Хi╧tЛnМ ╧patnЩch oddМlЫ"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "NastavenМ LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "VytvoЬenМ startovacМ diskety"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "FormАtovАnМ diskety"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Volba"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalace LILO neuspЛla. Stala se tato chyba:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "SdМlenМ InternetovИho pЬipojenМ je zapnuto"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "InternetovИ sdМlenМ u╬ bylo nastaveno.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabulka"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "NastavenМ X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "SdМlenМ InternetovИho pЬipojenМ je vypnuto"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "InternetovИ sdМlenМ u╬ bylo nastaveno.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabulka"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "Nepochopil jsem obsah souboru s nastavenМm."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "SdМlenМ InternetovИho PЬipojenМ"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Typ vytАХenМ"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Na Va╧em systИmu nenМ ╬АdnЩ sМ╩ovЩ adaptИr!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Na Va╧em poХМtaХi nebyl nalezen ╬АdnЩ sМ╩ovЩ adaptИr. Spus╩te prosМm program "
+"pro nastavenМ hardware."
+
+#: ../../standalone/drakgw_.c:218
+#, fuzzy
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Na va╧em systИmu je nastaveno pouze jedno sМ╩ovИ rozhranМ:\n"
+"\n"
+"$interface\n"
+"\n"
+"ChtЛli byste na tomto adaptИru pou╬Мvat internet?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "ProsМm zvolte si ke kterИmu sМ╩ovИmu adaptИru bude pЬipojena LAN."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Pozor, sМ╩ovЩ adaptИr je u╬ nastaven.\n"
+"Chcete ho pЬesto nastavit znovu?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "Na╧el jsem mo╬nЩ konflikt v souХasnИm nastavenМ $_\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Na╧el jsem existujМcМ nastavenМ firewallu!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"VarovАnМ! Bylo nalezeno existujМcМ nastavenМ firewallu. Po instalaci mЫ╬e "
+"bЩt zapotЬebМ nЛjakА ruХnМ Зprava. MАm pokraХovat?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Nastavuji skripty, instaluji software, startuji servery..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Nastavuji IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "NemЫ╬u pomocМ urpmi nainstalovat ipchains RPM."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "NemЫ╬u pomocМ urpmi nainstalovat dhcp RPM."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "NemЫ╬u pomocМ urpmi nainstalovat linuxconf RPM."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "NemЫ╬u pomocМ urpmi nainstalovat bind RPM."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "NemЫ╬u pomocМ urpmi nainstalovat nameserver RPM."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Gratuluji!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4660,7 +6052,7 @@ msgid ""
msgstr ""
"Tato ЗroveР musМ bЩt pou╬ita s rozmyslem. Sice mЫ╬ete snadnЛji pou╬Мvat "
"svЫj\n"
-"systИm, ale na druhou stranu je velmi citlivЩ. NemЫ╬e potom bЩt pou╬it pro\n"
+"systИm, ale na druhou stranu je velmi citlivЩ: NesmМ bЩt pou╬it pro\n"
"poХМtaХ pЬipojenЩ k Internetu. Pro pЬihlА╧enМ nenМ zapotЬebМ ╬АdnИ heslo."
#: ../../standalone/draksec_.c:31
@@ -4712,23 +6104,36 @@ msgstr "зroveР zabezpeХenМ"
msgid "Choose the tool you want to use"
msgstr "Zvolte si nАstroj, kterЩ chcete pou╬Мt"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "JakИ je rozlo╬enМ Va╧М klАvesnice?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "ZmЛnit Rozli╧enМ"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "JakЩ je typ Va╧М my╧i?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"VymЛРte prosМm CD!\n"
+"\n"
+"ProsМm vlo╬te CD oznaХenИ \"%s\" do mechaniky a stisknЛte Ok.\n"
+"\n"
+"Pokud toto CD nemАte stisknЛte Zru╧it a toto CD nebude nainstalovАno."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "nebylo nalezeno serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emulovat tЬetМ tlaХМtko?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Ke kterИmu sИriovИmu portu je pЬipojena Va╧e my╧?"
@@ -4941,249 +6346,825 @@ msgstr "HledАm vЛtve"
msgid "Finding leaves takes some time"
msgstr "HledАnМ vЛtvМ mЫ╬e chvМli trvat"
-#~ msgid "useless"
-#~ msgstr "nepou╬itelnИ"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "NastavenМ Internetu"
+
+#, fuzzy
+msgid "Internet"
+msgstr "zajМmavИ"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Office"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "MultimИdia"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "MultimИdia"
-#~ msgid "garbage"
-#~ msgstr "odpad"
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentace"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Zadejte velikost kterou chcete pro nainstalovanЩ systИm"
+
+#~ msgid "Total size: "
+#~ msgstr "CelkovА velikost: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "OpЛtovnИ nastavenМ mМstnМ sМtЛ"
#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under Linux."
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
#~ msgstr ""
-#~ "Na Va╧em poХМtaХi byli nalezeny nЛjakИ true type fonty z instalace Windows.\n"
-#~ "Chcete je pou╬Мvat? UjistЛte se, ╬e mАte prАva pro jejich pou╬МvАnМ\n"
-#~ "v Linuxu."
+#~ "VА╧ poХМtaХ byl nastaven pro sdМlenМ svИho pЬipojenМ k internetu.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "V╧e bylo nastaveno.\n"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "PЬipojit se k internetu normАlnМm modemem"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "PЬipojit se k internetu pomocМ ISDN"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "PЬipojit se k internetu pomocМ DSL (nebo ADSL)"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "PЬipojit se internetu pЬes kabelovou televize"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "хas (v sekundАch) po kterИm pЬi neХinnosti\n"
+#~ "modem sАm zavЛsМ. (pokud si to nepЬejete, nic nepi╧te)"
+
+#~ msgid "Germany"
+#~ msgstr "NЛmecko"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "NЛmeckИ (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "Co chcete dЛlat?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Instaluj/ZachraР"
+
+#~ msgid "Rescue"
+#~ msgstr "ZАchrana"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "KterЩ typ oddМlu chcete?"
#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
#~ msgstr ""
#~ "Zvolte \"Instalace\" pokud nemАte ╬Аdnou pЬedchozМ verzi Linuxu "
#~ "nainstalovanou,\n"
#~ "nebo pokud si pЬejete pou╬Мvat vМce distribucМ nebo verzМ najednou.\n"
#~ "\n"
+#~ "Zvolte \"Rescue\" jestli╬e si pЬejete zachrАnit/obnovit pЬedchozМ verzi\n"
+#~ "Mandrake Linuxu.\n"
#~ "\n"
-#~ "Zvolte \"Upgrade\" jestli╬e si pЬejete pЬeinstalovat stАvajМcМ verzi\n"
-#~ "Mandrake Linuxu: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus)\n"
-#~ "6.1 (Helios), Gold 2000 nebo 7.0 (Air)."
-
-#~ msgid "Recommended"
-#~ msgstr "DoporuХenА"
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Chcete pou╬Мt LILO?"
+#~ "\n"
+#~ "Vyberte si:\n"
+#~ "\n"
+#~ " - DoporuХenА: To je ta pravА volba, jestli╬e jste nikdy dЬМve\n"
+#~ " neinstalovali Linux.\n"
+#~ "\n"
+#~ " - VlastnМ: Jestli╬e znАte Linux, budete si moct vybrat typickИ pou╬itМ\n"
+#~ " nainstalovanИho systИmu. Detaily jsou popsАny nМ╬e.\n"
+#~ "\n"
+#~ " - Expert: Jestli╬e jste dobЬe obeznАmeni s GNU/Linuxem a chcete provИst\n"
+#~ " preciznМ nastavenМ instalace, je prАvЛ pro VАs tato volba. Budete si\n"
+#~ " moct vybrat typickИ pou╬itМ Va╧eho systИmu stejnЛ jako v pЬМpadЛ\n"
+#~ " \"VlastnМ\" instalace.\n"
+#~ " ProsМm nevolte tuto instalaci JESTLI╝E NEVмTE PьESNл CO DлLаTE!\n"
#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
#~ "\n"
#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
#~ "\n"
#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "NynМ si mЫ╬ete vybrat balМХky, kterИ si pЬejete nainstalovat.\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
#~ "\n"
#~ "\n"
-#~ "Nejprve si mЫ╬ete zvolit velikost Va╧eho nainstalovanИho systИmu, potom "
-#~ "bude\n"
-#~ "proveden automatickЩ vЩbЛr balМХkЫ podle typickИho pou╬itМ. Potom si\n"
-#~ "mЫ╬ete vybrat dal╧М skupiny balМХkЫ, nebo klepnout na Ok pro zachovАnМ\n"
-#~ "pЫvodnМho vЩbЛru.\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
#~ "\n"
#~ "\n"
-#~ "Pokud jste v re╬imu \"expert\", mЫ╬ete si vybМrat jednotlivИ balМХky.\n"
-#~ "ProsМm pov╧imnЛte si, ╬e nЛkterИ balМХky vy╬adujМ instalaci jinЩch.\n"
-#~ "TakovИto balМХky jsou oznaХovАny jako zАvislosti balМХku. BalМХky kterИ\n"
-#~ "vyberete a balМХky kterИ jsou zapotЬebМ budou automaticky zvoleny pro\n"
-#~ "instalaci. Je nemo╬nИ nainstalovat balМХek bez instalace v╧ech jeho\n"
-#~ "zАvislostМ."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
+#~ "- Ctrl-m to set the mount point\n"
#~ msgstr ""
-#~ "LILO (LInux LOader - zavadЛХ Linuxu), mЫ╬e spou╧tЛt Linux i jinИ operaХnМ\n"
-#~ "systИmy. NormАlnЛ jsou tyto systИmy detekovАny pЬi instalaci. Pokud je ale\n"
-#~ "nevidМte detekovanИ, mЫ╬ete je nynМ pЬidat sami.\n"
+#~ "Pokud ji╬ mАte vytvoЬenИ diskovИ oddМly (od pЬedchozМ instalace Linuxu, "
+#~ "nebo\n"
+#~ "pomocМ jinИho programu), mЫ╬ete si zvolit kterИ z nich pou╬ijete pro "
+#~ "instalaci\n"
+#~ "Mandrake Linuxu. Pokud tyto oddМly je╧tЛ nemАte, musМte je nejprve "
+#~ "vytvoЬit.\n"
+#~ "To znamenА logicky rozdЛlit kapacitu hardisku na vМce ХАstМ.\n"
+#~ "\n"
+#~ "Jestli╬e musМte vytvoЬit novИ oddМly, pou╬ijte tlaХМtko \"Automaticky "
+#~ "vyhradit\"\n"
+#~ "pro automatickИ vytvoЬenМ oddМlЫ pro Linux. Disk pro rozdЛlenМ si mЫ╬ete "
+#~ "vybrat\n"
+#~ "klepnutМm na jeho symbol. \"hda\" znamenА prvnМ IDE hardisk, \"hdb\" je "
+#~ "druhЩ,\n"
+#~ "\"sda\" je prvnМ SCSI disk, a tak dАle.\n"
+#~ "\n"
+#~ "\n"
+#~ "Dva oddМly kterИ se obvykle vytvАЬМ jsou: koЬenovЩ oddМl (/), co╬ je "
+#~ "zaХАtek\n"
+#~ "stromovИ struktury souborЫ, a /boot, kterЩ obsahuje v╧echny soubory "
+#~ "potЬebnИ\n"
+#~ "ke startu systИmu po zapnutМ poХМtaХe.\n"
+#~ "\n"
#~ "\n"
+#~ "RozdЛlovАnМ disku mЫ╬e bЩt pro nezku╧enИho u╬ivatele stresujМcМ, proto╬e\n"
+#~ "nАsledky jsou obvykle nezvratnИ. DiskDrake tento proces zjednodu╧uje.\n"
+#~ "Ne╬ budete pokraХovat, prostudujte si dokumentaci a nechte si v╧e projМt\n"
+#~ "hlavou.\n"
#~ "\n"
-#~ "Jestli nechcete aby kdokoliv mohl spustit urХitЩ systИm, mЫ╬ete ho nynМ\n"
-#~ "odebrat (pro jeho nastartovАnМ bude zapotЬebМ startovacМ disketa)."
+#~ "Ve╧kerИ operace lze provАdЛt i pomocМ klАvesnice:\n"
+#~ "Po jednotlivЩch oddМlech se mЫ╬ete pohybovat pomocМ klАvesy Tab a ╧ipek\n"
+#~ "Nahoru/Dolu.\n"
+#~ " - Ctrl-c vytvoЬМ novЩ oddМl (pokud je zvolenЩ prАzdnЩ oddМl)\n"
+#~ " - Ctrl-d sma╬e oddМl\n"
+#~ " - Ctrl-m slou╬М k pЬiЬazenМ pЬМpojnИho bodu vybranИmu oddМlu\n"
#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
#~ msgstr ""
-#~ "NynМ kdy╬ jste si vybrali kterИ skupiny aplikacМ chcete,\n"
-#~ "zvolte si prosМm kolik balМХkЫ byste rАdi nainstalovali\n"
-#~ "(od minimАlnМ do plnИ instalace zvolenИ skupiny)."
+#~ "V╧echny diskovИ oddМly kterИ byly novЛ vytvoЬeny musМ bЩt naformАtovАny aby\n"
+#~ "mohly bЩt pou╬МvАny (formАtovАnМ znamenА vytvАЬenМ souborovИho systИmu).\n"
+#~ "TakИ si mЫ╬ete pЬАt pЬeformАtovat nЛkterИ u╬ existujМcМ oddМly aby z nich\n"
+#~ "byla odstranЛna data. PoznАmka: nenМ nutnИ pЬeformАtovАvat u╬ existujМcМ\n"
+#~ "diskovИ oddМly, obzvlА╧tЛ pokud obsahujМ soubory nebo data kterИ si pЬejete\n"
+#~ "zachovat. Typicky zachovАvanИ jsou /home a /usr/local."
#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
#~ msgstr ""
-#~ "Pro plnou instalaci vybranЩch skupin je zapotЬebМ %dMB mМsta na disku.\n"
-#~ "MЫ╬ete pokraХovat, ale pozor, nebudou nainstalovАny v╧echny balМХky."
+#~ "VybranИ balМХky se nynМ budou instalovat. Tato operace mЫ╬e trvat\n"
+#~ "pАr minut jestli╬e jste si nezvolili pЬeinstalovАnМ existujМcМho\n"
+#~ "sytИmu. V tomto pЬМpadЛ mЫ╬e trvat del╧М dobu ne╬ zaХne\n"
+#~ "pЬeinstalovАvАnМ."
-#~ msgid "Choose other CD to install"
-#~ msgstr "Vyberte si jinИ CD pro instalaci"
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Jestli╬e DrakX neuspЛl pЬi detekci my╧i, nebo jestli╬e si chcete ovЛЬit\n"
+#~ "co detekoval, bude VАm pЬelo╬en seznam my╧М.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jestli╬e souhlasМte s nastavenМm, staХМ klepnout na 'Ok'. Pokud budete\n"
+#~ "chtМt pou╬М jinЩ ovladaХ, musМte si ho vybrat z vЩ╧e uvedenИho seznamu.\n"
+#~ "Je dobrИ si vybrat ovladaХ k my╧i, kterА je typovЛ nejblМ╬e k tИ Va╧М.\n"
+#~ "\n"
+#~ "\n"
+#~ "V pЬМpadЛ my╧i na sИriovИ lince budete takИ muset zadat ke kterИmu\n"
+#~ "sИriovИmu portu je pЬipojena."
#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically added)"
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
#~ msgstr ""
-#~ "(automaticky byl pЬidАn u╬ivatel ``mandrake'' s heslem ``mandrake'')"
+#~ "Tento oddМl je vЛnovАn nastavenИ mМstnМ sМtЛ (LAN) nebo modemu.\n"
+#~ "\n"
+#~ "Zvolte si \"MМstnМ LAN\" a DrakX se na Va╧em poХМtaХi pokusМ najМt\n"
+#~ "Ethernet adaptИr. PCI adaptИry by mЛly bЩt nalezeny a inicializovАny\n"
+#~ "automaticky. Pokud je ale Va╧e karta ISA, nebude autodetekce fungovat,\n"
+#~ "a budete si muset zvolit ovladaХ ze seznamu kterЩ se pak objevМ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jako u SCSI adaptИrЫ, mЫ╬ete nejprve nechat ovladaХ prozkoumat adaptИry,\n"
+#~ "a pЬМpadnЛ potom zadat vlastnМ nastavenМ, kterИ zМskАte z WindowsovИho\n"
+#~ "ovlАdacМho panelu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jestli╬e instalujete Mandrake Linux na poХМtaХi kterЩ je ХАstМ u╬\n"
+#~ "existujМcМ sМtЛ, jejМ sprАvce VАm sdЛlМ ve╧kerИ potЬebnИ informace\n"
+#~ "(IP adresu, sМ╩ovou masku - netmask, a hostname). Jestli╬e si\n"
+#~ "zЬizujete soukromou sМ╩, napЬМklad doma, mЛli byste si zvolit\n"
+#~ "adresu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Zvolte si \"PЬipojenМ modemem\" pro spojenМ s Internetem pomocМ modemu\n"
+#~ "DrakX se pokusМ najМt VА╧ modem, pokud toto sel╬e vyberete si sИriovЩ port\n"
+#~ "kde je VА╧ modem pЬipojenЩ."
#~ msgid ""
-#~ "Select:\n"
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
#~ "\n"
#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
#~ "\n"
#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You will\n"
-#~ "be able to select the usage of your installed system as for \"Customized\"."
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
#~ msgstr ""
-#~ "Vyberte si:\n"
-#~ " - DoporuХenА: Jestli╬e jste nikdy pЬedtМm neinstalovali Linux.\n"
+#~ "GNU/Linux si rozumМ s mnoha typy tiskАren. Ka╬dЩ tento typ vy╬aduje\n"
+#~ "jinИ nastavenМ. Pozn.: TiskovА fronta standardnЛ pou╬МvА nАzev 'lp'. Pokud\n"
+#~ "byste rАdi pЬiЬadili tiskАrnЛ dal╧М, smysluplnЛj╧М jmИno, mЫ╬ete to uХinit\n"
+#~ "pomocМ oddЛlovaХe '|'. JmИno tiskАrny tedy bude tЬeba \"Moje "
+#~ "tiskАrna|lp0|lp\".\n"
+#~ "PrvnМ alias (\"Moje tiskАrna\") bude pou╬it pro ikonu, sambu, atd. Pro\n"
+#~ "pЬМkazovou ЬАdku bude nejsnaz╧М pou╬Мt jmИno \"lp0\", a proto╬e mА tiskАrna\n"
+#~ "i alias \"lp\", bude pou╬ita jako standardnМ.\n"
#~ "\n"
#~ "\n"
-#~ " - VlastnМ: Jestli╬e znАte Linux, budete si moct vybrat typickИ pou╬itМ\n"
-#~ "nainstalovanИho systИmu mezi NormАlnМm (Normal), VЩvojovЩ (Development) \n"
-#~ "nebo Server. Zvolte \"NormАlnМ\" pro v╧eobecnИ pou╬itМ va╧eho poХМtaХe.\n"
-#~ "Jestli╬e budete poХМtaХ pЬevА╬nЛ pou╬Мvat pro vЩvoj software zvolte\n"
-#~ "\"VЩvojovЩ\", nebo zvolte \"Server\" jestli╬e si pЬejete nainstalovat\n"
-#~ "obecnЛ server (pro po╧tu, ti╧tЛnМ ...).\n"
+#~ "Jestli╬e je Va╧e tiskАrna pЬМmo pЬipojenА k Va╧emu poХМtaХi, vyberte\n"
+#~ "\"MМstnМ tiskАrna\". Potom zadАte ke kterИmu portu je tiskАrna pЬipojena\n"
+#~ "a vyberete pro ni filtr(ovladaХ).\n"
#~ "\n"
#~ "\n"
-#~ " - Expert: Jestli╬e jste dobЬe obeznАmeni s GNU/Linuxem a chcete provИst\n"
-#~ "preciznМ nastavenМ instalace, je prАvЛ pro VАs tato volba. Budete si moci\n"
-#~ "vybrat typickИ pou╬itМ Va╧eho systИmu stejnЛ jako v pЬМpadЛ \"VlastnМ\"\n"
-#~ "instalace."
+#~ "Jestli╬e chcete pracovat s tiskАrnou umМstЛnou na vzdАlenИm UnixovИm\n"
+#~ "stroji, vyberte si \"VzdАlenЩ lpd\". Abyste ji mohli pou╬Мvat nenМ\n"
+#~ "zapotЬebМ ╬АdnИ u╬ivatelskИ jmИno ani heslo, ale potЬebujete vЛdЛt\n"
+#~ "jmИno tiskovИ fronty na vzdАlenИm serveru.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jestli╬e chcete pracovat s SMB tiskАrnu (co╬ znamenА tiskАrna umМstЛnА\n"
+#~ "na vzdАlenИm Windows9x/NT stroji), budete muset zadat jejМ SMB jmИno\n"
+#~ "(co╬ nenМ jejМ TCP/IP jmИno), a popЬМpadЛ jejМ IP adresu, u╬ivatelskИ\n"
+#~ "jmИno, pracovnМ skupinu a heslo pro pЬМstup na tuto tiskАrnu. A samozЬejmЛ\n"
+#~ "jmИno tiskАrny. To samИ platМ pro NetWare tiskАrnu, kromЛ toho, ╬e\n"
+#~ "nepotЬebujete informaci o pracovnМ skupinЛ."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "DoporuХuji VАm, odpovЛzte \"Ano\". Pokud budete pozdЛji instalovat "
+#~ "Microsoft\n"
+#~ "Windows, bude boot sektor pЬepsАn. Pokud nemАte vytvoЬenЩ startovacМ disk,\n"
+#~ "u╬ se nebudete moct do svИho GNU/Linuxu tak snadno dostat."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "PohnЛte koleХkem, prosМm"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Zru╧it zmЛny?"
+
+#~ msgid "Cable connection"
+#~ msgstr "PЬipojenМ pЬes kabelovou televizi"
+
+#~ msgid "Host name:"
+#~ msgstr "Hostname:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "JakЩ je typ Va╧М my╧i?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "AutomatickИ nastavenМ rozli╧enМ"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Abych na╧el dostupnА rozli╧enМ, budu je muset vyzkou╧et.\n"
+#~ "Va╧e obrazovka bude po tu dobu blikat ...\n"
+#~ "Jestli chcete, mЫ╬ete vypnout monitor. Po ukonХenМ testЫ usly╧Мte pМpnutМ."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "MЫ╬u se pokusit najМt dostupnА rozli╧enМ (napЬ. 800x600),\n"
+#~ "nicmИnЛ mЫ╬e se stАt, ╬e se pЬi tom poХМtaХ zamrzne.\n"
+#~ "MАm zkusit najМt dostupnА rozli╧enМ?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "NepodaЬilo se mi najМt ╬АdnА dostupnА rozli╧enМ\n"
+#~ "Zkuste nastavit jinou videokartu, nebo monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "AutomatickИ vyhledАvАnМ rozli╧enМ"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
-#~ msgid "Help"
-#~ msgstr "NАpovЛda"
+#~ msgid "pump"
+#~ msgstr "pump"
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Stahuji ╧ifrovacМ balМХky"
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
-#~ msgid "Setup SCSI"
-#~ msgstr "NastavenМ SCSI"
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "Instalace CD Х. %s"
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Aplle ADB my╧ "
-#~ msgid "Which language do you want?"
-#~ msgstr "KterЩ jazykem chcete komunikovat?"
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB my╧ (2 tlaХМtka)"
-#~ msgid "Hurt me plenty"
-#~ msgstr "Hurt me plenty"
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB my╧ (3 nebo vМce tlaХМtek)"
-#~ msgid "Which usage do you want?"
-#~ msgstr "Jak budete pou╬Мvat poХМtaХ?"
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB my╧"
-#~ msgid "Which packages do you want to install"
-#~ msgstr "Vyberte si balМХky kterИ chcete nainstalovat"
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB my╧ (2 tlaХМtka)"
-#~ msgid "Local LAN"
-#~ msgstr "MМstnМ LAN"
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB my╧ (3 nebo vМce tlaХМtek)"
-#~ msgid "Dialup with modem"
-#~ msgstr "PЬipojenМ modemem"
+#~ msgid "Generic Mouse"
+#~ msgstr "StandardnМ my╧"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "InstalaХnМ CD Х. 1"
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "╘patnЩ kickstart soubor (automatickИ instalace) %s (neuspЛl %s)"
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
-#~ msgid "Size: %s MB"
-#~ msgstr "Velikost: %s MB"
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
-#~ msgid "US Keyboard"
-#~ msgstr "US klАvesnice"
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
-#~ msgid "resizing"
-#~ msgstr "mЛnМm velikost"
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
-#~ msgid "formatting"
-#~ msgstr "formАtuji"
+#~ msgid "USB Mouse"
+#~ msgstr "USB my╧"
-#~ msgid "changing type of"
-#~ msgstr "mЛnМm typ"
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB my╧ (3 nebo vМce tlaХМtek)"
-#~ msgid "After %s partition %s,"
-#~ msgstr "Po %s oddМlu %s "
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Ver. 2.1A nebo vy╧╧М (sИriovА)"
-#~ msgid "linear"
-#~ msgstr "lineАrnМ"
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (sИriovА)"
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "LineАrnМ (je zapotЬebМ pro nЛkterИ SCSI zaЬМzenМ)"
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (sИriovА)"
-#~ msgid "User name:"
-#~ msgstr "U╬ivatelskИ jmИno:"
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (sИriovА)"
-#~ msgid "Password:"
-#~ msgstr "Heslo:"
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "StandardnМ my╧ (sИriovА)"
-#~ msgid "Local Printer Options"
-#~ msgstr "NastavenМ mМstnМ tiskАrny"
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft kompatibilnМ (sИriovА)"
-#~ msgid "server"
-#~ msgstr "server"
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "StandardnМ tЬМtlaХМtkovА My╧ (sИriovА)"
-#~ msgid "expert"
-#~ msgstr "expert"
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (sИriovА)"
-#~ msgid "developer"
-#~ msgstr "vЩvojovЩ"
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr ""
+#~ "Abych se mohl pЬipojit k internetu, potЬebuji nejdЬМve nastavit vА╧ sМ╩ovЩ "
+#~ "adaptИr."
+
+#~ msgid ""
+#~ "Please choose which network adapter do you want to use to connect to "
+#~ "internet.\n"
+#~ "If you don't know, choose eth0.\n"
+#~ msgstr ""
+#~ "ProsМm zvolte si kterЩ sМ╩ovЩ adaptИr chcete pou╬Мt pro pЬipojenМ k "
+#~ "internetu.\n"
+#~ "Pokud si nejste jistМ, zvolte eth0.\n"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "pЬipojovАnМ nfs skonХilo chybou"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "Soket"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX vytvoЬМ soubory s konfiguracМ pro XFree verze 3.3 i 4.0.\n"
+#~ "StandardnЛ je pou╬it server verze 4.0, pokud ov╧em umМ pracovat\n"
+#~ "s Va╧М grafickou kartou.\n"
+#~ "Chcete radЛji pou╬Мt XFree 3.3?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "╘ifrovАnМ"
+
+#~ msgid "Configure LAN"
+#~ msgstr "NastavenМ LAN"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "Nenastavovat sМ╩"
-#~ msgid "beginner"
-#~ msgstr "zaХАteХnМk"
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Chcete na Va╧em poХМtaХi nastavit mМstnМ sМ╩ ?"
+
+#~ msgid "Show less"
+#~ msgstr "Uka╬ mИnЛ"
+
+#~ msgid "Show more"
+#~ msgstr "Uka╬ vМce"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "Pou╬Мt celЩ pevnЩ disk"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "URI pro mМstnМ tiskАrnu"
+
+#~ msgid "URI for Network printer"
+#~ msgstr "URI pro sМ╩ovou tiskАrnu"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "MМstnМ tiskovИ zaЬМzenМ (URI)"
#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
#~ msgstr ""
-#~ "Vlo╬te disketu do mechaniky pro umo╬nЛnМ HTP startu\n"
-#~ "(v╧echna data na tИto disketЛ budou ztracena)"
+#~ "Ke kterИmu URI zaЬМzenМ je Va╧e tiskАrna pЬipojena\n"
+#~ "(v╧imli jste si ╬e /dev/lp0 odpovМdА LPT1:)?"
+
+#~ msgid "Network Printer Options (URI)"
+#~ msgstr "Mo╬nosti NetWare TiskАrny (URI)"
+
+#~ msgid ""
+#~ "Choose the right Device URI for a network printer or a local file. "
+#~ "Examples:\n"
+#~ " file:/path/to/filename.prn\n"
+#~ " http://hostname:631/ipp/port1\n"
+#~ " ipp://hostname/ipp/port1\n"
+#~ " lpq://hostname/queue\n"
+#~ " socket://hostname\n"
+#~ " socket://hostname:9100"
+#~ msgstr ""
+#~ "Zvolte si pro tiskАrnu to pravИ URI zaЬМzenМ. PЬМklady:\n"
+#~ " file:/path/to/filename.prn\n"
+#~ " http://hostname:631/ipp/port1\n"
+#~ " ipp://hostname/ipp/port1\n"
+#~ " lpq://hostname/queue\n"
+#~ " socket://hostname\n"
+#~ " socket://hostname:9100"
+
+#~ msgid "curly"
+#~ msgstr "kudrnatЩ"
+
+#~ msgid "default"
+#~ msgstr "standardnМ"
+
+#~ msgid "tie"
+#~ msgstr "s kravatou"
+
+#~ msgid "brunette"
+#~ msgstr "bruneta"
+
+#~ msgid "girl"
+#~ msgstr "dМvka"
+
+#~ msgid "woman-blond"
+#~ msgstr "blondЩna"
+
+#~ msgid "automagic"
+#~ msgstr "auto-magickЩ"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "Dostali jste vlastnМ hostname?"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "UpЬesnЛnМ LAN"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "NynМ se mЫ╬ete rozhodnout kterou sМ╩ tЬМdy C pou╬ijete.\n"
+
+#~ msgid "Network:"
+#~ msgstr "SМt:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "SdМlenМ internetovИho pЬipojenМ - nastavenМ $device"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "NАsledujМcМ rozhranМ bude nastaveno:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "V╧e je nastaveno!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "JakИ je rozlo╬enМ Va╧М klАvesnice?"
+
+#~ msgid "Normal"
+#~ msgstr "NormАlnМ"
+
+#~ msgid "Configure my card"
+#~ msgstr "NastavenМ X"
+
+#~ msgid "pptp alcatel"
+#~ msgstr "Automaticky rozmМstit"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "MАm zkusit najМt PCMCIA karty?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "MАm zkusit najМt zaЬМzenМ %s?"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "MalЩ (%dMB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "NastavenМ modemu"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Chcete na Va╧em poХМtaХi nastavit pЬipojenМ k sМti pЬes modem?"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Chcete na va╧em poХМtaХi nastavit pЬipojenМ ISDN?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "MАm zkusit najМt PCI zaЬМzenМ?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "VyhledАvАnМ koЬenovИho oddМlu."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Toto nenМ koЬenovЩ diskovЩ oddМl, prosМm zvolte jinЩ."
-#~ msgid "A entry %s already exists"
-#~ msgstr "ZАznam %s u╬ existuje"
+#~ msgid "No root partition found"
+#~ msgstr "Nebyl nalezen ╬АdnЩ koЬenovЩ oddМl"
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Zvolte si instalaci nebo upgrade"
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "NemЫ╬u pou╬Мt broadcast bez NIS domИny"
-#~ msgid "What usage do you want?"
-#~ msgstr "JakИ chcete pou╬itМ?"
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "KterЩ diskovЩ oddМl chcete pou╬Мt jako koЬenovЩ"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 2400cd292..d7faa6357 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-11-17 17:21+0100\n"
"Last-Translator: Dafydd Tomos <dafydd@imaginet.co.uk>\n"
"Language-Team: Welsh\n"
@@ -14,43 +14,91 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Dewiswch gerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Dewiswch weinydd X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "Gweinydd X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Gweinydd XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Dewiswch faint y cof yn eich cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Dewiswch opsiynau ar gyfer y gweinydd"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -64,215 +112,207 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr ""
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr ""
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr ""
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
msgstr ""
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Fe gafwyd gwall:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Gadael mewn %d eiliad"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
#, fuzzy
msgid "Is this the correct setting?"
msgstr "Ydi hyn yn gywir?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr ""
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr ""
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr ""
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Gweinydd XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Dangos i gyd"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr ""
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ffurf yr allweddell: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math y llygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais y lygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Gweinydd XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Gweinydd XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Yn parataoi cyfluniad X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Newid Monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Newid cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr ""
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr ""
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Dangos gwybodaeth"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Profi eto"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Gorffen"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Beth ydych eisiau wneud?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr ""
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Yn parataoi cyfluniad X-Window"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -280,452 +320,610 @@ msgstr ""
"Fe alla'i osod eich cyfrifiadur i ddechrau X yn otomatig ar Тl bwtio\n"
"Hoffech chi X i ddechrau wedi i chi ail-fwtio?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Fe alla'i osod eich cyfrifiadur i ddechrau X yn otomatig ar Тl bwtio\n"
+"Hoffech chi X i ddechrau wedi i chi ail-fwtio?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Dewiswch y maint newydd"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Dewiswch weithred"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 lliw (8 did)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mil o liwiau (15 did)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mil o liwiau (16 did)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miliwn o liwiau (24 did)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB neu fwy"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA safonol, 640x480 ar 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Uwch VGA, 800x600 ar 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 cydweithiol, 1024x768 ar 87 Hz masgledig (dim 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "SVGA, 1024x768 ar 87Hz masgledig, 800x600 ar 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "SVGA estynedig, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA Di-fasgledig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA amledd uchel, 1024x768 ar 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Amledd newidiol sydd yn gallu dangos 1280x1024 ar 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Amledd newidiol sydd yn gallu dangos 1280x1024 ar 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Amledd newidiol sydd yn gallu dangos 1280x1024 ar 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor sydd yn gallu dangos 1600x1200 ar 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor sydd yn gallu dangos 1600x1200 ar 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr ""
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr ""
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
msgstr ""
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr ""
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
#, fuzzy
msgid "None"
msgstr "Wedi ei wneud"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
#, fuzzy
msgid "Which bootloader(s) do you want to use?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr ""
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr ""
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
+msgid "Video mode"
msgstr ""
-#: ../../any.pm_.c:88
-msgid "Video mode"
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr ""
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr ""
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr ""
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr ""
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr ""
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Wedi ei wneud"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr ""
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr ""
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
msgstr ""
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
msgstr ""
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr ""
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr ""
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr ""
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr ""
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr ""
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr ""
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr ""
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr ""
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr ""
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr ""
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr ""
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Na"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ie"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr ""
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr ""
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr ""
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr ""
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr ""
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr ""
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr ""
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr ""
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr ""
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr ""
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr ""
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Gadael mewn %d eiliad"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr ""
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Dileu"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Math"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr ""
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Ysgrifennu /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Llwytho o ffeil"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Arbed i ffeil"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Llwytho o flopi"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Arbed ar flopi"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Fformatio i gyd"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilКwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Sgrifennu y tabl rhaniadau"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Ail-lwytho"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Gwag"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Arall"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Gwag"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Arall"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Manylion"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -733,94 +931,94 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Gwall"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Maint: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -828,80 +1026,80 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
#, fuzzy
msgid "Please click on a partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Maint: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "Sgrifennu y tabl rhaniadau"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr ""
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr ""
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr ""
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr ""
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr ""
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -913,7 +1111,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -925,211 +1123,217 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "fe fydd yr holl wybodaeth ar y rhaniad yma yn cael ei ddileu"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr ""
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "Pa fath o rhaniad ydych chi eisiau?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "fe fydd yr holl wybodaeth ar y rhaniad yma yn cael ei ddileu"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Ar Тl fformatio pob rhaniad,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "mi fydd yr holl wybodaeth ar y rhaniadau yma yn cael ei ddileu"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr ""
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../diskdrake.pm_.c:597
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "fe fydd yr holl wybodaeth ar y rhaniad yma yn cael ei ddileu"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "fe fydd yr holl wybodaeth ar y rhaniad yma yn cael ei ddileu"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr ""
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1137,127 +1341,157 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "lefel"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr ""
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "newydd"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr ""
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr ""
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr ""
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr ""
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Dewiswch yr iaith hoffech weld ar gyfer gosodiad a defnydd y system"
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr ""
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1265,325 +1499,753 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
+msgstr ""
+
+#: ../../help.pm_.c:84
+msgid ""
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
+msgstr ""
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:160
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
"\n"
+"When a partition is selected, you can use:\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:257
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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"
-"- Ctrl-d to delete a partition\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:358
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:363
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"Please be patient."
msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:371
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:376
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:505
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
+msgstr ""
+
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1607,34 +2269,33 @@ msgid ""
"and maintenance purposes."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1645,7 +2306,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1662,14 +2323,45 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1681,57 +2373,61 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1740,315 +2436,346 @@ msgid ""
"the additional instructions."
msgstr ""
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr ""
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr ""
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr ""
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr ""
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr ""
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr ""
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr ""
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr ""
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr ""
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr ""
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr ""
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr ""
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr ""
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr ""
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr ""
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr ""
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr ""
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr ""
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr ""
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr ""
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr ""
-#: ../../install2.pm_.c:337
-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 `/'"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
msgstr ""
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
msgstr ""
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
msgstr ""
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../install_any.pm_.c:402
-msgid "Information"
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
+#: ../../install_interactive.pm_.c:41
+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 ""
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
msgstr ""
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
+#: ../../install_interactive.pm_.c:47
+msgid ""
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
msgstr ""
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Yn fformatio rhaniad %s"
+
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Yn trio achub y tabl rhaniadau"
+
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Pa sector hoffech chi symud iddo?"
+
+#: ../../install_interactive.pm_.c:92
+#, fuzzy
+msgid "Choose the sizes"
+msgstr "Dewiswch y maint newydd"
+
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
+#: ../../install_interactive.pm_.c:94
+#, fuzzy
+msgid "Swap partition size in MB: "
+msgstr "Maint mewn MB: "
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
msgstr ""
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_interactive.pm_.c:122
#, fuzzy
-msgid "Choose the size you want to install"
-msgstr "Dewiswch weithred"
-
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr ""
+msgid "Which size do you want to keep for windows on"
+msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "Ar Тl %s rhaniad %"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
+msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr ""
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "fe fydd yr holl wybodaeth ar y rhaniad yma yn cael ei ddileu"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr ""
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Ext2"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr ""
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Does gennych chi ddim rhaniadau!"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Sgrifennu y tabl rhaniadau"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:199
-#, fuzzy
-msgid "You don't have any windows partitions!"
-msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:375
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:265
-#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Pa sector hoffech chi symud iddo?"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-#, fuzzy
-msgid "Choose the sizes"
-msgstr "Dewiswch y maint newydd"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:288
-#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "Maint mewn MB: "
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2057,7 +2784,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2067,103 +2794,188 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
#, fuzzy
msgid "Percentage of packages to install"
msgstr "Dewiswch weithred"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Dewiswch weithred"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
+#: ../../install_steps_gtk.pm_.c:469
+#, fuzzy
+msgid "Estimating"
+msgstr "fformatio"
+
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:540
-#, fuzzy
-msgid "Estimating"
-msgstr "fformatio"
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2173,359 +2985,410 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Newid maint"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
+#, fuzzy
msgid "An error occurred"
-msgstr ""
+msgstr "Fe gafwyd gwall:"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
+#, fuzzy
msgid "Which installation class do you want?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:110
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
#, fuzzy
-msgid "Automated"
-msgstr "Wedi fformatio\n"
-
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
msgid "Customized"
-msgstr ""
+msgstr "Wedi fformatio\n"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
+#, fuzzy
msgid "Expert"
-msgstr ""
+msgstr "Ext2"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
+#, fuzzy
msgid "Server"
-msgstr ""
+msgstr "Gweinydd X"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
+msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:172
-msgid "Configuring IDE"
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
+#, fuzzy
+msgid "Configuring IDE"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
+#, fuzzy
msgid "no available partitions"
+msgstr "Yn fformatio rhaniad %s"
+
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:184
+#: ../../install_steps_interactive.pm_.c:299
+#, fuzzy
+msgid "Choose the mount points"
+msgstr "Dewiswch weithred"
+
+#: ../../install_steps_interactive.pm_.c:316
#, c-format
-msgid "(%dMB)"
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
-msgid "Choose the mount points"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:337
+#, fuzzy
+msgid "Root Partition"
+msgstr "Yn fformatio rhaniad %s"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:338
+#, fuzzy
+msgid "What is the root partition (/) of your system?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../install_steps_interactive.pm_.c:352
+#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
+msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
+#, fuzzy
msgid "Choose the partitions you want to format"
-msgstr ""
+msgstr "Dewiswch weithred"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
#, fuzzy
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniad %s"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Wedi fformatio\n"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Dewiswch weithred"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
#, fuzzy
msgid "Post-install configuration"
msgstr "Yn parataoi cyfluniad X-Window"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2564,88 +3427,96 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
+#, fuzzy
msgid "Please choose the packages you want to install."
-msgstr ""
+msgstr "Dewiswch weithred"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr ""
+msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
+#, fuzzy
msgid "NIS Server"
-msgstr ""
+msgstr "Gweinydd X"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -2653,61 +3524,80 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:747
-msgid "First floppy drive"
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:869
+#, fuzzy
+msgid "First floppy drive"
+msgstr "Fformatio i gyd"
+
+#: ../../install_steps_interactive.pm_.c:870
#, fuzzy
msgid "Second floppy drive"
msgstr "Arbed ar flopi"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -2721,189 +3611,155 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
+#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
+msgstr "Dewiswch weithred"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr "Beth ydych eisiau wneud?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
+#, fuzzy
msgid "Enable num lock at startup"
-msgstr ""
+msgstr "X wrth ddechrau"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
+#, fuzzy
msgid "Creating auto install floppy"
-msgstr ""
+msgstr "Arbed ar flopi"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2916,140 +3772,17 @@ msgid ""
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Na"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ie"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr ""
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr ""
@@ -3059,7 +3792,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr ""
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr ""
@@ -3073,448 +3806,949 @@ msgstr ""
msgid "Your choice? (default %s) "
msgstr ""
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr ""
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr ""
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr ""
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr ""
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr ""
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr ""
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr ""
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr ""
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr ""
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr ""
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "lefel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr ""
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr ""
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr ""
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr ""
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr ""
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr ""
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr ""
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr ""
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+#, fuzzy
+msgid "none"
+msgstr "Wedi ei wneud"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Ydi hyn yn gywir?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:101
+msgid "Testing your connection..."
+msgstr ""
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr ""
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr ""
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr ""
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr ""
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr ""
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Dewiswch y maint newydd"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
msgstr ""
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:545
+#, fuzzy
+msgid "Connection name"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
msgstr ""
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:547
+#, fuzzy
+msgid "Login ID"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
msgstr ""
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
msgstr ""
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
msgstr ""
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
+#: ../../netconnect.pm_.c:552
+#, fuzzy
+msgid "First DNS Server"
+msgstr "Gweinydd X"
+
+#: ../../netconnect.pm_.c:553
+#, fuzzy
+msgid "Second DNS Server"
+msgstr "Arbed ar flopi"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
msgstr ""
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Ext2"
+
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Ext2"
+
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
msgstr ""
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
msgstr ""
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
msgstr ""
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
msgstr ""
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
msgstr ""
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#: ../../netconnect.pm_.c:858
+#, fuzzy
+msgid "Network Configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
msgstr ""
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
+#: ../../network.pm_.c:253
+msgid "no network card found"
msgstr ""
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
msgstr ""
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
msgstr ""
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
+#: ../../network.pm_.c:302
+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 ""
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
msgstr ""
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Automatic IP"
+msgstr "Wedi fformatio\n"
+
+#: ../../network.pm_.c:314
+msgid "IP address"
msgstr ""
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
msgstr ""
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
+#: ../../network.pm_.c:341
+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 ""
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Gweinydd X"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
msgstr ""
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "dyfais"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
msgstr ""
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
msgstr ""
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Ydi hyn yn gywir?"
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr ""
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr ""
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr ""
@@ -3548,42 +4782,51 @@ msgstr ""
msgid "maybe"
msgstr ""
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr ""
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr ""
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr ""
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
+#: ../../printer.pm_.c:19
+msgid "Local printer"
msgstr ""
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
msgstr ""
-#: ../../printer.pm_.c:244
-msgid "Local printer"
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr ""
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
msgstr ""
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr ""
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr ""
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr ""
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr ""
@@ -3597,44 +4840,44 @@ msgstr ""
msgid "A printer, model \"%s\", has been detected on "
msgstr ""
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr ""
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr ""
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr ""
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr ""
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3643,27 +4886,27 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr ""
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3671,139 +4914,203 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Fformatio"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr ""
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr ""
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr ""
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr ""
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr ""
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr ""
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr ""
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr ""
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr ""
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr ""
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
+#: ../../printerdrake.pm_.c:346
+msgid "Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
+#: ../../printerdrake.pm_.c:347
+msgid "Would you like to configure a printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:218
-#, c-format
+#: ../../printerdrake.pm_.c:350
msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
+"Here are the following print queues.\n"
+"You can add some more or change the existing ones."
msgstr ""
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "fformatio"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
msgstr ""
-#: ../../printerdrake.pm_.c:238
-msgid "Printer"
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
+msgid "Select Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:239
-msgid "Would you like to configure a printer?"
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
+msgid "How is the printer connected?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:388
msgid ""
-"Here are the following print queues.\n"
-"You can add some more or change the existing ones."
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
-msgid "Select Printer Connection"
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
+msgid "Remove queue"
msgstr ""
-#: ../../printerdrake.pm_.c:267
-msgid "How is the printer connected?"
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:272
-msgid "Remove queue"
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -3811,57 +5118,57 @@ msgid ""
"connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr ""
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr ""
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr ""
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -3869,7 +5176,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -3877,13 +5184,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -3893,51 +5200,51 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -3945,7 +5252,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -3953,91 +5260,239 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr ""
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
#, fuzzy
msgid "Create a boot floppy"
msgstr "Arbed ar flopi"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
#, fuzzy
msgid "Format floppy"
msgstr "Fformatio i gyd"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr ""
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Yn parataoi cyfluniad X-Window"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4085,23 +5540,29 @@ msgstr ""
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
msgstr ""
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr ""
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr ""
@@ -4313,15 +5774,222 @@ msgstr ""
msgid "Finding leaves takes some time"
msgstr ""
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Yn parataoi cyfluniad X-Window"
+
+# ../../share/compssUsers
+msgid "Internet"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Swyddfa"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Aml-gyfrwng"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Aml-gyfrwng"
+
+# ../../share/compssUsers
+msgid "KDE"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Aml-gyfrwng"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Aml-gyfrwng"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "Wedi ei wneud"
+
+msgid "Documentation"
+msgstr "Dogfennau"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Aml-gyfrwng"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#, fuzzy
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Dewiswch weithred"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Pa ddisg hoffech chi symud iddo?"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "Beth ydych eisiau wneud?"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Newid maint"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Pa fath o rhaniad ydych chi eisiau?"
+
+#, fuzzy
+#~ msgid "Configure LAN"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#, fuzzy
+#~ msgid "End configuration"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#, fuzzy
+#~ msgid "Everything configured!"
+#~ msgstr "Yn parataoi cyfluniad X-Window"
+
+#, fuzzy
+#~ msgid "Normal"
+#~ msgstr "Fformatio"
+
+#, fuzzy
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Dewiswch y maint newydd"
+
+#, fuzzy
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Does gennych chi ddim rhaniadau!"
+
#~ msgid "Normal > Expert"
#~ msgstr "Cyffredinol > Arbennigwr"
#~ msgid "Expert > Normal"
#~ msgstr "Arbennigwr > Cyffredinol"
-#~ msgid "After %s partition %s,"
-#~ msgstr "Ar Тl %s rhaniad %"
-
#~ msgid "Size: %s MB"
#~ msgstr "Maint: %s MB"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 9d1f71eb2..b68f2742f 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -1,60 +1,121 @@
# Danish translation of/Dansk oversФttelse af
# Linux-Mandrake DrakX.
# Copyright (C) 1999 MandrakeSoft
-# Keld Simonsen <keld@dkuug.dk>, 2000
-# Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
-# Jens Burkal <jburkal@get2net.dk>, 1999
-# Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
-# Kenneth Christiansen, <kenneth@ripen.dk> 2000
+#
+# In order of aktivity:
+# 1, Keld Simonsen <keld@dkuug.dk>, 2000
+# 2, Troels Liebe Bentsen <tlb@iname.com>, 1999-2000
+# 3, Nikolaj Berg Amondsen <mr_nba@get2net.dk>, 2000
+# 4, Jacob Sparre Andersen, <sparre@sslug.dk>, 2000
+# 5, Kenneth Christiansen, <kenneth@ripen.dk>, 2000
+# 6, Jens Burkal <jburkal@get2net.dk>, 1999
+# 7, Mads Stenhuus Hansen <msh@com.dtu.dk>, 1999
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-10 19:36+0200\n"
-"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
-"Language-Team: Danish <da@li.org>\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-10-07 13:32+0100\n"
+"Last-Translator: Troels Liebe Bentsen <tlb@iname.com>\n"
+"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Type: text/plain; charset=ISO 8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.5.3\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Standard"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Grafikkort"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "VФlg grafikkort"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "VФlg en X-server"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X-server"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hvilken konfiguration af XFree Ьnsker du?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Dit kort kan have 3D acceleration, men kun med XFree %s.\n"
+"Dit kort er understЬttet af XFree %s som kan have bedre understЬttelse i 2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"Dit kort kan have 3D hardware accelerations-understЬttelse med XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s med 3D hardware acceleration"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Dit kort kan have 3D acceleration understЬttelse, men kun med XFree %s.\n"
+"VIGTIGT: Dette er eksperimentelt og kan fЕ din maskine til at lЕse eller gЕ "
+"ned.\n"
+"Dit kort er understЬttet af XFree %s som kan have bedre understЬttelse i 2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Dit kort kan have 3D acceleration understЬttelse, men kun med XFree %s,\n"
+"VIGTIGT: Dette er eksperimentelt og kan fЕ din maskine til at lЕse eller gЕ "
+"ned."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree konfiguration"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "VФlg hukommelsesmФngde for dit grafikkort"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "VФlg server-indstillinger"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "VФlg en skФrmtype"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "SkФrm"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -76,42 +137,43 @@ msgstr ""
"Det er MEGET VIGTIGT at du ikke angiver en skФrmtype med "
"opdateringsfrekvenser,\n"
"der er stЬrre end din skФrms formЕen: du risikerer at ЬdelФgge din skФrm.\n"
-"Hvis du er i tvivl, bЬr du vФlge en opsФtning, som du med SIKKERHED vИd\n"
+"Hvis du er i tvivl, bЬr du vФlge en opsФtning, som du med SIKKERHED ved\n"
"at din skФrm kan klare."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "SkФrm ikke konfigureret"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Grafikkort er endnu ikke konfigureret"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "OplЬsninger ikke valgt endnu"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
-msgstr "ьnsker du at teste konfigurationen?"
+msgstr "ьnsker du at afprЬve konfigurationen?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "Advarsel: testning af dette grafikkort er farligt"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Advarsel: afprЬvning af dette grafikkort kan fЕ din maskine til at lЕse"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Test konfigurationen"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -119,415 +181,396 @@ msgstr ""
"\n"
"prЬv at Фndre nogle parametre"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "En fejl opstod:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Vender tilbage om %d sekunder"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr "Er dette den korrekt indstilling?"
+msgstr "Er dette den korrekte indstilling?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "En fejl opstod, prЬv at Фndre nogle parametre"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automatiske oplЬsninger"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"For at finde de mulige oplЬsninger bliver forskellige kombinationer\n"
-"nu afprЬvet.\n"
-"Din skФrm vil blinke nogle gange...\n"
-"Hvis du Ьnsker det, kan du slukke skФrmen. Du vil hЬre en lyd nЕr det\n"
-"er overstЕet."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "OplЬsning"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "VФlg oplЬsning og farvedybde"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86-server: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Vis alle"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "OplЬsninger"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Jeg kan forsЬge at finde de mulige oplЬsninger (f.eks. 800x600).\n"
-"I nogle tilfФlde kan dette resultere i at computeren gЕr ned.\n"
-"ьnsker du at prЬve?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Kunne ikke finde nogen brugbare oplЬsninger\n"
-"PrЬv at vФlge et andet grafikkort eller en anden skФrm"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-type: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muse-type: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muse-enhed: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "SkФrm: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr "SkФrm vandret frekvens: %s\n"
+msgstr "SkФrms vandrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr "SkФrm lodret frekvens: %s\n"
+msgstr "SkФrms lodrette frekvens: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafikkort: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Farvedybde: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "OplЬsninger %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 driver: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Forbereder konfiguration af X"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Skift skФrmtype"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Skift grafikkort"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Foretag Фndringer i server-indstillinger"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Skift oplЬsning"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Automatisk sЬgning efter brugbare oplЬsninger"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Vis information"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Test igen"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Afslut"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Hvad Ьnsker du at gЬre?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Glem Фndringer?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behold Фndringer?\n"
+"NuvФrende konfiguration er:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log venligst ind i %s igen for at aktivere Фndringerne"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log venligst ud og tryk herefter pЕ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Start X ved systemopstart"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"Jeg kan sФtte din computer op til automatisk at starte X ved\n"
+"Jeg kan sФtte din maskine op til automatisk at starte X ved\n"
"opstart. ьnsker du at starte X hver gang du genstarter?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Jeg kan sФtte din maskine op til automatisk at logge en bruger pЕ.\n"
+"Hvis du ikke Ьnsker denne facilitet, sЕ klik pЕ 'AnnullИr' knappen."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "VФlg forvalgte bruger :"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "VФlg den vinduesbehandler du Ьnsker at benytte:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 farver (8 bit)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
-msgstr "32-tusinde farver (15 bit)"
+msgstr "32 tusinde farver (15 bit)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
-msgstr "65-tusinde farver (16 bit)"
+msgstr "65 tusinde farver (16 bit)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
-msgstr "16-millioner (24 bit)"
+msgstr "16 millioner (24 bit)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
-msgstr "4-milliarder farver (32 bit)"
+msgstr "4 milliarder farver (32 bit)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kb"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kb"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 Mb"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 Mb"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 Mb"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 Mb"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 Mb eller mere"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard-VGA, 640x480 ved 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super-VGA, 800x600 ved 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "HЬjfrekvens SVGA, 1024x768 ved 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "SkФrm, som kan klare 1600x1200 ved 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "SkФrm, som kan klare 1600x1200 ved 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "krЬllet"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "forvalgt"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "slips"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunette"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "pige"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "kvinde-blond"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "Automagisk"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "FЬrste sektor af opstartspartition"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "FЬrste sektor pЕ disken (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installering"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO-installering"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstarteren?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub-installering"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Ingenting"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Hvilken opstarter(e) Ьnsker du at bruge"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "systemopstarterens installation"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (virker ikke med gamle BIOS'er)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Ventetid fЬr opstart af forvalgt styresystem"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Grafik-tilstand"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Ventetid fЬr opstart af forvalgt styresystem"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "BegrФns kommandolinie-indstillinger"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "begrФns"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Indstillingen ``BegrФns kommandolinie-indstillinger'' er intet vФrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "PrЬv venligst igen"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -535,328 +578,518 @@ msgstr ""
"Her er fЬlgende typer indgange.\n"
"Du kan tilfЬje flere eller Фndre de eksisterende."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "TilfЬj"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "FФrdig"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Hvilken type Ьnsker du at tilfЬje"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Andet styresystem (SunOs...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Hvilken type Ьnsker du at tilfЬje"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "VedhФft"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "LФs-skriv"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "MФrkat"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Forvalgt"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
-msgstr "OK"
+msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
-msgstr "Fjern"
+msgstr "Fjern indgang"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Tom mФrkat er ikke tilladt"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Denne mФrkat er allerede brugt"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Fandt %s %s grФnsesnit"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Har du Иn til?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Har du nogen %s grФnsesnit?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nej"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Se info for maskinel"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Installerer driver for %s kort %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Hvilken %s driver skal jeg prЬve?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"I nogen tilfФlde behЬver %s driveren at have ekstra information for at "
+"virke\n"
+"ordentligt, selv om den normalt virker fint uden. ьnsker du at angive "
+"ekstra\n"
+"optioner for den eller tillade driveren at sondere din maskine for\n"
+"den information den behЬver? Af og til vil sondering stoppe maskinen, men "
+"burde\n"
+"ikke forЕrsage nogen skader."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Automatisk sondering"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "SpecificИr optioner"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Du kan nu give dens optioner til modul %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Du kan nu sФtte parametre til modulet %s.\n"
+"Parametrene er i formatet ``name=value name2=value2 ...''.\n"
+"F.eks., ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Modulindstillinger:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"IndlФsning af modul %s mislykkedes.\n"
+"ьnsker du at prЬve igen med andre parametre?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Velkommen til %s styresystems-vФlger!\n"
+"\n"
+"VФlg et styresystem i den ovenstЕenden liste eller\n"
+"vente %d sekunder for at starte standard.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Velkommen til GRUB styresystemsv▒lgeren!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Brug tasterne %c og %c til at vФlge mellem mulighederne."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "kommandoerne fЬr opstart, eller 'c' for en kommandolinie."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Den fremhФvede mulighed vil blive startet automatisk om %d sekunder."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "Ikke nok plads i /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Skrivebord"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start menu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minutter"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minut"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekunder"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "AfmontИr"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Slet"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
-msgstr "FormatИr"
+msgstr "Formater"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "StЬrrelsesФndring"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Type"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
-msgstr "MontИr sti"
+msgstr "Monteringssti"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Skriv /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
-msgstr "Normal > Ekspert"
+msgstr "Normal -> Ekspert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
-msgstr "Ekspert > Normal"
+msgstr "Ekspert -> Normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Genskab fra fil"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Gem i fil"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Guide"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Genskab fra diskette"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Gem pЕ diskette"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "FormatИr alle"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "AllokИr automatisk"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Alle primФre partitioner er brugt"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Kan ikke tilfЬje flere partitioner"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-"For at kunne fЕ flere partitioner, skal du slette Иn for at kunne oprette\n"
-"en `extended' partition"
+"For at du kan fЕ flere partitioner, skal du slette Иn, sЕ der kan oprettes "
+"en udvidet partition"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Red partitionstabellen"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Skriv partitionstabellen"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "GenindlФs"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Tom"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Andet"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Tom"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Andet"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detaljer"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"Du har en stor FAT partition.\n"
-"generalt bruget af Microsoft Dos/Windows).\n"
+"Du har Иn stor FAT partition.\n"
+"(normalt brugt af Microsoft Dos/Windows).\n"
"Jeg anbefaler, at du Фndrer stЬrrelsen pЕ partitionen\n"
"(klik pЕ den, og klik herefter pЕ \"StЬrrelsesФndring\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Lav venligst en sikkerhedkopi af dine data fЬrst"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "LФs omhyggeligt!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"Hvis du planlФgger at bruge aboot sЕ kun husk at efterlade fri plads pЕ\n"
+"Hvis du planlФgger at bruge aboot, skal husk at efterlade fri plads pЕ\n"
"begyndelsen af disken (2048 sektorer skulle vФre nok)"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "VФr forsigtig: denne operation er farlig."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Fejl"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
-msgstr "Monterings-sti: "
+msgstr "Monteringssti: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gФt)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "StЬrrelse: %d Mb"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cylinder %d til cylinder %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
-msgstr "FormatИret\n"
+msgstr "Formateret\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
-msgstr "Ikke formatИret\n"
+msgstr "Ikke formateret\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback-fil(er): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -864,79 +1097,79 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gФlder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "EnhedsstЬrrelse %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Klik venligst pЕ en partition"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "StЬrrelse: %d Mb\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "pЕ bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "MontИr"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktiv"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "TilfЬj til RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
-msgstr "фndre RAID"
+msgstr "фndr RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "VФlg handling"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -949,7 +1182,7 @@ msgstr ""
"benytte\n"
"LILO, hvilket vil betyde, at du ikke har brug for /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -962,212 +1195,214 @@ msgstr ""
"partition\n"
"indenfor 1024-cylinder grФnsen."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-"Du har valgt en programmeret RAID-partitionsom rod (/).\n"
+"Du har valgt en software RAID-partition som rod (/).\n"
"Ingen systemopstarter kan hЕndtere dette uden en /boot partition.\n"
-"SЕ vФr omhyggelig med at tilfЬje en /boot partition hvis du Ьneker at bruge "
-"lilo eller grub"
+"SЕ vФr omhyggelig med at tilfЬje en /boot partition"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Benyt ``AfmontИr'' fЬrst"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"Efter type Фndring af partition %s, alle data pЕ disse partitioner vil gЕ "
-"tabt"
+"Efter type-Фndring af partition %s vil alle data pЕ denne partition gЕ tabt"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "FortsФt alligevel?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Hvilken partitionstype Ьnsker du?"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "Hvilket filsystem Ьnsker du at bruge?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr "Du kan ikke bruge ReiserFS for partitioner mindre end 32Mb"
+msgstr "Du kan ikke bruge ReiserFS pЕ partitioner mindre end 32Mb"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor Ьnsker du at montere loopback-fil %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor Ьnsker du at montere partitionen %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-"Kan ikke fjerne monteringssted, da denne partition bliver brugt til "
+"Kan ikke fjerne monteringssti, da denne partition bliver brugt til "
"loopback.\n"
"Fjern loopback fЬrst"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-"Efter formatering af partition %s, alle data pЕ disse partitioner vil gЕ tabt"
+"Efter formatering af partitionen %s vil alle data pЕ denne partition gЕ tabt"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
-msgstr "FormatИrer"
+msgstr "Formaterer"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
-msgstr "FormatИrer loopback-fil %s"
+msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
-msgstr "FormatИrer partition %s"
+msgstr "Formaterer partition %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
-msgstr "Efter formatИring alle partitioner,"
+msgstr "Efter formatering alle partitioner"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
-msgstr "alt data pЕ disse partitioner vil blive tabt"
+msgstr "vil alle data pЕ disse partitioner gЕ tabt"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
-msgstr "Hvilken disk Ьnsker du at flytte til?"
+msgstr "Hvilken disk Ьnsker du at flytte den til?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
-msgstr "Hvilken sektor Ьnsker du at flytte til?"
+msgstr "Hvilken sektor Ьnsker du at flytte den til?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet pЕ disken!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere Фndringerne"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
-msgstr "Udregner FAT-filsystemet grФnser"
+msgstr "Udregner FAT-filsystemets grФnser"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "фndrer stЬrrelsen"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "StЬrrelsen pЕ denne partition kan ikke Фndres"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Det bЬr laves en backup af alle data pЕ denne partition"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"Efter stЬrrelse Фndrer af partition %s, alle data pЕ disse partitioner vil "
-"gЕ tabt"
+"Efter Фndring af stЬrrelsen af partition %s, vil alle data pЕ denne "
+"partition gЕ tabt"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "VФlg den nye stЬrrelse"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "Mb"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Start sektor: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "StЬrrelse i Mb: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
-msgstr "Filsystem type: "
+msgstr "Filsystemstype: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PrФference: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
-msgstr "Denne partition kan ikke blive brugt til loopback"
+msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
-msgstr "Fil allerede brugt af en anden loopback, vФlg en anden"
+msgstr "Filen er allerede brugt af en anden loopback, vФlg en anden fil"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "VФlg fil"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1175,167 +1410,223 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme stЬrrelse\n"
"FortsФt alligevel?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"PlacИr en diskette i diskettedrevet\n"
+"IndsФt en diskette i diskettedrevet\n"
"Alle data pЕ disketten vil blive slettet"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "ForsЬger at redde partitionstabellen"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "enhed"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "niveau"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "enhedsstЬrrelse"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
-msgstr "VФlg en eksisterende RAID som skal fЬjes til"
+msgstr "VФlg en eksisterende RAID som skal udvides"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "ny"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
-msgstr "%s formatИring af %s mislykkedes"
+msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "ved ikke hvordan man formatИrer %s som type %s"
+msgstr "Ved ikke hvordan man formaterer %s som type %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "NFS montering mislykkedes"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "montering mislykkedes: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
-msgstr "Monterings-stier skal begynder med /"
+msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "CirkulФre monteringer %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Dette katalog bЬr ligge pЕ rod-filsystemet"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Du skal have et rigtigt filsystem (ext2, reiserfs) til dette "
"monteringspunkt\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved Еbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"Der er opstЕet en fejl - der kunne ikke findes nogen enheder, hvor der\n"
-"kan oprettes nye filsystemer. UndersЬg venligst dit hardware for at finde\n"
+"Der er opstЕet en fejl - der kunne ikke findes nogen gyldige enheder, hvor "
+"der kan oprettes nye filsystemer. UndersЬg venligst din maskine for at finde "
"Еrsagen til problemet"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Du har ikke nogen partitioner!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "VФlg et foretrukket sprog for installation og systemets brug."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "VФlg dit foretrukne sprog til installation- og system-brug."
+
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"Du bliver nЬd til at acceptere den ovenstЕende licens for at fortsФtte "
+"installationen.\n"
+"\n"
+"\n"
+"Tryk venligst pЕ \"AcceptИr\" hvis du er enig med betingelserne i licensen.\n"
+"\n"
+"\n"
+"Tryk venligst pЕ \"AcceptИr ikke\" hvis du er uenig med betingelserne. "
+"Installationen vil stoppe uden af Фndre din\n"
+"nuvФrende konfiguration."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "VФlg det udseende der svarer til dit tastatur fra listen ovenover"
+msgstr "VФlg den udlФgning der svarer til dit tastatur fra listen ovenover"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"Hvis du Ьnsker at andre sprog (end det du har valgt ved\n"
+"begyndelsen af installationen) skal vФre tilgФngelige efter installationen, "
+"sЕ vФlg dem\n"
+"venligst fra listen ovenfor. Hvis du Ьnsker at vФlge dem alle sЕ tryk pЕ "
+"\"Alle\"."
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-"VФlg \"InstallИr\" hvis der ikke er nogen tidligere installeret\n"
-"version af Linux, eller hvis du Ьnsker at benytte flere distributioner\n"
-"eller versioner.\n"
-"VФlg \"OpgradИr\" hvis du Ьnsker at opdatere en tidligere version af\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios) eller 7.0 (Air).\n"
+"VФlg venligst \"InstallИr\" hvis du ikke har nogen tidligere version af "
+"Linux-Mandrake\n"
+"installeret eller du Ьnsker at have flere operativsystemer.\n"
"\n"
"\n"
-"Valgmuligheder:\n"
+"VФlg venligst \"OpdatИr\" hvis Ьnsker at at opdatere en allerede installeret "
+"version af Linux-Mandrake.\n"
"\n"
-" - Automatiseret: Hvis du aldrig har installeret Linux fЬr, sЕ vФlg dette.\n"
-"BemФrk:\n"
-" NetvФrk vil ikke blive konfigureret under installationen, brug\n"
-" 'LinuxConf' til dette efter installationen er fФrdig.\n"
"\n"
-" - Tilpasset: Hvis du kender til Linux, har du mulighed for at vФlge, hvad\n"
-" din maskine primФrt skal benyttes til. Se nedenfor om detaljer.\n"
+"AfhФngig af din viden om GNU/Linux kan du vФlge en af de fЬlgende niveauer "
+"under din installation eller opdatering\n"
+"af Linux-Mandrake:\n"
"\n"
-" - Ekspert: Her antages det at du er ekspert i GNU/Linux og Ьnsker en "
-"specielt\n"
-" \"skrФddersyet\" installation. Du vil ogsЕ her fЕ mulighed for\n"
-" at vФlge din maskines anvendelsesomrЕde som under \"Tilpasset\"\n"
-" Men vФr nu rigtig sЬd og VфLG IKKE DETTE UDEN AT DU VиD HVAD DU GьR!\n"
+"\t* Anbefalet: hvis du aldrig har installeret et GNU/Linux operativ system "
+"sЕ vФlg det her. Installationen vil\n"
+"\t vФre meget nem og du vil kun blive stillet nogen fЕ spЬrgsmЕl.\n"
+"\n"
+"\n"
+"\t* Tilpasset: hvis du kender en del til GNU/Linux, kan du vФlge den primФre "
+"brug (arbejdsstation, server,\n"
+"\t udvikling) af systemet. Du kommer til at besvare 2 yderligere spЬrgsmЕl "
+"end hvis du vФlger \"Anbefalet\" installation\n"
+"\t niveau, sЕ det er nЬdvendigt at du vИd hvordan GNU/Linux virker hvis du "
+"vФlger dette installationsniveau\n"
+"\n"
+"\n"
+"\t* Ekspert: hvis du har en god viden om GNU/Linux, kan du vФlge dette "
+"installationsniveau. Som i \"Tilpasset\"\n"
+"\t installationsniveauet kan du vФlge den primФre brug (arbejdsstation, "
+"server, udvikling). VФr forsigtig\n"
+"\t fЬr du vФlger dette installationsniveau. Du vil vФre i stand til at lave "
+"meget tilpassede installationer.\n"
+"\t nogen af spЬrgsmЕlene du vil blive stillet kan vФre svФre hvis du ikke "
+"har sЕ et sЕ godt kendskab til GNU/Linux. SЕ lad vФre med at vФlge\n"
+"\t dette installationsniveau, medmindre du vИd hvad du laver."
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1343,539 +1634,1216 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Valgmuligheder:\n"
"\n"
" - Tilpasset: Hvis du kender til Linux, har du mulighed for at vФlge, hvad\n"
-" din maskine primФrt skal benyttes til. Se nedenfor om detaljer.\n"
+" din maskine primФrt skal benyttes til. Se nedenfor for detaljer.\n"
+"\n"
"\n"
" - Ekspert: Her antages det at du er ekspert i GNU/Linux og Ьnsker en "
"specielt\n"
" \"skrФddersyet\" installation. Du vil ogsЕ her fЕ mulighed for\n"
" at vФlge din maskines anvendelsesomrЕde som under \"Tilpasset\"\n"
-" Men vФr nu rigtig sЬd og VфLG IKKE DETTE UDEN AT DU VиD HVAD DU GьR!\n"
+" Men vФr nu rigtig sЬd og VфLG IKKE DETTE UDEN AT DU VиD HVAD DU GьR!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
-msgstr ""
-"Mulighederne for maskinens brug (givet at du har valgt enten\n"
-"'Tilpasset' eller 'Ekspert' som installationsklasse) er de fЬlgende:\n"
-"\n"
-" - Normal: vФlg dette hvis du regner med at bruge din maskine\n"
-" mest til dagligdags ting (kontorarbejde, grafikmanipulation\n"
-" og lignende). Regn ikke med at oversФttere, udviklingsvФrktЬjer\n"
-" og lignende er installeret.\n"
-"\n"
-" - Udvikling: som navnet siger. VФlg dette hvis du regner med at\n"
-" bruge maskinen fЬrst og fremmest til programmeludvikling. SЕ vil\n"
-" du fЕ en komplet samling programmel installeret til at kompilere,\n"
-" fejlsЬge og formatere kildekode, eller fremstille programpakker.\n"
-"\n"
-" - Server: vФlg dette hvis maskinen som du installerer er beregnet\n"
-" til at blive brugt som server. Enten en filserver (NFS eller\n"
-" SMB, en printserver (Unix lp (Line Printer) protokol eller\n"
-" Windows-agtig SMB udskrivning), en bemyndigelsesserver (NIS),\n"
-" en database server og sЕ videre. Som sЕdan, forvent ikke at\n"
-" gimmicks (som KDE, GNOME...) installeres.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
"\n"
-" - Ekspert: Her antages det at du er ekspert i GNU/Linux og Ьnsker en "
-"specielt\n"
-" \"skrФddersyet\" installation. Du vil ogsЕ her fЕ mulighed for\n"
-" at vФlge din maskines anvendelsesomrЕde som under \"Tilpasset\"\n"
-" Men vФr nu rigtig sЬd og VфLG IKKE DETTE UDEN AT DU VиD HVAD DU GьR!\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
+msgstr ""
+"Du skal nu definere maskinens brug. Mulighederne er:\n"
+"\n"
+"\t* Arbejdsstation: dette er det ideelle valg hvis du agter at bruge din "
+"maskine dagligt pЕ kontoret eller\n"
+"\t derhjemme.\n"
+"\n"
+"\n"
+"\t* Udvikling: hvis du agter primФrt at bruge din maskine til udvikling af "
+"software er dette et godt valg. Du\n"
+"\t vil fЕ en komplet samling af software installeret til oversФttelse, "
+"fejlfinding, formatering af kildekode eller fremstilling\n"
+"\t af programmelpakker.\n"
+"\n"
+"\n"
+"\t* Server: hvis du agter at bruge denne maskine som en server, er dette et "
+"godt valg. Enten som en filserver (NFS eller\n"
+"\t SMB), en print server (Unix eller Microsoft Windows stil), en login "
+"server (NIS), en database\n"
+"\t server og sЕ videre. Men forvent ikke at nogen fine grafiske "
+"brugerflader (KDE, GNOME, etc.) bliver installeret."
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX vil forsЬge at lede efter Иn eller flere PCI SCSI\n"
-"adaptorer. Hvis den finder nogen (eller nogle), og hvis den ved\n"
-"hvilke(n) driver(e) der skal benyttes, vil de(n) blive installeret\n"
+"DrakX vil forsЬge at lede efter PCI SCSI adapter. Hvis DrakX\n"
+"finder en SCSI adapter og hvis den vИd hvilken driver der skal benyttes, vil "
+"den blive installeret\n"
"automatisk.\n"
"\n"
"\n"
-"Hvis din SCSI-adaptor sidder pЕ et ISA kort, eller hvis den er\n"
-"en ukendt PCI-type, eller hvis du IKKE har SCSI overhovedet, vil\n"
-"du blive spurgt om du har SCSI eller ej. Hvis du ikke har SCSI skal\n"
-"du svare \"Nej\". Hvis du har Иn eller flere skal du svare \"Ja\".\n"
-"Der vil sЕ fremkomme en liste af muligheder, hvorfra du skal vФlge.\n"
+"Hvis du ikke har en SCSI adapter, en ISA SCSI adapter, eller en PCI "
+"SCSI-adapter\n"
+"som DrakX ikke genkender, vil du blive spurgt om du har en SCSI-adapter pЕ "
+"dit system.\n"
+"Hvis der ikke er nogen adapter pЕ systemet kan du blot klikke \"Nej\". Hvis "
+"du klikker pЕ \n"
+"\"Ja\" vil der blive forvist en liste af drivere, hvorfra du kan vФlge din\n"
+"specifikke adapter.\n"
"\n"
"\n"
-"Efter du har valgt driveren, vil DrakX spЬrge om du vil specificere\n"
-"nogle indstillingsmuligheder for den. PrЬv dog fЬrst at lade driveren\n"
-"teste dit hardware selv - det virker som regel fint.\n"
+"Hvis du mЕtte angive din driver manuelt, vil DrakX spЬrge om du vil\n"
+"specificere nogle indstillingsmuligheder for den. Du bЬr dog lade DrakX "
+"spЬrge\n"
+"hardware'en om opsФtningen. Det virker som regel fint.\n"
"\n"
"\n"
-"Hvis det ikke virker fint, mЕ du ikke glemme de informationer om dit\n"
-"hardware, som du kan fЕ fra dine manualer eller fra Windows (hvis du\n"
-"har det installeret pЕ dit system), som anbefalet i installationsguiden.\n"
-"Det er disse opsФtninger som du skal give til driveren."
+"Hvis det ikke virker, skal du angive opsФtningsinformation til driveren.\n"
+"Se i brugervejledningen (kapitel 3, underafsnit \"Collective informations on "
+"your hardware\")\n"
+"om hjФlp med at finde informationen i maskinel-dokumentationen, fra\n"
+"fabrikantens side (hvis du har internet adgang) eller fra Microsoft Windows\n"
+"(hvis du har det pЕ dit system)."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"PЕ dette sted kan du vФlge pЕ hvilke(n) partion(er) du vil installere\n"
-"dit Linux-Mandrake system, forudsat at partitionerne allerede er oprettet\n"
-"(fra en tidligere Linux-installation eller via et andet\n"
-"partitioneringsvФrktЬj). I modsat fald skal harddisken partitioneres.\n"
-"Denne operation gЕr ud pЕ at inddele harddisken i din computer i flere\n"
-"logiske enheder, der hver for sig kan benyttes.\n"
+"Ved dette punkt skal du vФlge hvor du skal installere dit\n"
+"Linux-Mandrake operativsystem pЕ din harddisk. Hvis disken er tom eller\n"
+"et eksisterende operativsystem bruger alt pladsen pЕ den, bliver du nЬdt "
+"til\n"
+"at partitionere den. NЕr disken partioneres deles den i logiske dele\n"
+"for at gЬre plads til dit nye Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Fordi en partitionering normalt ikke kan fortrydes kan det godt vФre "
+"frustrende\n"
+"og skrФmmende for nybegyndere\n"
+"Denne guide forenkler denne proces. FЬr du begynder se da i manualen\n"
+"og tag den tid du skal bruge.\n"
+"\n"
+"\n"
+"Du skal bruge mindst 2 partitioner. Den ene er til selve operativsystemet "
+"og\n"
+"den anden til virtuel hukommelse (ogsЕ kaldt Swap).\n"
"\n"
"\n"
-"Hvis du skal oprette nye partitioner, benyt \"AllokИr automatisk\" til\n"
-"automatisk at oprette Linux-partitionerne. Du kan vФlge hvilken harddisk\n"
-"du vil partitionere ved at klikke pЕ \"hda\" for den fЬrste IDE-disk,\n"
-"\"hdb\" for den anden IDE-disk eller \"sda\" for den fЬrste SCSI-disk\n"
-"o.s.v.\n"
+"Hvis partitionerne allerede er definerede (fra en tidlige installation eller "
+"fra\n"
+"et andet partitions-vФrktЬj), skal du bare vФlge dem for at installere dit\n"
+"Linux system\n"
"\n"
"\n"
-"Der er normalt to almene partitioner: rod-partitionen (/), som udgЬr\n"
-"startstedet for filsystemets katalog-hierarki, og /boot, som indeholder\n"
-"alle de filer som er nЬdvendige for at starte operativsystemet, nЕr\n"
-"computeren tФndes.\n"
+"Hvis partitionerne ikke er lavet endnu, bliver du nЬdt til at oprette dem. \n"
+"For at gЬre det, brug guiden overfor. AfhФngig af din disks konfiguration\n"
+"er flere muligheder tilstede:\n"
"\n"
+"\t* Brug eksisterende partitioner: guiden har fundet en eller flere Linux "
+"partitioner pЕ din harddisk. Hvis\n"
+"\t du vil beholde dem, vФlg denne mulighed.\n"
"\n"
-"NЕr man har om-partitioneret en disk, kan man normalt ikke bringe\n"
-"systemet tilbage til den oprindelige situation - og normalt mister man\n"
-"alle data pЕ de berЬrte omrЕder af disken. Derfor kan denne operation\n"
-"virke skrФmmende og stressende hvis man ikke har prЬvet det fЬr.\n"
-"DiskDrake simplificerer denne operation, sЕledes at det bliver nemmere.\n"
-"LФs i dokumentationen og tag dig god tid fЬr du fortsФtter.\n"
"\n"
-"Du kan nЕ alle mulighederne ved at bruge dit tastatur: naviger gennem "
-"partitionerne\n"
-"ved at bruge Tab og Op/Ned-pilende. NЕr en partition er valgt, kan du "
-"bruge:\n"
+"\t* Slet hele disken: hvis du vil slette alle data pЕ alle partitioner pЕ "
+"denne disk og erstatte dem med\n"
+"\t dit nye Linux-Mandrake system, kan du vФlge denne mulighed. VФr "
+"forsigtig med denne lЬsning, du vil ikke vФre i\n"
+"\t stand til at fortryde din Фndringer.\n"
"\n"
-"- Ctrl-c til at lave en ny partition (nЕr er tom partition er valgt)\n"
"\n"
-"- Ctrl-d til at slette en partition\n"
+"\t* Brug den fri plads pЕ Windows partitionen: hvis Microsoft Windows er "
+"installeret pЕ din disk og bruger\n"
+"\t al pladsen, bliver du nЬdt til at lave plads til Linux. For at gЬre det "
+"kan du slette dine\n"
+"\t Microsoft Windows partitioner og data (se \"Slet hele disken\" eller "
+"\"Ekspert niveau\" ) eller Фndre stЬrrelsen pЕ\n"
+"\t din Microsoft Windows partition. StЬrrelsesФndringen kan fortages uden "
+"tab af data. Denne lЬsning er\n"
+"\t anbefalet hvis du vil bruge bЕde Linux-Mandrake og Microsoft Windows pЕ "
+"samme maskine.\n"
"\n"
-"- Ctrl-m til at sФtte monterings-stien\n"
+"\n"
+"\t FЬr du vФlger denne lЬsning, bЬr du forstЕ at stЬrrelsen pЕ din "
+"Microsoft\n"
+"\t Windows partition vil blive mindre. Det betyder at du vil have mindre "
+"fri plads under\n"
+"\t Microsoft Windows til at gemme din data eller installere programmel.\n"
+"\n"
+"\n"
+"\t* Ekspert niveau: hvis du vil partitionere disken manuelt, skal du vФlge "
+"dette niveau. VФr forsigtig fЬr du\n"
+"\t vФlger denne lЬsning. Det giver dig mange muligheder, men du kan ogsЕ "
+"nemt komme til at slette dine data. SЕ\n"
+"\t lad vФre med at vФlge den lЬsning med mindre du vИd hvad du gЬr."
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:160
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Alle partitioner, som er blevet oprette skal formateres fЬr de kan\n"
-"benyttes (formatere er det samme som at oprette et filsystem). Samtidig\n"
-"kan du vФlge at reformatere eksisterende partitioner for at slette\n"
-"de data, der mЕtte ligge herpЕ. BemФrk: det er ikke tvingende nЬdvendigt\n"
-"at reformatere eksisterende partitioner; specielt ikke hvis de\n"
-"indeholder data du Ьnsker at beholde. Typisk bevares partitioner sЕsom\n"
-"/home og /usr/local."
+"Nu skal du vФlge hvor Linux-Mandrake skal installeres. Hvis partitionerne\n"
+"allerede er lavet (fra en tidligere installation af GNU/Linux eller fra et\n"
+"andet partitioneringsvФrktЬj), kan du bruge dem. Ellers skal partitionerne\n"
+"laves fЬrst.\n"
+"\n"
+"\n"
+"For at lave partitioner, skal du fЬrst vФlge en harddisk. Du kan vФlge\n"
+"harddisk der skal partitioneres ved at trykke pЕ \"hda\" for den fЬrste IDE\n"
+"disk, \"hdb\" for den anden eller \"sda\" for den fЬrste SCSI disk og sЕ "
+"videre.\n"
+"\n"
+"\n"
+"For at partitionere den valgte disk kan du bruge disse muligheder:\n"
+" * Slet alt: Dette valg sletter alle partitioner pЕ den valgte disk.\n"
+"\n"
+"\n"
+" * AllokИr automatisk: dette valg tillader dig automatisk at lave Ext2 og "
+"swappartitioner pЕ den fri plads pЕ din\n"
+" disk.\n"
+"\n"
+"\n"
+" * Red partitionstabel: hvis din partitionstabel er beskadet, kan du prЬve "
+"at redde den med denne mulighed. VФr venligst\n"
+" forsigtig og husk at det kan fejle.\n"
+"\n"
+"\n"
+" * Fortryd: Du kan bruge denne mulighed for at annullere dine Фndringer.\n"
+"\n"
+"\n"
+" * GenindlФs: Du kan bruge denne mulighed hvis du Ьnsker at fortryde alle "
+"Фndringer og genindlФse din oprindelige partitionstabel\n"
+"\n"
+"\n"
+" * Guide: Hvis du Ьnsker at bruge guiden til at partitionere din disk, kan "
+"du bruge denne mulighed. Det er anbefalet\n"
+" hvis du ikke har det store kendskab til partitionering.\n"
+"\n"
+"\n"
+" * Genskab fra diskette: Hvis du har gemt din partitionstabel pЕ en "
+"diskette under en tidligere installation, kan du\n"
+" genskabe den med denne mulighed.\n"
+"\n"
+"\n"
+" * Gem pЕ diskette: Hvis du Ьnsker at gemme din partitionstabel pЕ en "
+"diskette, for at kunne hente den senere,\n"
+" kan du bruge denne mulighed. Det er stФrkt anbefalet at bruge denne "
+"mulighed.\n"
+"\n"
+" * FФrdig: nЕr du er fФrdig med partitionering af din disk, sЕ tryk pЕ "
+"\"FФrdig\" for at gemme Фndringerne.\n"
+"\n"
+"\n"
+"Som oplysning kan du nЕ alle mulighederne ved at bruge tastaturet: navigИr "
+"gennem partitioner med Tab og Op og Ned pilene.\n"
+"\n"
+"\n"
+"NЕr en partition er valgt kan du bruge:\n"
+"\n"
+" * Ctrl-c for at lave en ny partition (NЕr en tom partition er "
+"valgt)\n"
+" * Ctrl-d for at slette en partition\n"
+"\n"
+" * Ctrl-m for at sФtte et monteringssti"
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:218
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-"Du kan nu vФlge den gruppe pakker som du Ьnsker at installere eller "
-"opgradere.\n"
+"Ovenfor er listet de eksisterende Linux-partitioner genkendt pЕ din disk.\n"
+"Du kan beholde valgene gjort af troldmanden, de er velegnede til almindelig\n"
+"brug. Hvis du Фndrer disse valg skal du i det mindste definere en\n"
+"rod-partition '/'. Lad vФre med at vФlge en for lille partition, eller du\n"
+"vil ikke kunne installere nok programmel. Hvis du Ьnsker at lagre data pЕ\n"
+"en separat partition, skal du ogsЕ vФlge en '/home' (kun muligt hvis du har\n"
+"mere end Иn Linux-partition).\n"
"\n"
-"DrakX vil sЕ tjekke om du har nok plads til at installere dem alle. Hvis "
-"ikke, vil den advare dig om det. Hvis du Ьnsker at fortsФtte alligevel, vil "
-"den gЕ videre til installationen af alle valgte grupper, men vil droppe "
-"nogle pakker af mindre interesse. PЕ bunden af listen kan du vФlge "
-"muligheden \"Individuel pakkevalg\"; i dette tilfФlde vil du vФre nЬdt til "
-"at bladre igennem mere end 1000 pakker..."
+"\n"
+"Som oplysning er hver partition listet som fЬlger: 'Navn', 'Kapacitet'.\n"
+"\n"
+"\n"
+"'Navn' er kodet som fЬlger: 'drevtype', 'drevnummer', 'partitionsnummer'\n"
+"(for eksempel '/hda1').\n"
+"\n"
+"\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er\n"
+"et SCSI drev.\n"
+"\n"
+"\n"
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
+"\n"
+" * 'a' betyder 'hoved drev pЕ den primФre IDE controller',\n"
+"\n"
+" * 'b' betyder 'slave drev pЕ den primФre IDE controller',\n"
+"\n"
+" * 'c' betyder 'hoved drev pЕ den sФkundФre IDE controller',\n"
+"\n"
+" * 'd' betyder 'slave drev pЕ den sФkundФre IDE controller'.\n"
+"\n"
+"\n"
+"For SCSI drev betyder 'a' det 'fЬrste drev', 'b' betyder det 'andet drev', "
+"osv."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:252
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Hvis du har alle cd-erne i listen ovenover, klik Ok.\n"
-"Hvis du ikke har nogen af disse cd-er, klik Fortryd.\n"
-"Hvis kun nogen cd-er mangler, fravФlg dem, og klik sЕ Ok."
+"VФlg den disk du vil slette for at installere din\n"
+"nye Linux-Mandrake partition. VФr forsigtig, alle data pЕ disken vil gЕ tabt."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:257
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"De valgte pakker bliver nu installeret. Denne opgave bЬr tage nogle\n"
-"fЕ minutter medmindre du har valgt at opgradere et eksisterende\n"
-"system. I sЕ fald kan det vare endnu lФngere tid fЬr opgraderingen\n"
-"starter"
+"Klik pЕ 'Ok' hvis du Ьnsker at slette alle data og\n"
+"partitioner som forefindes pЕ denne disk. VФr forsigtig, efter klik pЕ 'Ok' "
+"\n"
+"vil du *ikke* kunne redde nogen data eller partitioner pЕ denne disk,\n"
+"inklusive nogensomhelst data fra Windows.\n"
+"\n"
+"Klik pЕ 'AnnullИr' for at annullere denne handling uden at tabe nogen data "
+"og\n"
+"partitioner pЕ denne disk."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:267
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+" * \"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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-"Hvis DrakX ikke kunne finde din mus, eller hvis du vil tjekke, hvad\n"
-"DrakX har valgt, kan du se det (og eventuelt vФlge om) i listen af\n"
-"mus ovenfor.\n"
+"Mere end Иn Microsoft Windows partition er blevet genkendt pЕ dit diskdrev.\n"
+"VФlg venligst den som du Ьnsker at Фndre stЬrrelse pЕ for at kunne "
+"installere\n"
+"dit nye Linux-Mandrake operativsystem.\n"
+"\n"
+"\n"
+"Som oplysning er hver partition listet som fЬlger: 'Linux navn', 'Windows "
+"navn',\n"
+"'Kapacitet'.\n"
+"\n"
+"'Linux navn' er kodet som fЬlger: 'drevtype', 'drevnummer', "
+"'partitionsnummer'\n"
+"(for eksempel '/hda1').\n"
+"\n"
+"\n"
+"'drevtype' er 'hd' hvis dit diskdrev er et IDE drev, og 'sd' hvis det er\n"
+"et SCSI drev.\n"
+"\n"
+"\n"
+"'drevnummer' er altid et bogstav efter 'hd' eller 'sd'. For IDE drev:\n"
+"\n"
+" * 'a' betyder 'hoved drev pЕ den primФre IDE controller',\n"
+"\n"
+" * 'b' betyder 'slave drev pЕ den primФre IDE controller',\n"
"\n"
+" * 'c' betyder 'hoved drev pЕ den sФkundФre IDE controller',\n"
"\n"
-"Hvis du er enig med DrakX' valg, kan du hoppe til det Ьnskede punkt\n"
-"ved at klikke pЕ det i menuen til venstre. Ellers vФlg den mus der\n"
-"passer bedst til din mus.\n"
+" * 'd' betyder 'slave drev pЕ den sФkundФre IDE controller'.\n"
"\n"
"\n"
-"Hvis du har en seriel-mus, skal du ogsЕ fortФlle DrakX, hvilken port\n"
-"musen er tilsluttet."
+"For SCSI drev betyder 'a' det 'fЬrste drev', 'b' betyder det 'andet drev', "
+"osv.\n"
+"\n"
+"'Windows navn' er det bogstav som dit drev har under Windows (den fЬrste\n"
+"disk eller partition kaldes 'C:')."
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr "VФr tЕlmodig. Denne handling kan tage flere minutter."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:303
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"VФlg venligst den korrekte port. F.eks. har COM1-porten (kendt fra MS\n"
-"Windows) navnet ttyS0 i Linux."
+"Enhver partition der netop er blevet defineret, skal formateres til brug\n"
+"(formatering betyder oprettelse af et filsystem).\n"
+"\n"
+"\n"
+"Nu kan du ogsЕ Ьnske at omformatere nogle allerede eksisterende partitioner\n"
+"for at slette de data som de indeholder. Hvis du Ьnsker dette, sЕ vФlg "
+"venligst\n"
+"de partitioner som du Ьnsker at formatere.\n"
+"\n"
+"\n"
+"BemФrk venligst at det ikke er nЬdvendigt at omformatere alle allerede "
+"eksisterende\n"
+"partitioner. Det er nЬdvendigt at omformatere de partitioner, der "
+"indeholder\n"
+"operativsystemet (sЕsom '/', '/usr' og '/var', men du er ikke nЬdt til at "
+"omformatere\n"
+"partitioner som du Ьnsker at beholde (typisk /home).\n"
+"\n"
+"\n"
+"VФr venligst forsigtig med valg af partitioner; efter formatering vil alle "
+"data\n"
+"vФre slettede, og du vil ikke kunne redde nogetsomhelst af det.\n"
+"\n"
+"\n"
+"Klik pЕ 'Ok' nЕr du er klar til at formatere partitioner.\n"
+"\n"
+"\n"
+"Klik pЕ 'AnnullИr' hvis du Ьnsker at vФlge andre partitioner til at "
+"installere\n"
+"dit nye Linux-Mandrake operativsystem."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:329
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
+msgstr ""
+"Du kan nu vФlge den gruppe pakker som du Ьnsker at installere eller "
+"opgradere.\n"
+"\n"
+"\n"
+"DrakX vil sЕ tjekke om du har nok plads til at installere dem alle. Hvis "
+"ikke,\n"
+"vil den advare dig om det. Hvis du Ьnsker at fortsФtte alligevel, vil den\n"
+"gЕ videre til installationen af alle valgte grupper, men vil droppe nogle "
+"pakker af mindre interesse. PЕ bunden af listen kan du vФlge\n"
+"muligheden \"Individuelt pakkevalg\"; i dette tilfФlde vil du vФre nЬdt til "
+"at\n"
+"bladre igennem mere end 1000 pakker..."
+
+#: ../../help.pm_.c:341
+msgid ""
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Denne sektion drejer sig om konfiguration af netvФrket (LAN) eller\n"
-"dit modem.\n"
+"Du kan nu lave individuelle valg af alle pakker du Ьnsker at installere.\n"
"\n"
-"Hvis du vФlger \"LAN\" vil DrakX lede efter et Ethernetkort i din\n"
-"computer. PCI-kort burde blive fundet og initialiseret automatisk.\n"
-"PЕ den anden side, hvis dit netkort er af ISA-typen, virker den\n"
-"automatiske detektion normal ikke, og du skal sЕ vФlge en driver\n"
-"ud fra den liste som vil fremkomme.\n"
"\n"
+"Du kan udvide eller sammenfolde trФet ved at klikke pЕ indstillinger i det\n"
+"venstre hjЬrne af pakke-vinduet.\n"
"\n"
-"Ligesom for SCSI adaptorer, kan du til at starte med lade driveren\n"
-"initialisere adaptoren. Hvis dette ikke virker efter hensigten, kan\n"
-"du selv specificere driverens indstillinger ud fra de oplysninger, som\n"
-"du har fra dit hardware's dokumentation.\n"
"\n"
+"Hvis du foretrФkker at se pakker sorteret i alfabetisk orden, klik da pЕ "
+"ikonen\n"
+"'Skift mellem flad og gruppesorteret'\n"
"\n"
-"Hvis du installerer et Linux-Mandrake system pЕ en maskine, som er en\n"
-"del af et eksisterende netvФrk, kan netvФrksadministratoren give dig\n"
-"alle de fornЬdne oplysninger (IP-adresse, netmaske and navnet pЕ din\n"
-"maskine). Hvis du derimod opsФtter et privat netvФrk (eksempelvis\n"
-"derhjemme) skal du selv vФlge passende adresser.\n"
+"\n"
+"Hvis du Ьnsker ikke at blive advaret om afhФngigheder, klik da pЕ "
+"'Automatiske\n"
+"afhФngigheder'. Hvis du gЬr dette, bemФrk da at fravalg af en pakke kan\n"
+"fravФlge adskillige andre pakker som afhФnger af denne uden yderligere "
+"advarsel."
+
+#: ../../help.pm_.c:358
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"Hvis du har alle cd'erne i listen ovenover, klik Ok. Hvis du ikke\n"
+"har nogen af disse cd'er, klik AnnullИr. Hvis kun nogen cd'er mangler, "
+"fravФlg dem,\n"
+"og klik sЕ Ok."
+
+# Fejl
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"Hvis du vФlger \"Opkald via modem\" kan du opsФtte din modem-forbindelse\n"
-"til Internettet. DrakX vil forsЬge at finde dit modem, men hvis dette\n"
-"ikke lykkes, skal du selv angive hvilken serielle port dit modem er\n"
-"forbundet til."
+"Please be patient."
+msgstr ""
+"Dit nye Linux-Mandrake styresystem er i fФrd med\n"
+"at blive installeret. Denne operation burde kun tage et par minutter "
+"(afhФngig\n"
+"af den installationsstЬrrelse du har valgt og hastigheden pЕ din maskine).\n"
+"\n"
+"\n"
+"Hav venligst tЕlmodighed."
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+"Du kan nu teste din mus. Brug knapperne og hjulet for sikre\n"
+"dig at det virker. Hvis ikke, sЕ klik pЕ \"AnnullИr\" og vФlg en anden\n"
+"driver."
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"VФlg venligst den korrekte port. F.eks. har COM1-porten (kendt fra MS\n"
+"Windows) navnet ttyS0 i GNU/Linux."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:380
msgid ""
-"Enter:\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
+"\n"
+"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
+"\n"
+"\n"
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
+"Hvis du Ьnsker at forbinde din maskine til internettet eller\n"
+"til et lokalnetvФrk, vФlg da venligst den rigtige indstilling. TФnd "
+"venligst\n"
+"for din enhed fЬr den rigtige indstilling vФlges, sЕ DrakX kan finde den\n"
+"automatisk.\n"
+"\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
+"Hvis du ikke har nogen forbindelse til internettet eller et lokalnetvФrk, "
+"sЕ\n"
+"vФlg 'DeaktivИr netvФrk'.\n"
"\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+"Hvis du Ьnsker at konfigurere netvФrket senere efter installationen, eller\n"
+"hvis du er fФrdig med at konfigurere din netvФrksforbindelse, vФlg da "
+"'FФrdig'."
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"Der blev ikke fundet noget modem. VФlg venligst hvilken port modemet sidder "
+"pЕ.\n"
+"\n"
+"\n"
+"Som oplysning kaldes den fЬrste serielle port (hedder \"COM1\" under "
+"Microsoft\n"
+"Windows) \"ttyS0\" under Linux."
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+"Du kan nu indtaste opkalds-indstillinger. Hvis du ikke vИd noget, eller "
+"ikke\n"
+"er sikker pЕ hvad der skal indtastes, kan de korrekte informationer fЕs fra\n"
+"din internet-udbyder. Hvis du ikke indtaster DNS (navneservice) "
+"informationen\n"
+"her, vil informationen blive hentet fra din internet-udbyder ved "
+"forbindelsen."
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
msgstr ""
-"Indtast:\n"
+"Hvis dit modem er et eksternt modem, sЕ tФnd det, sЕ DrakX kan finde det "
+"automatisk."
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "TФnd venligst dit modem og vФlg det rigtige"
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+"Hvis du ikke er sikker pЕ om oplysningerne ovenfor er rigtige, eller hvis\n"
+"du ikke vИd eller ikke er sikker pЕ hvad der skal indtastes, kan de "
+"korrekte\n"
+"informationer fЕs fra din internet-udbyder. Hvis du ikke indtaster DNS\n"
+"(navneservice) informationen her, vil informationen blive hentet fra din\n"
+"internet-udbyder ved forbindelsen."
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Du kan nu indtaste dit vФrtsnavn. Hvis du ikke \n"
+"er sikker pЕ hvad du skal skrive, kan du fЕ de korrekte oplysninger fra din\n"
+"internet-udbyder (ISP)."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
+"\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
-" - IP-adresse: hvis du ikke kender den, spЬrg din netvФrksadministrator.\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
+msgstr ""
+"Du kan du konfigurere din netvФrksenhed\n"
"\n"
-" - Netmaske: \"255.255.255.0\" er normalt et godt valg. Hvis du ikke er\n"
-"sikker, spЬrg din netvФrksadministrator.\n"
+" * IP-adresse: hvis du ikke kender den, spЬrg din netvФrksadministrator\n"
+" Du mЕ ikke skrive en IP adresse hvis du vФlger \"Automatisk IP\" "
+"nedenfor.\n"
"\n"
+" * Netmaske: \"255.255.255.0\" er normalt et godt valg. Hvis du ikke er\n"
+"sikker, spЬrg din\n"
+" netvФrksadministrator.\n"
"\n"
-" - Automatisk IP: hvis dit netvФrk anvender `bootp' eller `dhcp' "
-"protokollen,\n"
-"vФlg denne mulighed. Hvis den er valgt, skal du ikke skrive noget i feltet\n"
-"\"IP-adresse\". Hvis du ikke er sikker, spЬrg din netvФrksadministrator.\n"
+" * Automatisk IP: hvis dit netvФrk anvender `BOOTP' eller `DHCP' "
+"protokollen, sЕ vФlg denne mulighed.\n"
+" Hvis denne mulighed er valgt, skal du ikke skrive noget i feltet\n"
+" \"IP-adresse\". Hvis du ikke er sikker, spЬrg din netvФrksadministrator."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Du kan nu skive dit vФrtsnavn om nЬdvendigt.\n"
+"Hvis du ikke vИd hvad du skal skrive, spЬrg din netvФrks administrator."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"Du kan nu skive dit vФrtsnavn om nЬdvendigt\n"
+"Hvis du ikke ved hvad du skal skrive, sЕ efterlad det blankt."
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
"Du kan nu indtaste dine opkaldsindstillinger. Hvis du ikke er sikker pЕ,\n"
"hvad du skal skrive, kan du fЕ de korrekte oplysninger fra din\n"
-"Internet-udbyder (ISP)."
+"internet-udbyder (ISP)."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"Hvis du vil benytte proxyer, skal du konfigurere dem nu. Hvis du ikke\n"
-"ved, om du vil benytte proxyer, kan du spЬrge din netvФrksadministrator\n"
-"eller din Internet-udbyder (ISP)."
+"Hvis du vil benytte proxy'er, skal du konfigurere dem nu. Hvis du ikke\n"
+"ved, om du vil benytte proxy'er, kan du spЬrge din netvФrksadministrator\n"
+"eller din internet-udbyder (ISP)."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"Du har mulighed for at installere krypterings-pakker, hvis din\n"
-"Internet-forbindelse er blevet sat korrekt op. VФlg fЬrst en server,\n"
+"internetforbindelse er blevet sat korrekt op. VФlg fЬrst en server,\n"
"hvorfra du vil hente pakkerne, og vФlg herefter hvilke pakker du Ьnsker at\n"
"installere.\n"
"\n"
+"\n"
"BemФrk, at du skal vФlge server og krypterings-pakker i overensstemmelse "
"med\n"
"dit lands lovgivning pЕ dette omrЕde."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "Du kan nu vФlge din tidszone efter hvor du bor."
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Du kan nu vФlge din tidszone i overensstemmelse med hvor du bor.\n"
-"\n"
-"\n"
-"Linux styrer sin tid efter GMT (\"Greenwich Mean Time\") og\n"
+"GNU/Linux styrer sin tid efter GMT (\"Greenwich Mean Time\") og\n"
"oversФtter denne tid til den lokale tid alt efter hvilken tidszone du\n"
-"har valgt"
+"har valgt.\n"
+"\n"
+"Hvis du bruger Microsoft Windows pЕ denne maskine, vФlg da 'nej'."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"Du kan nu vФlge hvilke tjenester du Ьnsker skal startes ved opstart af "
"maskinen.\n"
+"\n"
+"\n"
"NЕr din mus passerer over et emne kommer en lille hjФlpeballon frem\n"
"som beskriver tjenestens rolle.\n"
"\n"
+"\n"
"VФr specielt varsom pЕ dette trin hvis du planlФgger at bruge maskinen som\n"
"server: du vil formentlig Ьnske ikke at starte nogensomhelst tjeneste\n"
-"op som du ikke har brug for."
+"op som du ikke har brug for. Husk venligst at adskillige tjenester kan vФre\n"
+"farlige hvis de er aktiveret pЕ en server.\n"
+"VФlg som hovedregel kun de tjenester som du virkelig behЬver."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
-"\n"
-"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
-"\n"
-"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
-"\n"
-"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
-msgstr ""
-"Linux kan hЕndtere mange forskellige slags printere. Hver af disse\n"
-"krФver sin egen opsФtning. Du skal do notere at printer kЬen\n"
-"bruger 'lp' som det standard printer navn; SЕ du skal\n"
-"have en printer med sЕdan et navn; men du kan give\n"
-"flere navne, separeret med '|', til en printer.\n"
-"SЕ hvis du foretrФkker at bruge et mere meningsflydt navn skal du\n"
-"bare putte det fЬrst, f.eks: \"Min Printer|lp\".\n"
-"printeren med \"lp\" i sit navn(e) vil vФre standard printer.\n"
-"\n"
-"Hvis din printer er direkte forbundet til din computer, skal du vФlge\n"
-"\"Lokal printer\". Du skal sЕ angive, hvilken port din printer er\n"
-"forbundet til, og vФlge et passende printer-filter (et filter er en\n"
-"form for driver).\n"
-"\n"
-"\n"
-"Hvis du vil have adgang til en printer, som sidder pЕ en anden Unix\n"
-"computer, skal du vФlge \"NetvФrksprinter\". For at fЕ dette til at\n"
-"fungere skal du kende navnet pЕ Unix computeren samt navnet pЕ\n"
-"printerkЬen pЕ denne computer (brugernavn og adgangskode er ikke\n"
-"nЬdvendig.\n"
-"\n"
-"\n"
-"Hvis du Ьnsker at benytte en SMB printer (hvilket er en printer, der\n"
-"er forbundet til en Windows 9x/NT maskine), skal du angive computerens\n"
-"SMB-navn (ikke TCP/IP-navnet), og muligvis dens IP-adresse, plus\n"
-"et brugernavn, arbejdsgruppe og adgangskode krФvet for at fЕ tilgang\n"
-"til printeren, og - naturligvis - navnet pЕ printeren. Det samme\n"
-"gФlder for en NetWare printer, bortset fra at du ikke skal angive nogen\n"
-"arbejdsgruppe."
-
-#: ../../help.pm_.c:286
-msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
-"\n"
-"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"Du kan konfigurere en lokal printer (siddende pЕ din maskine) eller en "
+"fjern\n"
+"printer (gennem et Unix, Netware eller Microsoft Windows netvФrk)."
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+"Hvis du Ьnsker at kunne udskrive, sЕ vФlg venligst et af printsystemerne\n"
+"CUPS eller LPR\n"
+"\n"
+"\n"
+"CUPS er et nyt stФrkt og fleksibelt printsystem til Unix-systemer\n"
+"(CUPS betyder 'Common Unix Printing System'). Det er standard "
+"udskriftssystemet\n"
+"i Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR er det gamle udskriftssystem som blev brugt i tidligere Linux-Mandrake "
+"distributioner,\n"
+"\n"
+"\n"
+"Hvis du ikke har nogen printer, klik pЕ 'None'."
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+"GNU/Linux kan behandle mange printertyper. Hver af disse typer krФver sin\n"
+"egen opsФtning.\n"
+"\n"
+"\n"
+"Hvis din printer er fysisk forbundet til din maskine, vФlg 'lokal printer'\n"
+"\n"
+"\n"
+"Hvis du Ьnsker at anvende en printer placeret pЕ en enstern Microsoft\n"
+"Windows maskine (eller pЕ en Unix-maskine med SMB-protokol), vФlg "
+"'SMB/Windows\n"
+"95/98/NT'"
+
+# Mangler
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+# Mangler
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"Din printer er ikke blevet fundet. Indtast venligst navnet pЕ den enhed som\n"
+"den er forbundet til.\n"
+"\n"
+"\n"
+"Som oplysning er de fleste printere forbundet til den fЬrste parallelle "
+"port.\n"
+"Denne kaldes '/dev/lp0' under GNU/Linux og 'LPT1' under Microsoft Windows."
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "Du skal nu vФlge din printer i listen ovenfor."
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"VФlg venligst rettigheds-indstillinger svarende til din printer.\n"
+"Se venligst i dokumentationen hvis du ikke vИd hvad der skal vФlges her.\n"
+"\n"
+"\n"
+"Du vil kunne afprЬve din konfiguration i det nФste trin, og du vil kunne\n"
+"Фndre den, hvis den ikke virker som du Ьnsker."
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Du kan nu angive adgangskoden for brugeren `root' (som pЕ dansk ofte\n"
"kaldes `rod' eller `superbruger') pЕ dit Linux-Mandrake system.\n"
@@ -1885,15 +2853,19 @@ msgstr ""
"\n"
"`root' er systemets administrator og er den eneste bruger, der har\n"
"rettigheder til at Фndre pЕ systemets opsФtning. Derfor skal du vФlge\n"
-"adgangskoden med omhu! Utilsigtet adgang til systemet `root'-konto\n"
+"adgangskoden med omhu! Utilsigtet adgang til systemets `root'-konto\n"
"kan vФre ekstremt farlig for systemets sikkerhed, de data der ligger\n"
-"pЕ systemet, samt andre systemer pЕ netvФrket. Adgangskoden bЬr vФre\n"
-"en blanding af alfanumИriske tegn og vФre mindst 8 tegn lang.\n"
-"Adgangskoden bЬr *aldrig* blive skrevet ned. Du bЬr dog heller ikke\n"
-"gЬre adgangskoden *for* lang eller for kompliceret, idet du jo gerne\n"
-"skulle kunne huske den uden *alt* for meget besvФr."
+"pЕ systemet, samt andre systemer pЕ netvФrket.\n"
+"\n"
+"\n"
+"Adgangskoden bЬr vФre en blanding af alfanumeriske tegn og vФre\n"
+"mindst 8 tegn lang. Adgangskoden bЬr *aldrig* skrives ned.\n"
+"\n"
+"\n"
+"Du bЬr dog heller ikke gЬre adgangskoden *for* lang eller for kompliceret,\n"
+"idet du jo gerne skulle kunne huske den uden *alt* for meget besvФr."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1901,7 +2873,7 @@ msgstr ""
"For at fЕ et mere sikkert system, bЬr du vФlge \"Benyt skygge-fil\" og\n"
"\"Benyt MD5-adgangkoder\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1909,7 +2881,7 @@ msgstr ""
"Hvis dit netvФrk benytter NIS, vФlg \"Benyt NIS\". Hvis du ikke ved det,\n"
"kan du spЬrge din netvФrksadministrator."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1952,46 +2924,44 @@ msgstr ""
"systemet, og *kun* logge ind som rod hvis du skal foretage administrative\n"
"handlinger eller vedligeholde systemet."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Det anbefales pЕ det kraftigste, at du svarer \"Ja\" her. Hvis du\n"
-"installerer Microsoft Windows pЕ et senere tidspunkt vil dette overskrive\n"
-"boot sektoren. Med mindre du har lavet en bootdiskette, som anbefalet,\n"
-"vil du ikke lФngere kunne opstarte Linux."
+"Oprettelse af en opstartsdiskette er stФrkt anbefalet. Hvis du ikke kan\n"
+"starte din maskine, er det den eneste mЕde at redde den uden at "
+"geninstallere alt."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Du skal indikere, hvor du Ьnsker at placere de informationer, der er\n"
-"nЬdvendige for at starte Linux op.\n"
+"nЬdvendige for at starte GNU/Linux op.\n"
"\n"
"\n"
"Med mindre du ved prФcist hvad du gЬr, bЬr du vФlge \"FЬrste sektor pЕ\n"
"disken (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
"Med mindre du ved bedre, er det sФdvanlige valg \"/dev/hda\" (FЬrste\n"
-"IDE-harddisk) eller \"/dev/sda\" (fЬrste SCSI-disk)."
+"IDE-disk) eller \"/dev/sda\" (fЬrste SCSI-disk)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -2002,7 +2972,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (LInux LOader) og Grub er systemopstartere: de kan starte\n"
-"enten Linux eller ethvert andet operativsystem op pЕ din maskine. \n"
+"enten GNU/Linux eller ethvert andet operativsystem op pЕ din maskine. \n"
"Normalt bliver disse operativsystemer opdaget korrekt og installeret. \n"
"Hvis dette ikke er tilfФldet, kan du tilfЬje en indgang manuelt pЕ \n"
"dette skФrmbillede. VФr forsigtig med at vФlge de rigtige parametre.\n"
@@ -2014,7 +2984,7 @@ msgstr ""
"i dette tilfФlde vil du have brug for en opstartsdiskette for at \n"
"kunne starte dem op!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2031,12 +3001,13 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO's og grub hovedindstillingsmuligheder er:\n"
-" - Opstarts-enhed: Angiver navnet pЕ enheden (f.eks. en harddisk "
-"partition)\n"
+" - Opstarts-enhed: Angiver navnet pЕ enheden (f.eks. en disk partition)\n"
"som indeholder opstarts-sektoren. Med mindre du selv ved bedre, bЬr du "
"vФlge\n"
"\"/dev/hda\".\n"
@@ -2045,7 +3016,7 @@ msgstr ""
" - Ventetid fЬr standard-styresystem skal opstartes: Angiver det antal\n"
"tiendedele sekunder opstarteren skal vente fЬr den starter det "
"operativsystem,\n"
-"man har valgt som standard. Dette er nyttigt pЕ systemer, der startes\n"
+"du har valgt som standard. Dette er nyttigt pЕ systemer, der startes\n"
"Ьjeblikkeligt fra harddisken efter tastaturet er aktiveret. Opstarteren "
"venter\n"
"ikke, hvis \"delay\" (ventetid) er udeladt eller sat til nul.\n"
@@ -2054,12 +3025,65 @@ msgstr ""
" - Video indstilling: Dette angiver den VGA-tekstindstilling som skal\n"
"vФlges ved opstart. FЬlgende vФrdier kan benyttes: \n"
" * normal: vФlger den normale 80x25 tegn tekstindstilling.\n"
-" * <tal>: benyt den til <tal> svarende tekstindstilling"
+" * <tal>: benyt den til <tal> svarende tekstindstilling."
+
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO er en opstarter for SPARC: den kan starte\n"
+"enten GNU/Linux eller ethvert andet operativsystem der ligger pЕ din "
+"maskine. \n"
+"Normalt bliver disse operativsystemer opdaget korrekt og installeret. \n"
+"Hvis dette ikke er tilfФldet, kan du tilfЬje en indgang manuelt pЕ \n"
+"dette skФrmbillede. VФr forsigtig med at vФlge de rigtige parametre.\n"
+"\n"
+"\n"
+"Du vil mЕske ogsЕ Ьnske ikke at give adgang til disse andre operativsystemer "
+"\n"
+"til nogensomhelst, i sЕ fald kan du slette de tilsvarende indgange. Men \n"
+"i dette tilfФlde vil du have brug for en opstartsdiskette for at \n"
+"kunne starte dem op!"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILOs hovedindstillingsmuligheder er:\n"
+" - Opstarts-installation: Angiv hvor du Ьnsker at placere informationen\n"
+"der krФves for at opstarte GNU/Linux. Med mindre du ved nЬjagtig hvad\n"
+"du gЬr, vФlg 'FЬrste sektor pЕ drev (MBR)'\n"
+"\n"
+"\n"
+" - Ventetid fЬr standard-styresystem skal opstartes: Angiver det antal\n"
+"tiendedele sekunder opstarteren bЬr vente fЬr den starter det fЬrste "
+"operativsystem, Dette er nyttigt pЕ systemer, der startes\n"
+"Ьjeblikkeligt fra harddisken efter tastaturet er aktiveret. Opstarteren\n"
+"venter ikke, hvis \"delay\" (ventetid) er udeladt eller sat til nul."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2071,18 +3095,18 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Det er nu tid til at konfigurere X-vinduessystemet, som er kernen\n"
-"i Linux' grafiske brugerflade. Til dette formЕl skal du konfigurere\n"
+"i GNU/Linux' grafiske brugerflade. Til dette formЕl skal du konfigurere\n"
"dit grafikkort samt din skФrm. De fleste af disse valg foregЕr dog\n"
"automatisk, hvilket betyder at du normalt blot skal godkende de valg\n"
"som er truffet :)\n"
"\n"
"\n"
"NЕr konfigurationen er afsluttet, vil X blive startet (medmindre du\n"
-"vФlger at lade vФre) sЕledes at du kan se om opsФtningen passer til\n"
-"dig. Hvis ikke, kan du gЕ tilbage og Фndre opsФtningerne sЕ ofte det\n"
+"beder DrakX om at lade vФre) sЕledes at du kan se om opsФtningen passer til\n"
+"dig. Hvis ikke, kan du komme tilbage og Фndre opsФtningerne sЕ ofte det\n"
"mЕtte vФre nЬdvendigt."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2090,7 +3114,7 @@ msgstr ""
"Hvis der er noget galt med X-konfigurationen, skal du benytte disse\n"
"indstillingsmuligheder til at sФtte X-vinduessystem korrekt op."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2098,80 +3122,84 @@ msgstr ""
"Hvis du fortrФkker at benytte grafisk logind, vФlg \"Ja\". Hvis ikke,\n"
"vФlg \"Nej\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Du kan nu vФlge mellem diverse indstillinger for dit system.\n"
"\n"
-" - Benyt harddisk optimeringer: Denne indstilling kan forЬge hastigheden\n"
-" for operationer pЕ harddisken, men den bЬr kun benyttes af erfarne "
-"brugere:\n"
-" nogle fejlbehФftede chipsФt kan ЬdelФgge dine data, sЕ\n"
-" pas pЕ. BemФrk at kernen har en indbygget sortliste pЕ drev og\n"
-" chipsФt, men hvis du vil undgЕ kedelige overraskelser, sЕ undlad at\n"
-" bruge denne valgmulighed.\n"
-" - VФlg sikkerhedniveau: Du kan vФlge et sikkerhedsniveau for dit system.\n"
-" LФs venligst i manualen for en fyldestgЬrende forklaring. I korthed:\n"
-" hvis du ikke vИd det, vФlg 'Medium' ; hvis du virkelig vil have \n"
-" en sikker maskine, vФlg 'Paranoid' men pas pЕ: Pе DETTE NIVEAU\n"
-" ER ROOT LOGIN IKKE TILLADT Pе KONSOLLEN! Hvis du Ьnsker at vФre\n"
-" root er du nЬdt til at logge ind som en bruger og sЕ bruge 'su'.\n"
-" I det hele taget, regn ikke med at bruge din maskine til andet\n"
-" end en server. Du er advaret.\n"
-"\n"
-" - PrФcis RAM-mФngde, hvis pЕkrФvet: desvФrre er der i dagens\n"
-" pc-verden ingen standardmetode til at spЬrge BIOS-en om hvor \n"
-" RAM der er i en maskine. Som fЬlge deraf kan Linux i nogle\n"
-" tilfФlde ikke korrekt detektere hele den installerede mФngde\n"
-" RAM. Hvis dette er tilfФldet kan du her angive den korrekte\n"
-" mФngde. BemФrk at en forskel pЕ 2 eller 4 Mb er ganske normalt.\n"
-"\n"
-" - Automatisk mount af flytbare medier: Hvis du foretrФkker ikke at\n"
-" skulle montere flytbare medier (cdrom, disketter, zip, ...) manuelt ved "
-"at skrive\n"
-" \"mount\" og \"unmount\", kan du vФlge denne mulighed.\n"
-"\n"
-"\n"
-" - AktivИr numerisk lЕs pЕ tastaturet ved opstart: Hvis du Ьnsker at "
-"numlock skal vФre\n"
-" aktiveret efter opstart, skal du vФlge denne mulighed (BemФrk: numlock\n"
-" kan dog stadig mЕske ikke fungere nЕr du starter X)."
-
-#: ../../help.pm_.c:428
+"* Benyt harddisk optimeringer: Denne indstilling kan forЬge hastigheden for "
+"operationer pЕ harddisken, men den bЬr \n"
+" kun benyttes af erfarne brugere: nogle fejlbehФftede chipsФt kan ЬdelФgge "
+"dine data, sЕ pas pЕ. BemФrk at \n"
+" kernen har en indbygget sortliste pЕ drev og chipsФt, men hvis du vil "
+"undgЕ kedelige overraskelser, sЕ undlad at \n"
+" bruge denne valgmulighed.\n"
+"\n"
+"\n"
+"* VФlg sikkerhedniveau: Du kan vФlge et sikkerhedsniveau for dit system. LФs "
+"venligst i manualen for en fyldestgЬrende \n"
+" forklaring. I korthed: hvis du ikke ved noget, behold standarden.\n"
+"\n"
+"* PrФcis RAM-mФngde, hvis pЕkrФvet: desvФrre er der i dagens pc-verden ingen "
+"standardmetode til at spЬrge BIOS'en om\n"
+" hvor meget RAM der er i en maskine. Som fЬlge deraf kan GNU/Linux i nogle "
+"tilfФlde ikke korrekt detektere hele den\n"
+" installerede mФngde RAM. Hvis dette er tilfФldet kan du her angive den "
+"korrekte mФngde. BemФrk at en forskel pЕ 2 eller\n"
+" 4 Mb er ganske normalt.\n"
+"\n"
+"\n"
+"* Automatisk montering af flytbare medier: Hvis du foretrФkker ikke at "
+"skulle montere flytbare medier (cdrom,\n"
+" disketter, zip) manuelt ved at skrive \"mount\" og \"unmount\", sЕ vФlg "
+"denne mulighed.\n"
+"\n"
+"\n"
+"* AktivИr numerisk lЕs pЕ tastaturet ved opstart: Hvis du Ьnsker at NumLock "
+"skal vФre aktiveret efter opstart,\n"
+" skal du vФlge denne mulighed BemФrk venligst at man ikke bЬr benytte denne "
+"indstilling pЕ bФrbare, og at\n"
+" det er muligt at NumLock mЕske ikke fungerer, nЕr du starter X)."
+
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2185,96 +3213,118 @@ msgstr ""
"Hvis du Ьnsker at starte et andet eksisterende operativsystem, bedes du\n"
"lФse de ekstra instruktioner."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "VФlg sprog"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "VФlg installations-metode"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Harddisk bestemmelse"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
-msgstr "Konfigurer mus"
+msgstr "KonfigurИr mus"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "VФlg tastatur"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Diverse"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "VФlg filsystemer"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "FormatИr partitioner"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "VФlg pakker til installation"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "InstallИr system"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
-msgstr "Konfigurer netvФrk"
-
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kryptering"
+msgstr "KonfigurИr netvФrk"
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "KonfigurИr tidszone"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
-msgstr "Konfigurer service"
+msgstr "KonfigurИr tjenester"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
-msgstr "Konfigurer printer"
+msgstr "KonfigurИr printer"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "SФt rod-adgangskode"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "TilfЬj bruger"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Opret opstartsdiskette"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "InstallИr opstarter"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "KonfigurИr X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Autoinstallerings-diskette"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Afslut installation"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Fejl ved lФsning af fil $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Test venligst musen"
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "For at aktivere musen,"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "FLYT Pе HJULET!"
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Noget maskinel pЕ din maskine skal bruge ''proprietФre'' drivere for at "
+"virke.\n"
+"Du kan finde information om dem hos: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2282,237 +3332,251 @@ msgid ""
msgstr ""
"Du skal have en rod partition. For at fЕ dette, lav en ny partition (eller "
"vФlg en eksisterende).\n"
-"VФlg sЕ kommandoen \"Mount sti\" og sФt den til `/'"
+"VФlg sЕ kommandoen \"Monterings-sti\" og sФt den til `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Jeg kan ikke lФse din partitionstabel, den er for Ьdelagt :(\n"
-"Jeg vil forsЬge mig med at slette de beskadigede partitioner"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Du skal tildele en partition til Swap"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake kunne ikke lФse partitionstabellen korrekt.\n"
-"FortsФt pЕ eget ansvar!"
+"Du har ingen Swap partition\n"
+"\n"
+"FortsФt alligevel?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "SЬger efter rod-partition"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Brug fri plads"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Information"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Dette er ikke en rod-partition - vФlg venligst en anden."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Brug eksisterende partition"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Kunne ikke finde nogen rod-partition"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Der er ingen eksisterende partition der kan bruges"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan ikke benytte broadcast, uden et NIS-domФne"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Brug Windows partitionen til Loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Fejl ved lФsning af fil $f"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Hvilken partition vil du benytte som Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Der opstod en fejl, men jeg ved ikke hvordan den kan hЕndteres pЕ en\n"
-"pФn mЕde.\n"
-"FortsФt pЕ eget ansvar!"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "VФlg stЬrrelserne"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "DuplikИr monterings-sti %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Rod-partitions stЬrrelse i Mb: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
-"Enten er dit cdrom-drev eller din cdrom fejlbehФftet.\n"
-"Tjek cdrom-en pЕ en fФrdiginstalleret maskine ved brug af \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap-partitions stЬrrelse i Mb: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Velkommen til %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Brug den frie plads pЕ Windows partitionen"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Intet tilgФngeligt diskettedrev"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Hvilken partition Ьnsker du at Фndre stЬrrelse pЕ?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Udregner Windows filsystemet grФnser"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "GЕr til `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"Programmet til at Фndre stЬrrelse pЕ FAT kan ikke behandle din partition, \n"
+"den fЬlgende fejl opstod: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Du skal tildele en partition til swap"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "Din Windows partition er for fragmenteret, kЬr venligst 'defrag' fЬrst"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Du har ingen swap partition\n"
+"ADVARSEL!\n"
"\n"
-"FortsФt alligevel?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "VФlg den samlede stЬrrelse som din installation mЕ fylde"
+"DrakX vil nu Фndre stЬrrelsen pЕ din Windows-partition. Udvis\n"
+"forsigtighed: denne operation er farlig. Hvis du ikke allerede har gjort "
+"det, bЬr du fЬrst gЕ ud af denne installation, \n"
+"kЬre scandisk under Windows (og eventuelt defrag) og sЕ genstarte\n"
+"installationen. Du bЬr ogsЕ tage en sikkerhedskopi af dine data.\n"
+"Tryk pЕ Ok, hvis du er helt sikker."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Total stЬrrelse: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Hvilken stЬrrelse Ьnsker du at at beholde windows pЕ?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Version: %s\n"
+msgid "partition %s"
+msgstr "partition %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "StЬrrelse: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT stЬrrelsesФndring mislykkedes: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "VФlg pakker som skal installeres"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Der er ingen FAT-partitioner at Фndre stЬrrelse pЕ, eller bruge som loopback "
+"(eller ikke nok plads tilbage)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Slet hele disken"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "InstallИr"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Fjern Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Installerer"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Du har mere end et diskdrev, hvilken Ьnsker du at installere Linux pЕ?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Vent venligst, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Alle eksisterende partitioner og deres data vil gЕ tabt pЕ drev %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Resterende tid "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Ekspert modus"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Total tid "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Brug diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Forbereder installationen"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Brug fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Installerer pakke %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Du kan nu partitionere %s.\n"
+"NЕr du er fФrdig, sЕ husk at gemme med 'w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "FortsФt alligevel?"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Du har ikke nok fri plads pЕ din Windows-partition"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "Kan ikke finde plads til installering"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Benyt eksisterende konfiguration for X11?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX partitionerings-troldmanden fandt de fЬlgende lЬsninger:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Venligst vФlg en af de fЬlgende installations-mЕder"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partitionering mislykkedes: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Du har ikke nogen Windows-partitioner!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Bringer netvФrket op"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Du har ikke nok plads til Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Lukker netvФrket ned"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"ADVARSEL!\n"
-"\n"
-"DrakX er nu nЬdt til at Фndre stЬrrelsen pЕ din Windows-partition. Udvis\n"
-"forsigtighed: denne operation er farlig. Hvis du ikke allerede har gjort "
-"det,\n"
-"bЬr du fЬrst kЬre scandisk (og eventuelt defrag) pЕ denne partition og tage\n"
-"en sikkerhedskopi af dine data.\n"
-"Tryk pЕ Ok, hvis du er helt sikker."
+"Der opstod en fejl, men jeg ved ikke hvordan den kan hЕndteres pЕ en\n"
+"pФn mЕde.\n"
+"FortsФt pЕ eget ansvar!"
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automatisk stЬrrelsesФndring mislykkedes"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "DuplikИr monterings-sti %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Hvilken partition vil du benytte som Linux2Win"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Nogle vigtige pakker blev ikke installeret rigtigt.\n"
+"Enten er dit cdrom-drev eller din cdrom fejlbehФftet.\n"
+"Tjek cdrom'en pЕ en fФrdiginstalleret maskine ved brug af \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "VФlg stЬrrelserne"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Velkommen til %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Rod-partitions stЬrrelse i Mb: "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Intet tilgФngeligt diskettedrev"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitions stЬrrelse i Mb: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "GЕr til trin `%s'\n"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Dit system har kun fЕ resurser. Du kan fЕ problemer med at installere\n"
+"Linux-Mandrake. Hvis dette sker, kan du prЬve en tekst-baseret installation "
+"istedet.\n"
+"Dette gЬres ved at trykke 'F1' ved opstart fra cdrommen, og sЕ skrive 'text'."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "VФlg venligst en af de fЬlgende installations-mЕder"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Den totale stЬrrelse af de grupper du har valg er cirka %d Mb.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2526,7 +3590,7 @@ msgstr ""
"En lav procentdel vil kun installere de vigtigste pakker;\n"
"en procentdel pЕ 100%% vil installere alle valgte pakker."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2542,59 +3606,101 @@ msgstr ""
"En lav procentdel vil kun installere de vigtigste pakker;\n"
"en procentdel pЕ %d%% vil installere sЕ mange pakker som muligt."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr ""
-"Du har mulighed for at vФlge dem mere prФcist i nФste installationsskridt"
+"Du har mulighed for at vФlge dem mere prФcist i nФste installationstrin"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Procentandel pakker til installation"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "VФlg pakker som skal installeres"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "InstallИr"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automatiske afhФngigheder"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Udvid trФ"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Sammenfold trФ"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "DЕrlig pakke"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Version: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "StЬrrelse: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
-msgstr "Vigtigheds: %s\n"
+msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total stЬrrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Du kan ikke vФlge denne pakke, da der ikke er nok plads tilbage til at "
+"installere den"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Den fЬlgende pakke vil blive installeret"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "De fЬlgende pakker vil blive afinstalleret"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Du kan ikke vФlge/fravФlge denne pakke"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en nЬdvendig pakke, den kan ikke vФlges fra"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravФlge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2602,46 +3708,89 @@ msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker pЕ at du vil fravФlge den?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
-msgstr "Du kan ikke fravФlge denne pakke. Den skal upgraderes"
+msgstr "Du kan ikke fravФlge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Du kan ikke vФlge denne pakke, da der ikke er nok plads tilbage til at "
-"installere det"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "De fЬlgende pakker vil blive installerede/afinstallerede"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Du kan ikke vФlge/fravФlge denne pakke"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Beregner"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Vent venligst, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Resterende tid "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Total tid "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "AnnullИr"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Forbereder installationen"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U Mb"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Installerer pakke %s"
+
+# Mangler
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "AcceptИr"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2654,200 +3803,404 @@ msgstr ""
"\n"
"IndsФt cdrom'en med navnet \"%s\" i dit cdrom-drev og tryk pЕ Ok, nЕr det "
"gjort\n"
-"Hvis du ikke har den sЕ tryk pЕ Annuller, sЕ undgЕs installation fra denne cd"
+"Hvis du ikke har den sЕ tryk pЕ AnnullИr, sЕ undgЕs installation fra denne cd"
+
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "NФgt"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "FortsФt alligevel?"
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Der er opstЕet en fejl"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
-msgstr "Venligst vФlg det sprog, du vil bruge."
-
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+msgstr "VФlg venligst det sprog, du vil bruge."
+
+# Mangler
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr "Licensaftale"
+
+# Mangler
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
-msgstr "Venligst vФlg tastaturlayout."
+msgstr "VФlg venligst tastaturlayout."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Du kan vФlge et andet sprog der vil vФre tilgФngelig efter installationen"
+msgstr "Du kan vФlge andre sprog der vil vФre tilgФngelig efter installationen"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Rod-partition"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Alt"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Installationsmetode"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Hvilken installations-klasse Ьnsker du?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "InstallИr/OpgradИr"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
+msgstr "InstallИr/OpdatИr"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "Er dette en nyinstallation eller en opgradering?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
+msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatiseret"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Anbefalet"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Tilpasset"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Er du sikker pЕ at du er en ekspert? \n"
-"Det er ikke for sjov, du fЕr adgang til kraftige men farlige ting her."
+"Du fЕr adgang til stФrke men farlige ting her.\n"
+"Du vil blive givet spЬrgsmЕl som: ``Brug skyggefil for adgangskoder?'',\n"
+"er du klar til at svare pЕ sЕdanne spЬrgsmЕl?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "OpgradИr"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr "Opdatering"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Arbejdsstation"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Udvikling"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "Hvilken brug vil du gЬre af dit system?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Hvad skal dit system bruges til?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
-msgstr "Venligst vФlg muse-type."
+msgstr "VФlg venligst muse-type."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Venligst vФlg hvilken seriel port din mus er forbundet til."
+msgstr "VФlg venligst hvilken seriel port din mus er forbundet til."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:184
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "Skanner partitioner for at finde monteringspunkter"
+
+#: ../../install_steps_interactive.pm_.c:299
+msgid "Choose the mount points"
+msgstr "VФlg monterings-stierne"
+
+#: ../../install_steps_interactive.pm_.c:316
#, c-format
-msgid "(%dMB)"
-msgstr "(%d Mb)"
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Jeg kan ikke lФse din partitionstabel, den er for Ьdelagt for mig :(\n"
+"Jeg kan forsЬge fortsat at udblanke dЕrlige partitioner, ALLE DATA vil gЕ "
+"tabt\n"
+"Den anden mulighed er at forbyde DrakX at Фndre partitionstabellen.\n"
+"(fejlen er %s)\n"
+"\n"
+"Er du indforstЕet med at ЬdelФgge alle partitionerne?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake kunne ikke lФse partitionstabellen korrekt.\n"
+"FortsФt pЕ eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Venligst vФlg hvilken partition du vil benytte som rod-partition"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:198
-msgid "Choose the mount points"
-msgstr "VФlg mount stierne"
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere Фndringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "VФlg partitioner der skal formatteres"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
-msgstr "Led efter beskadiget blokke"
+msgstr "Led efter beskadigede blokke"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
-msgstr "FormatИrer partitioner"
+msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
-msgstr "Laver og formatere filen %s"
+msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfЬre installationen, tilfЬj mere"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Leder efter tilgФngelige pakker"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Leder efter pakker som skal opgraderes"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-"Dit system har ikke nok plads tilbage til en installation eller opgradering"
+"Dit system har ikke nok plads tilbage til en installation eller opgradering "
+"(%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "FФrdig (%dMb)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimum (%d Mb)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Anbefalet (%d Mb)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "VФlg den stЬrrelse som du vil installere"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Valg af pakke-gruppe"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
-msgstr "Individuel pakke-valg"
+msgstr "Individuelt pakke-valg"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-"Hvis du har alle cd-erne i listen nedenunder, klik Ok.\n"
-"Hvis du ikke har nogen af disse cd-er, klik Fortryd.\n"
-"Hvis kun nogen cd-er mangler, fravФlg dem, og klik sЕ Ok."
+"Hvis du har alle cd'erne i listen nedenunder, klik Ok.\n"
+"Hvis du ikke har nogen af disse cd'er, klik AnnullИr.\n"
+"Hvis kun nogen cd'er mangler, fravФlg dem, og klik sЕ Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2855,172 +4208,11 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Behold nuvФrende IP-konfiguration"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "OmkonfigurИr netvФrk nu"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "SФt ikke netvФrk op"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "KonfigurИr netvФrk"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Lokalnet er allerede konfigureret. ьnsker du at:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "ьnsker du at konfigurere LAN lokalnetvФrk til dit system"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "kunne ikke finde noget netkort"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modem-konfiguration"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "ьnsker du at konfigurere opkaldt netvФrk med modem til dit system?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurerer netvФrksenheden %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
-"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatisk IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-adresse:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmaske:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresse skal have formatet 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Konfigurerer netvФrk"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Indtast domФnenavn, hostnavn og IP adressen for evt. ekstra navne-servere.\n"
-"Dit hostnavn skal vФre et fuldt-kvalificeret hostnavn inklusive domФne,\n"
-"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
-"sЕ lad navne-server-felterne vФre blanke."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS-server"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Gateway-enhed:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "VФrtnavn:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "ForsЬg at finde et modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Venligst angiv hvilken seriel port dit modem er forbundet til."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Opkaldsindstillinger"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Navn pЕ forbindelsen"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefonnummer"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Logind-id"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Identifikation"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Skript-baseret"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminal-baseret"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "DomФnenavn"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "FЬrste DNS-server"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Anden DNS server"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3062,114 +4254,119 @@ msgstr ""
"\n"
"ADVARSEL:\n"
"\n"
-"Grundet forskellige krav til software der bruger kryptering og pЕtvunget\n"
-"af forskellige lokale lovomrЕder, bЬr kunder og/eller slut brugere af\n"
-"dette software sikre sig at lokale love fra dit/jeres lokal omrЕde\n"
-"tillader dig/jer at nedlФse, oplagre og/eller bruge dette software.\n"
+"Grundet forskellige krav til programmel der bruger kryptering, og pЕtvunget\n"
+"af forskellige lokale lovomrЕder, bЬr kunder og/eller slutbrugere af\n"
+"dette programmel sikre sig at lokale love fra dit/jeres lokalomrЕde\n"
+"tillader dig/jer at nedlФse, gemme og/eller bruge dette programmel.\n"
"\n"
-"Der ud over skal kunder og/eller slut brugere vФre opmФrksom ikke at bryde\n"
-"lokal love fra dit/jeres lokal omrЕde. Skulle en kunder og/eller slut\n"
-"brugere ikke respektere det lokal omrЕdes love, vil han/de blive udsat\n"
+"Derudover skal kunder og/eller slutbrugere vФre opmФrksomme pЕ ikke at "
+"bryde\n"
+"lokale love fra dit/jeres lokalomrЕde. Skulle en kunde og/eller slutbruger\n"
+"ikke respektere det lokale omrЕdes love, vil han/de blive udsat\n"
"for seriЬse sanktioner.\n"
"\n"
"Under ingen omstФndigheder kan Mandrakesoft eller dens producenter\n"
-"og/eller leverandЬrer holdes ansvarlig for speciale, indirekte eller\n"
-"tilfФldig skade (includeret, men ikke begrФnset til tab af overskud,\n"
-"forretnings afbrydelser, tab af kommerciel data og andre pekuniФre tab,\n"
-"eventuelle risikoer og erstatninger der skal betales i overensstemmelse\n"
-"med retsal beslutning) som medfЬlge af brug, besiddelse eller nedlФsning af\n"
-"dette software, som kunder og/eller slut brugere kunne fЕ adgang til efter\n"
-"at have accepteret den aftale.\n"
+"og/eller leverandЬrer holdes ansvarlig for speciel, indirekte eller\n"
+"tilfФldig skade (inkluderet, men ikke begrФnset til tab af overskud,\n"
+"forretningsafbrydelser, tab af kommerciel data og andre pekuniФre tab,\n"
+"eventuelle risici og erstatninger der skal betales i overensstemmelse\n"
+"med retlig beslutning) som medfЬlge af brug, besiddelse eller nedlФsning af\n"
+"dette programmel, som kunder og/eller slutbrugere kunne fЕ adgang til efter\n"
+"at have accepteret denne aftale.\n"
"\n"
"\n"
-"For spЬrgsmЕl til denne aftale, vФr venlig at kontakte \n"
+"For spЬrgsmЕl om denne aftale, vФr venlig at kontakte \n"
"Mandrakesoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "VФlg den server, hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Kontakter serveren for at hente listen af tilgФngelige pakker"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
-msgstr "Venligst vФlg pakkerne som du vil installere."
+msgstr "VФlg venligst pakkerne som du vil installere."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "I hvilken tidszone befinder du dig?"
+msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
-msgstr "Er computerens interne ur sat til GMT?"
+msgstr "Er maskinens interne ur sat til GMT?"
+
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Hvilket printersystem Ьnsker du at bruge?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Benyt skygge-fil"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Benyt MD5-adgangskoder"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Benyt NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "gule sider"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Dette kodeord er for nemt at gФtte(det skal min. vФre pЕ %d tegn)"
+msgstr "Dette kodeord er for nemt at gФtte (det skal mindst vФre pЕ %d tegn)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS-identifikation"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS-domФne"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "AcceptИr bruger"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "TilfЬj bruger"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfЬjet %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3179,60 +4376,90 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Brugernavn"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Skal"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikon"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
-msgstr "Adgangskoden for for simpel"
+msgstr "Adgangskoden er for simpel"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Indtast venligst et brugernavn"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet mЕ kun indeholde smЕ bogstaver, tal, `-' og `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"En tilpasset opstartsdiskette lader dig starte Linux systemet op uden at "
+"vФre\n"
+"afhФngig af den normale opstarter. Det kan vФre nyttigt, hvis du ikke vil\n"
+"installere SILO pЕ dit system - eller hvis et andet operativsystem fjerner "
+"SILO,\n"
+"eller hvis SILO ikke virker med dit maskinel. En tilpasset opstartsdiskette "
+"kan\n"
+"ogsЕ bruges sammen med Mandrakes `rescue image', hvilket gЬr det meget\n"
+"nemmere at reparere systemet i tilfФlde af systemnedbrud.\n"
+"\n"
+"Hvis du Ьnsker at lave en opstartsdiskette til dit system, indsФt en\n"
+"diskette i dit fЬrste diskettedrev og tryk 'Ok'."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "FЬrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3257,201 +4484,166 @@ msgstr ""
"\n"
"Vil du lave en opstartsdiskette til dit system?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Der er desvФrre ikke noget tilgФngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "VФlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "IndsФt en tom diskette i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Oprette opstartsdiskette"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Installationen af LILO mislykkedes. FЬlgende fejl opstod:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "ьnsker du at anvende SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO hovedindstillinger"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Her er de fЬlgende boot muligheder i SILO.\n"
-"Du kan tilfЬje flere eller Фndre de eksisterende."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partition"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Denne mФrkat er allerede i brug"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Installationen af SILO mislykkedes. FЬlgende fejl opstod:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Forbereder opstarter"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
-msgstr "Vil du bruge \"aboot\"?"
+msgstr "ьnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Fejl ved installation af aboot, \n"
-"prЬv at forcИr installation selv hvis dette ЬdelФgger den fЬrste partition?"
+"forsЬg at gennemtvinge installation selv om dette kan ЬdelФgge den fЬrste "
+"partition?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Konfiguration af proxyer"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Installation af opstarter mislykkedes. Den fЬlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP-proxyserver"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP-proxyserver"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy skal vФre http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy skal vФre ftp://..."
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Ringe"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Lav"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Mellem"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "HЬj"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Diverse spЬrgsmЕl"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(kan medfЬre ЬdelФggelse af data)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Benyt harddisk optimeringer?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "VФlg sikkerhedniveau"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "PrФcis RAM-mФngde, hvis pЕkrФvet (fandt %d Mb)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automatisk montering af flytbare medier"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "AktivИr multiprofiler"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "AktivИr numerisk lЕs ved opstart"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Angiv RAM-stЬrrelse i Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Kan ikke bruge supermount under hЬjt sikkerhedsniveau"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX vil lave konfigurerings-filer for bЕde XFree 3.3 og XFree 4.0.\n"
-"Som standard bruges 3.3-serveren fordi den virker pЕ flere grafikkort.\n"
-"\n"
-"ьnsker du at prЬve XFree 4.0?"
+"bemФrk: I DETTE SIKKERHEDSNIVEAU ER ROOT LOGIN IKKE TILLADT!\n"
+"Hvis du Ьnsker at blive root, skal du logge ind som en bruger og sЕ bruge\n"
+"'su'. Mere generelt, forvent ikke at bruge din maskine til andet end en "
+"server\n"
+"Du er hermed advaret."
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "ForsЬg at finde PCI-enheder?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"VФr forsigtig, NumLock aktiveret forЕrsager at en masse tasteanslag\n"
+"giver cifre i stedet for normale bogstaver (fx tastning af 'p' giver '6')"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Benyt eksisterende konfiguration for X11?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"ьnsker du at lave en auto-installations diskette til linux genskabelse?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "IndsФt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Nogle skridt er ikke fФrdiggjort.\n"
+"Nogen dele af installationen er ikke fФrdig\n"
"\n"
-"ьnsker du virkelig at afslutte nu?"
+"Er du sikker pЕ du Ьnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1077
+# Mangler
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3463,163 +4655,19 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Tillykke, installationen er komplet.\n"
-"Fjern disketten fra diskettedrevet, og tryk <enter> for at genstarte.\n"
-"\n"
-"Information om rettelser til denne udgave af Linux Mandrake findes pЕ\n"
-"`Errata'-siden pЕ http://www.linux-mandrake.com.\n"
-"\n"
-"Information om hvordan man konfigurerer systemet findes i `Post Install'\n"
-"kapitlet i \"Official Linux Mandrake Users's Guide\"."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Lukker ned"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "InstallИrer driver for %s kort %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Hvilken %s driver skal jeg prЬve?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"I nogle tilfФlde krФver %s driveren ekstra parametre for at fungere "
-"korrekt,\n"
-"omend den normalt klarer sig fint uden. Vil du angive ekstra parametre til\n"
-"driveren, eller lade den sЬge pЕ din maskine efter den information den\n"
-"behЬver? Det kan ske, at sЬgningen fЕr din computer til at gЕ i stЕ, men\n"
-"det vil ikke beskadige noget."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Automatisk sЬgning"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Angiv parametre"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Du kan nu angive dens parametre til modul %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Du kan nu angive dens parametre til modul %s.\n"
-"Du skal benytte formatet ``navn=vФrdi navn2=vФrdi2 ...''.\n"
-"For eksempel, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Modul-parametre:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"IndlФsning af modul %s mislykkedes.\n"
-"Vil du forsЬge igen med andre parametre?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "ForsЬg at finde PCMCIA-kort?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurerer PCMCIA-kort..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "ForsЬg at finde %s-enheder?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fandt %s %s interfaces"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Har du flere?"
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Har du nogle %s interfaces?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nej"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Se hardware info"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Opstarter netvФrket"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Lukker netvФrket ned"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Installation %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> mellem elementer | <Space> vФlger | <F12> nФste skФrm "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Du kan nu partitionere din %s disk\n"
-"NЕr du er fФrdig, sЕ husk at gemme med 'w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Vent venligst"
@@ -3629,7 +4677,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Flertydighed (%s), vФr mere prФcis\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "DЕrligt valg, prЬv igen\n"
@@ -3643,475 +4691,968 @@ msgstr " ? (standard %s) "
msgid "Your choice? (default %s) "
msgstr "Dit valg? (standard %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Dit valg? (standard %s skriv `none' for ingenting) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tjekkisk"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
-msgstr "Armensk (fonИtisk)"
+msgstr "Armensk (fonetisk)"
+
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "Azerbaidiansk (kyrillisk)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgarsk"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
-msgstr "Tysk (ingen dЬde knapper)"
+msgstr "Tysk (ingen dЬde taster)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norsk)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
-msgstr "Estonsk"
+msgstr "Estisk"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GrФsk"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
-msgstr "Israelsk (FonИtisk)"
+msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iransk"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japansk 106 taster"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrФkke\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Litauisk \"fonИtisk\" QWERTY"
+msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadisk (QuИbec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovakisk"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamesisk \"talrФkke\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslavisk (latin layout)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '\206' is 'Е' (aring) in cp437 encoding
-# '\202' is 'И' (eacute) in cp437 encoding
-# '\221' is 'Ф' (ae) in cp437 encoding
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun-mus"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Standard"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking-mus"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Standard"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Hjul"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seriel"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Standard 2-knaps mus"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Standard 3-knaps mus"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Serien (seriel)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Serien"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech mus (seriel, gammel C7 type)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "Busmus"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 knapper"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 knapper"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ingenting"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Ingen mus"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "NФste ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Er dette korrekt?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internet-konfiguration"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "ьnsker du at forsЬge at skabe forbindelse til internettet nu?"
+
+#: ../../netconnect.pm_.c:101
+msgid "Testing your connection..."
+msgstr "Tester din forbindelse..."
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Du er ikke forbundet til internettet nu."
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"Det lader ikke til at dit system har forbindelse til internettet.\n"
+"PrЬv at omkonfigurere din forbindelse."
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN konfiguration"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"VФlg din udbyder.\n"
+" Hvis de ikke er i listen, vФlg Ikke listet"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Forbindelses-konfiguration"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Udfyld eller markИr venligst feltet nedenunder"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Kort IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Kort mem (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Kort IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Kort IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Kort IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Dit personlige telefonnummer"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Navn pЕ udbyder (f.eks. tilbyder.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Udbyders telefonnummer"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Udbyder DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Udbyder DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "OpringningsmЕde"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Konto login (brugernavn)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Kodeord for konto"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "BekrФft kodeord"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Resten af verden"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Resten af verden - ingen D-kanal (lejet linje)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Hvilken protokol Ьnsker du at bruge?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Det ved jeg ikke"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Hvad slags kort har du?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "FortsФt"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Afbryd"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
"\n"
+"Hvis du har et ISA kort burde vФrdiene i nФste billede vФre rigtige.\n"
+"\n"
+"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Hvilket er dit ISDN-kort?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Jeg har fundet et ISDN-kort:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. VФlg "
+"venligst et PCI-kort i nФste skФrmbillede."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Ingen ISDN PCI-kort fundet. VФlg venligst Иt i nФste skФrmbillede."
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Der blev ikke fundet nogen ethernet netvФrksadapter pЕ dit system.\n"
+"Kan ikke sФtte denne forbindelsetype op."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "VФlg netvФrksgrФnsesnit"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"VФlg venligst hvilken netvФrksadapter du Ьnsker at bruge til at lave "
+"forbindelse til internettet med."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "NetvФrksgrФnsesnit"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-"Velkommen til LILO - operativsystem v▒lgeren!\n"
"\n"
-"For at f├ en liste med valgmulig, tast <TAB>.\n"
+"Er du enig?"
+
+#: ../../netconnect.pm_.c:352
+msgid "I'm about to restart the network device:\n"
+msgstr "Jeg er ved at genstarte netvФrksenheden:\n"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL Konfiguration"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "ьnsker du at starte din forbindelse ved opstart?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "ForsЬg at finde et modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Angiv venligst hvilken seriel port dit modem er forbundet til."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Opkaldsindstillinger"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Navn pЕ forbindelsen"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefonnummer"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Login id"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Identifikation"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Skript-baseret"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminal-baseret"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "DomФnenavn"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "FЬrste DNS-server"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Anden DNS server"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
"\n"
-"For at starte ┌n af dem skal du skrive navnet og tast <ENTER>. Du kan ogs├\n"
-"vente %d sekunder for at starte det system du har valgt som standard.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
"\n"
+"Du kan lave forbindelse til internettet eller omkonfigurere din forbindelse."
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Velkommen til GRUB styresystemsvФ▒lgeren!"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Du kan genkonfigurere din forbindelse"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Brug tasterne %c og %c til at vФlge hvilken mulighed er fremhФvet."
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "Du er ikke forbundet til internettet nu."
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Tryk 'enter' for at starte det valgte OS, 'e' for at redigere"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Du kan lukke forbindelsen til internettet eller genkonfigurere din "
+"forbindelse."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "kommandoerne fЬr opstart, eller 'c' for en kommandolinie."
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "Du har forbindelse til internettet nu."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Den fremhФvede mulighed vil blive startet automatisk om %d sekunder."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "Lav forbindelse til internettet"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "Ikke nok plads i /boot"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "Luk forbindelse til internettet"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Skrivebord"
+#: ../../netconnect.pm_.c:594
+msgid "Configure network connection (LAN or Internet)"
+msgstr "KonfigurИr netvФrks forbindelse (LAN eller internet)"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start menu"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internetforbindelse & -konfiguration"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun-mus"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+"Jeg er ved at genstarte netvФrksenheden @netc->{NET_DEVICE}. Er du enig?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB-mus"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
+msgstr "KonfigurИr en normal modem forbindelse"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB-mus (2 knapper)"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
+msgstr "KonfigurИr en ISDN forbindelse"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB-mus (3+ knapper)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Internt ISDN-kort"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB-mus"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "Eksternt ISDN modem"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB-mus (2 knapper)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Lav forbindelse til internettet"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB-mus (Mere end 3 knapper)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Hvad slags type er din ISDN-forbindelse?"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Standard-mus (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "KonfigurИr en DSL (eller ADSL) forbindelse"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Frankrig"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Standard 3-knaps mus (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Andre lande"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "I hvilket land er du ?"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking-mus (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Hvis dit ADSL modem er en Alcatel, vФlg Alcatel. Ellers ECI."
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "brug pppoe"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "brug ikke pppoe"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Den mest almindelige mЕde at forbinde med ADSL er DHCP + pppoe.\n"
+"Men der findes nogen forbindelser der kun bruger DHCP. Hvis du ikke ved "
+"noget, vФlg 'brug pppoe'"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
+msgstr "KonfigurИr en kabel forbindelse"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI bus.mus"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Hvilken DHCP klient Ьnsker du at bruge?\n"
+"Standard er dhcpd"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft bus-mus"
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "DeaktivИr internet forbindelse"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech bus-mus"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "KonfigurИr lokalnetvФrk"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB-mus"
+#: ../../netconnect.pm_.c:815
+msgid "Network configuration"
+msgstr "NetvФrks konfiguration"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB-mus (3 knapper eller mere)"
+#: ../../netconnect.pm_.c:816
+msgid "Do you want to restart the network"
+msgstr "ьnsker du at genstarte netvФrket"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Ingen mus"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "DeaktivИr netvФrk"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev. 21A eller hЬjere (seriel)"
+#: ../../netconnect.pm_.c:834
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "KonfigurИr internettet forbindelse eller lokalnetvФrk"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Serien (seriel)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"Lokalnet er allerede konfigureret.\n"
+"ьnsker du at:"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seriel)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Hvordan vil du lave forbindelse til internettet?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seriel)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "KonfigurИr netvФrk"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seriel)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Nu da din internetforbindelse er konfigureret,\n"
+"kan din maskine blive konfigureret til at dele sin internetforbindelse.\n"
+"Info: Du skal bruge en ekstra netvФrks adapter for at sФtte et lokalnet op "
+"(LAN).\n"
+"\n"
+"ьnsker du at opsФtte deling af internetforbindelsen?\n"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seriel)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "kunne ikke finde noget netkort"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Serien (seriel)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Konfigurerer netvФrk"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seriel)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Indtast venligst vФrtsnavn hvis du kender det.\n"
+"Nogle DHCP-servere krФver vФrtsnavnet for at fungere.\n"
+"Dit vФrtsnavn bЬr vФre et fuldt kvalificeret vФrtsnavn,\n"
+"fx 'minpc.mitfirma.dk'."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mus (seriel, gammel C7 type)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "VФrtsnavn"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seriel)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"ADVARSEL: Denne enhed er allerede blevet konfigureret til at lave "
+"forbindelse til internettet.\n"
+"Ved kun at trykke pЕ OK beholder du den nuvФrende konfiguration.\n"
+"фndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Standard-mus (seriel)"
+#: ../../network.pm_.c:302
+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 ""
+"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
+"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft kompatibel (seriel)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfigurerer netvФrksenheden %s"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Standard 3-knaps mus (seriel)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatisk IP"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seriel)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP-adresse"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Er dette korrekt?"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Netmaske"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Indtast domФnenavn, vФrtsnavn og IP adressen for evt. ekstra navne-servere.\n"
+"Dit vФrtsnavn skal vФre et fuldt kvalificeret vФrtsnavn inklusive domФne,\n"
+"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
+"sЕ lad navne-server-felterne vФre blanke."
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS server"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Gateway enhed"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Konfiguration af proxy"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP-proxyserver"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP-proxyserver"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy skal vФre http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy skal vФre ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Udvidet partition ikke understЬttet pЕ denne platform"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-"Du har plads tilovers i din partitionstabel, som jeg kan ikke udnytte det.\n"
+"Du har plads tilovers i din partitionstabel, men jeg kan ikke udnytte det.\n"
"Den eneste lЬsning er at flytte dine primФre partitioner, sЕledes at\n"
-"\"hullet\" bliver placeret ved siden af en `extended' partition."
+"\"hullet\" bliver placeret ved siden af de `extended' partitioner."
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lФsning af filen %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Genskabning fra fil %s mislykkedes: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Fejl i sikkerhedskopien"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
@@ -4122,7 +5663,7 @@ msgstr "obligatorisk"
#: ../../pkgs.pm_.c:21
msgid "must have"
-msgstr "mЕ have"
+msgstr "skal have"
#: ../../pkgs.pm_.c:22
msgid "important"
@@ -4145,45 +5686,54 @@ msgstr "interessant"
msgid "maybe"
msgstr "mЕske"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (vigtigt)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (meget rart)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (rart)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Vis mindre"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Vis mere"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Lokal printer"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "NetvФrksprinter"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Fjern printer"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Fjern CUPS server"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Fjern lpd server"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "NetvФrksprinter (sokkel)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Printer-enheds URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
-msgstr "Detekterer enheder..."
+msgstr "Detektere enheder..."
#: ../../printerdrake.pm_.c:19
msgid "Test ports"
@@ -4194,48 +5744,48 @@ msgstr "AfprЬv porte"
msgid "A printer, model \"%s\", has been detected on "
msgstr "En printer, model \"%s\" er blevet fundet pЕ "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Lokal Printer"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-"Hvilken enhed er printeren koblet til \n"
+"Hvilken enhed er printeren forbundet til \n"
"(bemФrk at /dev/lp0 er det samme som LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Printer-enhed"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
-msgstr "Parametre til lpd"
+msgstr "Parametre til fjern lpd"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"For at bruge en lpd printerkЬ pЕ en anden maskine skal du angive navnet\n"
+"For at bruge en lpd printer kЬ pЕ en anden maskine skal du angive navnet\n"
"pЕ den anden maskine og kЬen som jobbet skal lФgges i."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Eksternt maskinnavn"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Eksternt kЬnavn"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4249,27 +5799,27 @@ msgstr ""
"kЬnavnet for printeren, brugernavn, adgangskode og information for\n"
"arbejdsgruppen."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB-servervФrt"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4278,133 +5828,157 @@ msgid ""
msgstr ""
"For at skrive til en NetWare printer skal du angive navnet pЕ NetWare\n"
"printerserveren (bemФrk at dette navn kan vФre forskelligt fra\n"
-"TCP/IP-navnet!) sЕ vel som kЬnavnet for den printer du vil benytte\n"
+"TCP/IP-navnet!) sЕvel som kЬnavnet for den printer du vil benytte\n"
"og et brugernavn samt en adgangskode."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "PrinterkЬ-navn"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Sokkel-printer-parametre"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"For at udskrive til en sokkel-printer skal du oplyse\n"
+"vФrtsnavnet pЕ printeren og eventuelt port-nummeret."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "printer-vФrtsnavn"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "Du kan direkte angive URI-en til at tilgЕ printeren via CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Hvilken slags printer har du?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "ьnsker du at teste udskrift?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Udskriver testside(r)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Testsider er blevet sendt til printerdФmonen.\n"
+"Dette kan tage lidt tid fЬr printeren starter.\n"
+"Udskrivningsstatus:\n"
+"%s\n"
+"\n"
+"Fungerer det korrekt?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Testsider er sendt til printer-dФmonen.\n"
+"Dette kan tage lidt tid fЬr printeren starter.\n"
+"Fungerer det korrekt?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ja, udskriv ASCII-testside"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ja, udskriv PostScript-testside"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ja, udskriv begge testsider"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "KonfigurИr printer"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Hvilken slags printer har du?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "printer-valg"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "PapirstЬrrelse"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Skift side efter opgave?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Valgmuligheder for Uniprint driver"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Valgmuligheder for farvedybde"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Udskriv tekst som PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Omvendt sideorden"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Ordn trappetrins-tekst?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Antal sider per udskriftsside"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "HЬjre/venstre margener i punkter (1/72 tomme)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Top/bund margener i punkter (1/72 tomme)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Ekstra valgmuligheder til GhostScript"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Ekstra valgmuligheder til tekst"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "ьnsker du at teste udskrift?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Udskriver testside(r)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Testsider er blevet sendt til printerdФmonen.\n"
-"Dette kan tage lidt tid fЬr printeren starter.\n"
-"Udskrivningsstatus:\n"
-"%s\n"
-"\n"
-"Fungerer det korrekt?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Testsider er sendt til printer-dФmonen.\n"
-"Dette kan tage lidt tid fЬr printeren starter.\n"
-"Fungerer det korrekt?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Vil du gerne konfigurere en printer?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4412,19 +5986,66 @@ msgstr ""
"Her er fЬlgende printkЬ.\n"
"Du kan tilfЬje flere eller Фndre de eksisterende."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS starter"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "LФser CUPS driver database..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "VФlg printer-forbindelse"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Hvordan er printeren tilsluttet?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "VФlg fjern printer forbindelse"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Med en fjern CUPS server behЬver du ikke at konfigurere\n"
+"nogen printere; printere vil automatisk blive fundet.\n"
+"Hvis du er i tvivl, sЕ vФlg \"Fjern CUPS server\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Fjern kЬ"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Hver printer behЬver et navn (fx lp)\n"
+"Andre parametre sЕsom beskrivelse af printeren eller dens placering\n"
+"kan defineres. Hvilket navn skal bruges for denne printer, og hvordan\n"
+"er printeren forbundet til?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Navn pЕ printer"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Placering"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4435,85 +6056,86 @@ msgstr ""
"navn (ofte lp) og et mellemlagringskatalog knyttet til det. Hvilket\n"
"navn og katalog skal bruges til denne kЬ, og hvordan er kЬen forbundet?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "kЬnavn"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Mellemlagrings-katalog"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Printer-forbindelse"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan ikke tilfЬje en partition til _formatИret_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Kan ikke skrive filen $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid fejlede"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fejlede (mЕske mangler raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron en periodisk kommando planlФgger"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"apmd er brugt til at overvЕge batteri status og skrive log til syslog.\n"
+"apmd bruges til at overvЕge batteristatus og skrive log til syslog.\n"
"Den kan ogsЕ bruges til at lukke maskinen nЕr batteriet er pЕ lav."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-"KЬrer planlagte kommandoer med 'at' kommandoen pЕ tiden specificerede da\n"
-"'at' var kЬrt, og kЬrer batch kommandoer nЕr den gennemsnitlige system \n"
-"belastning er lav nok"
+"KЬrer planlagte kommandoer med 'at' kommandoen pЕ tiden specificeret da\n"
+"'at' blev kЬrt, og kЬrer batch kommandoer nЕr den gennemsnitlige\n"
+"systembelastning er lav nok"
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-"cron er et standard UNIX program der kЬrer bruge-specifikke programmer\n"
-"pЕ planlagte tidspunkter. Vixie cron tilfЬjer en del forbedringer.UNIX cron, "
-"inkludere bedre sikkerhed og stФrkere konfiguration muligheder."
+"cron er et standard UNIX program der kЬrer bruger-specifikke programmer\n"
+"pЕ planlagte tidspunkter. Vixie cron tilfЬjer en del forbedringer til\n"
+"den basale UNIX cron, inklusive bedre sikkerhed og stФrkere "
+"konfigurationsmuligheder."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
-"GPM tilfЬjer muse support til tekst-baseret Linux applikationer\n"
-"sЕ som Midnight Commander. Den tillader muse-baseret konsol kopi-og-sФtind "
+"GPM tilfЬjer muse-support til tekst-baserede Linux applikationer\n"
+"sЕsom Midnight Commander. Den tillader muse-baseret konsol kopi-og-sФtind "
"operationer\n"
-"og inkludere support for pop-op-menuer i konsollen."
+"og inkluderer support for pop-op-menuer i konsollen."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4521,7 +6143,7 @@ msgstr ""
"Apache er en webserver. Den bruges til at betjene HTML-filer\n"
"og CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4530,31 +6152,33 @@ msgid ""
"disables\n"
"all of the services it is responsible for."
msgstr ""
-"Internet superserveren dФmonen (kaldt inetd) starte forskellige\n"
-"Internet servicer efter behov. Den er ansvarlig for at starte servicersom\n"
-"telnet, ftp, rsh og rlogin. Hvis inetd lukkes, lukkes alle de servicer\n"
+"Internet superserver-dФmonen (kaldet inetd) starter forskellige\n"
+"internet tjenester efter behov. Den er ansvarlig for at starte tjenester "
+"som\n"
+"telnet, ftp, rsh og rlogin. Hvis inetd deaktiveres, deaktiveres alle de "
+"tjenester,\n"
"den er ansvarlig for."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-"Denne pakke indlФser den valgte keyboard oversigt,\n"
-"som valgt i /etc/sysconfig/keyboard. Dette kan blive valgt i kbdconfig "
+"Denne pakke indlФser den valgte tastatur-tabel,\n"
+"som valgt i /etc/sysconfig/keyboard. Dette kan vФlges i kbdconfig "
"programmet.\n"
"Dette bЬr vФre slЕet til pЕ de fleste maskiner."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"lpd er printer dФmonen som er nЬdvendig for at lpr virker╢.\n"
-"Den er basalt en server der hЕndtere print jobs."
+"lpd er printer-dФmonen som er nЬdvendig for at lpr virker╢.\n"
+"Den er basalt en server der hЕndterer udskrifts-opgaver."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4562,7 +6186,7 @@ msgstr ""
"named (BIND) er en domФne-navneserver (DNS) der bruges til\n"
"opslag af navne til IP-adresser."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4570,33 +6194,33 @@ msgstr ""
"Monterer og afmonterer alle netvФrks filsystemer (NFS),\n"
"SMB (LanManager/Windows) og NCP (NetWare) monterings-stier"
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"Aktivere/Deaktivere alle netvФrks-kort som er konfigureret\n"
+"Aktiverer/deaktiverer alle netvФrks-kort som er konfigureret\n"
"til at starte ved opstart"
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-"NFS er en populФr protokol til fil deling over TCP/IP netvФrk.\n"
-"Denne service giver NFS-serverfunktionalitet, som konfigureres gennem\n"
+"NFS er en populФr protokol til fildeling over TCP/IP netvФrk.\n"
+"Denne tjeneste giver NFS-serverfunktionalitet, som konfigureres gennem\n"
"/etc/exports filen"
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-"NFS er en populФr protokol til fil deling over TCP/IP\n"
-"netvФrk. Denne service giver NFS file lЕsnings funktionalitet"
+"NFS er en populФr protokol til fildeling over TCP/IP\n"
+"netvФrk. Denne service giver NFS fillЕsnings funktionalitet"
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4604,139 +6228,300 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
"PCMCIA understЬttelse er normalt til at understЬtte ting som\n"
-"ethernet og modemer in bФrbare. Den vil ikke blive startet medmindre den "
+"ethernet og modemer pЕ bФrbare. Den vil ikke blive startet medmindre den "
"er\n"
-"konfigureret, sЕ det er sikkert at have den installeret pЕ maskinen der "
+"konfigureret, sЕ det er sikkert at have den installeret pЕ maskiner der "
"ikke\n"
"har behov for den."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-"Portmapper hЕndtere RPC tilslutninger, som bliver brugt af\n"
-"protokoller som NFS og NIS. Portmap serveren skal kЬre pЕ maskiner som\n"
+"Portmapper hЕndterer RPC tilslutninger, som bliver brugt af\n"
+"protokoller som NFS og NIS. Portmap serveren skal kЬre pЕ maskiner som\n"
"bruger protokoller der udnytter RPC mekanismen"
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-"Postfix er Post transport agent, som bruges af programmer der\n"
+"Postfix er en Post transport agent, som bruges af programmer der\n"
"flytter post fra en maskine til en anden."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Gemmer og henter system entropi pЬl for en hЬjre kvalitet\n"
-"af tilfФldig nummer generering"
+"af generering af tilfФldige tal."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-"Routed dФmonen giver mulighedden for automatisk IP rute tabel opdatering\n"
-"via RIP protokollen. RIP kan bruges til smЕ network, men nЕr det kommer til\n"
+"Routed dФmonen giver mulighed for automatisk IP rutetabel opdatering\n"
+"via RIP protokollen. RIP kan bruges til smЕ netvФrk, men nЕr det kommer til\n"
"mere komplekse netvФrk er der behov for en mere kompleks protokol."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"rstat protokollen tillader brugere pЕ et netvФrk at\n"
-"hente system information fra enhver maskine pЕ det netvФrket."
+"hente systeminformation fra enhver maskine pЕ dette netvФrk."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-"rusers protokollen tillader brugere pЕ et netvФrk at identificer\n"
+"rusers protokollen tillader brugere pЕ et netvФrk at identificere\n"
"hvem der er logget pЕ andre maskiner"
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"rwho protokollen tillader fjerne brugere a hente en liste over alle\n"
-"brugere der er logget ind i en maskine, der kЬrer rwho dФmonen (minder om "
+"rwho protokollen tillader fjerne brugere at hente en liste over alle\n"
+"brugere der er logget ind pЕ en maskine, der kЬrer rwho dФmonen (minder om "
"finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-"Syslog er en faciliteter som mange dФmoner bruger til log beskeder\n"
-"Det er en god ide at altid kЬre syslog"
+"Syslog er en facilitet som mange dФmoner bruger til log beskeder\n"
+"Det er en god idИ altid at kЬre syslog"
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
-msgstr "Denne opstarts fil prЬver at indlФse modulet til din USB-mus"
+msgstr "Denne opstartsfil prЬver at indlФse modulet til din USB-mus"
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
-msgstr "Starter og stopper X-skriftserveren ven opstart samt nedlukning."
+msgstr "Starter og stopper X-skrifttypeserver ved opstart samt nedlukning."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
-msgstr "VФlg hvilke servicer der skal startes automatisk ved opstart"
+msgstr "VФlg hvilke tjenester der skal startes automatisk ved opstart"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the suggested that for non latin languages an ascii
-# transliteration be used; or maybe the English text be used; as it is best
-#
-# '\206' is 'Е' (aring) in cp437 encoding
-# '\202' is 'И' (eacute) in cp437 encoding
-# '\221' is 'Ф' (ae) in cp437 encoding
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Velkommen til SILO - styresystem-v▒▒lgeren!\n"
-"\n"
-"For at f├├ en liste med valgmulig, tast <TAB>.\n"
-"\n"
-"For at starte ┌n af dem skal du skrive navnet og tast RETUR>.\n"
-"Du kan ogs├├ vente %d sekunder for at starte det system du har valgt som "
-"standard.\n"
-"\n"
+"Jeg kan ikke lФse din partitionstabel, den er for Ьdelagt :(\n"
+"Jeg vil forsЬge mig med at slette de beskadigede partitioner"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "KonfigurИr LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Opret opstartsdiskette"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
-msgstr "FormatИr diskette"
+msgstr "Formater diskette"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Valg"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Installationen af LILO mislykkedes. FЬlgende fejl opstod:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Deling af internetforbindelse er slЕet til"
+
+# Mangler
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Indstilling af deling af internetforbindelse er allerede gjort.\n"
+
+# Mangler
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr ""
+
+# Mangler
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+msgid "reconfigure"
+msgstr "genkonfigurer"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Deling af internetforbindelse er slЕet fra"
+
+# Mangler
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Indstilling af deling af internetforbindelse er allerede gjort.\n"
+
+# Mangler
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "Indhold i konfigurations filen kunne ikke blive fortolket."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Deling af internetforbindelse"
+
+# Mangler
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Nu da din internetforbindelse er konfigureret,\n"
+"kan din maskine blive konfigureret til at dele sin internetforbindelse.\n"
+"Info: Du skal bruge en ekstra netvФrks adapter for at sФtte et lokalnet op "
+"(LAN).\n"
+"\n"
+"ьnsker du at opsФtte deling af internetforbindelsen?\n"
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr "bruger modul"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Ikke nogen netvФrksadapter i dit system!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Ingen ethernet netvФrksadapter er blevet fundet pЕ dit system. KЬr venligst "
+"vФrktЬjet til maskinel konfiguration."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Der er kun en konfigureret netvФrksadapter i dit system:\n"
+"\n"
+"$interface\n"
+"\n"
+"ьnsker du at opsФtte dit lokalnet med denne adapter?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"VФlg venligst hvilken netvФrksadapter som skal forbindes\n"
+"til dit lokalnet."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Advarsel, netvФrksadapteren er allerede konfigureret.\n"
+"Vil du gerne omkonfigurere?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Brandmurkonfiguration genkendt!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
+"muligvis lave manuelle rettelser efter installationen. FortsФt?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Konfigurerer skript, installerer programmel, starter servere..."
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring..."
+msgstr "Konfigurere..."
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Kunne ikke installere ipchains RPM med urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Kunne ikke installere dhcp RPM med urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Kunne ikke installere linuxconf RPM med urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Kunne ikke installere bind RPM med urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Kunne ikke installere caching-nameserver RPM med urpmi."
+
+# Mangler
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Tillykke!"
+
+# Mangler
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4744,8 +6529,9 @@ msgid ""
"or to the Internet. There is no password access."
msgstr ""
"Dette niveau skal bruges med omtanke. Det gЬr dit system nemmere at bruge,\n"
-"men meget sЕrbart: det mЕ ikke bruges til en maskine der er i et netvФrk\n"
-"eller har forbindelse til Internettet. Der er ikke nogen kontrol af kodeord."
+"men er meget sЕrbart: det mЕ ikke bruges til en maskine der er i et netvФrk\n"
+"eller har forbindelse til internettet. Der er ikke nogen kontrol af "
+"adgangskoder."
#: ../../standalone/draksec_.c:31
msgid ""
@@ -4760,16 +6546,16 @@ msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
msgstr ""
-"FЕ forbedrelse af sikkerheds niveauet, den vigtigste er at der er\n"
-"flere sikkerheds advarsler og eftersyn."
+"Ikke mange forbedringer af sikkerheds-niveauet, den vigtigste er at der er\n"
+"flere sikkerheds-advarsler og eftersyn."
#: ../../standalone/draksec_.c:34
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
-"Dette er den standart sikkerheds anbefaling for en computere med\n"
-"forbindelse til Internettet. Der er nu sikkerheds eftersyn."
+"Dette er standard sikkerheds-anbefalingen for en maskine med\n"
+"forbindelse til internettet. Der er nu sikkerheds-eftersyn."
#: ../../standalone/draksec_.c:36
msgid ""
@@ -4798,23 +6584,32 @@ msgstr "Indstiller sikkerhedsniveau"
msgid "Choose the tool you want to use"
msgstr "VФlg det vФrktЬj du Ьnsker at benytte"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Hvilken type tastatur har du?"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "Skift cdrom"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Hvilken type mus har du?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"IndsФt venligst installations-cdrom'en i dit cdrom-drev og tryk pЕ Ok, nЕr "
+"det gjort\n"
+"Hvis du ikke har den - tryk pЕ AnnullИr, sЕ undgЕs levende opgradering"
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Kan ikke starte levende opgradering !!!\n"
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "ingen seriel_usb fundet\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Hvilken seriel port er din mus forbundet til?"
@@ -4902,7 +6697,7 @@ msgstr "Find pakke"
#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
-msgstr "Find pakke som indeholder file"
+msgstr "Find pakke som indeholder fil"
#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
@@ -4948,7 +6743,7 @@ msgstr "Hvilken pakke leder efter"
#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
-msgstr "%s ikke fundet."
+msgstr "%s ikke fundet"
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
@@ -4965,7 +6760,7 @@ msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
-"rpmdrake er fortiden i lav hukommelse tilstand.\n"
+"rpmdrake er for tiden i lav hukommelse tilstand.\n"
"Jeg genstarter rpmdrake sЕ der bliver mulighed for at sЬge efter filer"
#: ../../standalone/rpmdrake_.c:253
@@ -4997,8 +6792,8 @@ msgid ""
"For FTP and HTTP, you need to give the location for hdlist\n"
"It must be relative to the URL above"
msgstr ""
-"For FTP og HTTP, skal du give adressen til hdlist\n"
-"Den skal vФre relativ til URL-en ovenfor"
+"For FTP og HTTP skal du give adressen til hdlist\n"
+"Den skal vФre relativ til URL'en ovenfor"
#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
@@ -5017,7 +6812,7 @@ msgstr "Opdaterer RPM-basen"
#: ../../standalone/rpmdrake_.c:328
#, c-format
msgid "Going to remove entry %s"
-msgstr "Skal til at fjerne indskrivning %s"
+msgstr "Skal til at fjerne indgang %s"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
@@ -5026,3 +6821,186 @@ msgstr "Finder blade"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "At finde blade tager nogen tid"
+
+# Mangler
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+msgid "Internet Tools"
+msgstr "Internet vФrktЬjer"
+
+msgid "Internet"
+msgstr "Internet"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Kontor"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+msgid "Multimedia - Graphics"
+msgstr "Multimedie - Grafik"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+msgid "Multimedia - Video"
+msgstr "Multimedie - Video"
+
+msgid "KDE"
+msgstr "KDE"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedie"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+msgid "Multimedia - Sound"
+msgstr "Multimedie - Lyd"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentation"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# Mangler
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+msgid "Games"
+msgstr "Spil"
+
+msgid "Multimedia - CD Burning"
+msgstr "Multimedie - CD-brФnding"
+
+# Mangler
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr "Databaser"
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "VФlg den samlede stЬrrelse som din installation mЕ fylde"
+
+#~ msgid "Total size: "
+#~ msgstr "Total stЬrrelse: "
+
+#~ msgid ""
+#~ "The system is now connected to Internet! Congratulation.\n"
+#~ "Feel free to launch draknet at any time to setup your connection.\n"
+#~ msgstr ""
+#~ "Systemet er nu forbundet til internettet! Tillykker.\n"
+#~ "Du kan starte draknet nЕr som helst for at konfigurere din forbindelse.\n"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 02fbc7cf3..200d585d3 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-1-4 16:27+0100\n"
"Last-Translator: Theodore J. Soldatos <theodore@eexi.gr>\n"
"Language-Team: GREEK <nls@tux.hellug.gr>\n"
@@ -13,43 +13,104 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "цЕМИЙЭ"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "йэЯТА ЦЯАЖИЙЧМ"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "еПИКщНТЕ ЙэЯТА ЦЯАЖИЙЧМ"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "еПИКщНТЕ X server (ОДГЦЭР ЙэЯТАР ЦЯАЖИЙЧМ)"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "ЕНУПГЯЕТГТчР X Window"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "тъ ТЩПОУ XFree ХщКЕТЕ МА щВЕТЕ;"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"г ЙэЯТА ЦЯАЖИЙЧМ САР УПОСТГЯъФЕИ ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ ЛЭМО \n"
+"ЛЕ ТА XFree %s. г ЙэЯТА САР УПОСТГЯъФЕТАИ АПЭ ТА XFree %s ТА ОПОъА ЛПОЯЕъ МА "
+"ДъМОУМ \n"
+"ЙАКЩТЕЯГ УПОСТчЯИНГ ЦИА ДИСДИэСТАТА ЦЯАЖИЙэ."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+"г ЙэЯТА ЦЯАЖИЙЧМ САР УПОСТГЯъФЕИ ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ СТА XFree "
+"%s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ЛЕ ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"г ЙэЯТА ЦЯАЖИЙЧМ САР УПОСТГЯъФЕИ ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ ЛЭМО \n"
+"ЛЕ ТА XFree %s. пяосовг: пеияалатийг упостгяинг - лпояеи ма пацысеи том "
+"упокоцистг сас!\n"
+"г ЙэЯТА САР УПОСТГЯъФЕТАИ АПЭ ТА XFree %s ТА ОПОъА ЛПОЯЕъ МА ДъМОУМ ЙАКЩТЕЯГ "
+"УПОСТчЯИНГ\n"
+"ЦИА ДИСДИэСТАТА ЦЯАЖИЙэ."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"г ЙэЯТА ЦЯАЖИЙЧМ САР УПОСТГЯъФЕИ ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ СТА XFree "
+"%s,\n"
+"пяосовг: пеияалатийг упостгяинг - лпояеи ма пацысеи том упокоцистг сас!"
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ЛЕ пеияалатийг ЕПИТэВУМСГ ТЯИСДИэСТАТЫМ ЦЯАЖИЙЧМ"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "яУХЛъСЕИР XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "лщЦЕХОР ЛМчЛГР ЙэЯТАР ЦЯАЖИЙЧМ"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "яУХЛъСЕИР X server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "еПИКщНТЕ ОХЭМГ"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "оХЭМГ"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -73,39 +134,39 @@ msgstr ""
"ЙАТАСТЯОЖчР\n"
"ТГР ОХЭМГР САР. аМ ДЕМ ЕъСТЕ СъЦОУЯОИ, ЙэМТЕ ЛИА СУМТГЯГТИЙч ЕПИКОЦч."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "сУВМЭТГТА ОЯИФЭМТИАР АМАМщЫСГР"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "сУВМЭТГТА ЙАТАЙЭЯУЖГР АМАМщЫСГР"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "г ОХЭМГ ДЕМ щВЕИ ЯУХЛИСТЕъ АЙЭЛГ"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "г ЙэЯТА ЦЯАЖИЙЧМ ДЕМ щВЕИ ЯУХЛИСТЕъ АЙЭЛГ"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "дЕМ щВОУМ ЕПИКЕЦЕъ АМАКЩСЕИР АЙЭЛГ"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "хщКЕТЕ МА ДОЙИЛэСЕТЕ ТИР ЯУХЛъСЕИР;"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "пЯОСОВч: г ДОЙИЛч ЕъМАИ ЕПЙъМДУМГ СЕ АУТч ТГМ ЙэЯТА ЦЯАЖИЙЧМ"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "пЯОСОВч: г ДОЙИЛч ЕъМАИ ЕПИЙъМДУМГ СЕ АУТч ТГМ ЙэЯТА ЦЯАЖИЙЧМ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "дОЙИЛч ЯУХЛъСЕЫМ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -113,185 +174,172 @@ msgstr ""
"\n"
"ДОЙИЛэСТЕ МА АККэНЕТЕ ЙэПОИЕР ПАЯАЛщТЯОУР"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "пЯОЙКчХГЙЕ СЖэКЛА:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "╦НОДОР СЕ %d ДЕУТЕЯЭКЕПТА"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "еъМАИ АУТч Г СЫСТч ЯЩХЛИСГ;"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "пЯОЙКчХГЙЕ СЖэКЛА, ДОЙИЛэСТЕ МА АККэНЕТЕ ЙэПОИЕР ПАЯАЛщТЯОУР"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "аУТЭЛАТГ ЕПИКОЦч АМАКЩСЕЫМ"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"хА ДОЙИЛэСЫ ДИэЖОЯЕР АМАКЩСЕИР ЦИА МА ЕМТОПъСЫ ПОИщР ЕъМАИ ДИАХщСИЛЕР.\n"
-"г ОХЭМГ САР ХА АЯВъСЕИ МА АМАБОСБчМЕИ...\n"
-"лПОЯЕъТЕ АМ ХщКЕТЕ МА ТГМ ЙКЕъСЕТЕ, ХА АЙОЩСЕТЕ щМА ЛПИП ЛЕ ТГМ\n"
-"ОКОЙКчЯЫСГ ТГР ДИАДИЙАСъАР."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "аМэКУСГ"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "еПИКщНТЕ АМэКУСГ ЙАИ БэХОР ВЯЧЛАТОР"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "йэЯТА ЦЯАЖИЙЧМ: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 server: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "еЛЖэМИСГ ЭКЫМ"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "аМАКЩСЕИР"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"лПОЯЧ МА ДОЙИЛэСЫ МА БЯЧ ТИР ДИАХщСИЛЕР АМАКЩСЕИР (ПВ 800В600).\n"
-"аУТЭ ЭЛЫР ъСЫР ПЯОЙАКщСЕИ ЙЭККГЛА ТОУ СУСТчЛАТОР.\n"
-"хщКЕТЕ МА ДОЙИЛэСЕТЕ;"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"дЕМ БЯщХГЙАМ щЦЙУЯОИ СУМДУАСЛОъ КЕИТОУЯЦъАР\n"
-"дОЙИЛэСТЕ ДИАЖОЯЕТИЙч ЙэЯТА ЦЯАЖИЙЧМ ч ОХЭМГ"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "дИАЯЩХЛИСГ ПКГЙТЯОКОЦъОУ: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "тЩПОР ПОМТИЙИОЩ: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "сУСЙЕУч ПОМТИЙИОЩ: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "оХЭМГ: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "сУВМЭТГТА ОЯИФЭМТИАР АМАМщЫСГР: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "сУВМЭТГТА ЙАТАЙЭЯУЖГР АМАМщЫСГР: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "йэЯТА ЦЯАЖИЙЧМ: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "лМчЛГ ЙэЯТАР ЦЯАЖИЙЧМ: %s kb\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "бэХОР ВЯЧЛАТОР: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "аМэКУСГ: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "оДГЦЭР XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "пЯОЕТОИЛАСъА ЯУХЛъСЕЫМ ЦЯАЖИЙОЩ ПЕЯИБэККОМТОР (X-Window)"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "аККАЦч ОХЭМГР"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "аККАЦч ЙэЯТАР ЦЯАЖИЙЧМ"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "аККАЦч ЯУХЛъСЕЫМ X server"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "аККАЦч АМэКУСГР"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "аУТЭЛАТГ ЕЩЯЕСГ АМАКЩСЕЫМ"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "пЯОБОКч ПКГЯОЖОЯИЧМ"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "еПАМэКГЬГ ДОЙИЛчР"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "╦НОДОР"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "тИ ХщКЕТЕ МА ЙэМЕТЕ;"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "аЙЩЯЫСГ АККАЦЧМ;"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"дИАТчЯГСГ УПАЯВЭМТЫМ ЯУХЛъСЕЫМ;\n"
+"оИ ТЯщВОУСЕР ЯУХЛъСЕИР ЕъМАИ:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "пАЯАЙАКЧ ЕПАМАСУМДЕХЕъТЕ ЫР %s ЦИА ЕМЕЯЦОПОъГСГ ТЫМ АККАЦЧМ"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "пАЯАЙАКЧ АПОСУМДЕХЕъТЕ ЙАИ ЛЕТэ ПАТчСТЕ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "цЯАЖИЙЭ ПЕЯИБэККОМ (X) СТГМ ЕЙЙъМГСГ"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -300,228 +348,224 @@ msgstr ""
"ЦЯАЖИЙЭ ПЕЯИБэККОМ (X-Windows).\n"
"еПИХУЛЕъТЕ АУТЭЛАТГ ЕЙЙъМГСГ ЦЯАЖИЙОЩ ПЕЯИБэККОМТОР;"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "аУТЭЛАТГ СЩМДЕСГ (Autologin)"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"лПОЯЧ МА ЯУХЛъСЫ ТО СЩСТГЛэ САР щТСИ ЧСТЕ МА СУМДщЕТАИ АУТЭЛАТА ЙАТэ\n"
+"ТГМ ЕЙЙъМГСГ СЕ щМАМ СУЦЙЕЙЯИЛщМО ВЯчСТГ.\n"
+"еэМ ДЕМ ХщКЕТЕ МА СУЛБАъМЕИ АУТЭ, ПАТчСТЕ СТО ЙОУЛПъ АЙЩЯЫСГР."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "еПИКщНТЕ ТОМ ЕН' ОЯИСЛОЩ ВЯчСТГ:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "еПИКщНТЕ ТОМ ДИАВЕИЯИСТч ПАЯАХЩЯЫМ ПОУ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 ВЯЧЛАТА (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 ВИКИэДЕР ВЯЧЛАТА (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 ВИКИэДЕР ВЯЧЛАТА (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 ЕЙАТОЛЛЩЯИА ВЯЧЛАТА (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 ДИСЕЙАТОЛЛЩЯИА ВЯЧЛАТА (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kb"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kb"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ч ПЕЯИССЭТЕЯА"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 СТА 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 СТА 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Compatible, 1024x768 СТА 87 Hz interlaced (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 СТА 87 Hz interlaced, 800x600 СТА 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 СТА 60 Hz, 640x480 СТА 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 СТА 60 Hz, 800x600 СТА 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA, 1024x768 СТА 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency ПОУ ЛПОЯЕъ МА АПЕИЙОМъСЕИ АМэКУСГ 1280x1024 СТА 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency ПОУ ЛПОЯЕъ МА АПЕИЙОМъСЕИ АМэКУСГ 1280x1024 СТА 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency ПОУ ЛПОЯЕъ МА АПЕИЙОМъСЕИ АМэКУСГ 1280x1024 СТА 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "оХЭМГ ПОУ ЛПОЯЕъ МА АПЕИЙОМъСЕИ АМэКУСГ 1600x1200 СТА 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "оХЭМГ ПОУ ЛПОЯЕъ МА АПЕИЙОМъСЕИ АМэКУСГ 1600x1200 СТА 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "ЙАТСАЯЭ"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "ЕПИКОЦч ЕН' ОЯИСЛОЩ"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "ЦЯАБэТА"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "ЙАСТАМч"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "ЙОЯъТСИ"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "НАМХИэ ЦУМАъЙА"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "АУТОЛАЦИЙЭ"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "пЯЧТОР ТОЛщАР ТГР ЙАТэТЛГСГР ЕЙЙъМГСГР"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "пЯЧТОР ТОЛщАР ТОУ ДъСЙОУ (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "еЦЙАТэСТАСГ LILO/grub"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "еЦЙАТэСТАСГ SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "пОЩ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ ТО ПЯЭЦЯАЛЛА ЕЙЙъМГСГР;"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "еЦЙАТэСТАСГ LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "йАМщМА"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "пОИэ ПЯОЦЯэЛЛАТА ЕЙЙъМГСГР ХщКЕТЕ МА ПЯОСХщСЕТЕ;"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "еЦЙАТэСТАСГ ПЯОЦЯэЛЛАТОР ЕЙЙъМГСГР"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "сУСЙЕУч ЕЙЙъМГСГР"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ДЕМ КЕИТОУЯЦЕъ ЛЕ ПАКАИЭТЕЯА BIOS)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "сУЛПАЦчР"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "СУЛПАЦчР"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "йАХУСТщЯГСГ ПЯИМ ТГМ ЕЙЙИМГСГ"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "аМэКУСГ ОХЭМГР"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "йАХУСТщЯГСГ ПЯИМ ТГМ ЕЙЙИМГСГ"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "сУМХГЛАТИЙЭ"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "сУМХГЛАТИЙЭ (НАМэ)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "аПАЦЭЯЕУСГ ЕПИКОЦЧМ ЦЯАЛЛчР ЕМТОКчР"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "АПАЦЭЯЕУСГ"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "бАСИЙщР ЕПИКОЦщР ПЯОЦЯэЛЛАТОР ЕЙЙъМГСГР"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"г ЕПИКОЦч ``аПАЦЭЯЕУСГ ЕПИКОЦЧМ ЦЯАЛЛчР ЕМТОКчР'' ЕъМАИ эВЯГСТГ ВЫЯъР "
"СУМХГЛАТИЙЭ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "пАЯАЙАКЧ ПЯОСПАХчСТЕ НАМэ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "тА СУМХГЛАТИЙэ ЕъМАИ АМЭЛОИА"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -529,167 +573,350 @@ msgstr ""
"уПэЯВОУМ ОИ АЙЭКОУХЕР ЕПИКОЦщР.\n"
"лПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЙИ эККЕР ч МА АККэНЕТЕ ТИР УПэЯВОУСЕР."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "пЯОСХчЙГ"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "оКОЙКГЯЧХГЙЕ"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "тъ ТЩПОУ ЕПИКОЦч ХщКЕТЕ МА ПЯОСХщСЕТЕ"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "╤ККО КЕИТОУЯЦИЙЭ (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "╤ККО КЕИТОУЯЦИЙЭ (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "тъ ТЩПОУ ЕПИКОЦч ХщКЕТЕ МА ПЯОСХщСЕТЕ"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "пъМАЙАР"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "аМАСЖАКщР"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "еТИЙщТТА"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "еПИКОЦч ЕН' ОЯИСЛОЩ"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "оЙ"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "аЖАъЯЕСГ ЕПИКОЦчР"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "дЕМ ЕПИТЯщПЕТАИ эДЕИА ЕТИЙщТТА"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "аУТч Г ЕТИЙЕТТА ВЯГСИЛОПОИЕъТАИ чДГ"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "бЯчЙА %s %s ПЯОСАЯЛОЦЕъР"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "╦ВЕТЕ АККОМ;"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "╦ВЕТЕ ЙэПОИОМ ПЯОСАЯЛОЦщА %s;"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "╪ВИ"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "мАИ"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "пЯОБОКч ПКГЯОЖОЯИЧМ УКИЙОЩ"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "еЦЙАТэСТАСГ ОДГЦОЩ ЦИА %s ЙэЯТА %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(module %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "пОИЭМ %s ОДГЦЭ МА ДОЙИЛэСЫ;"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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"
+"ПЯОЙАКщСЕИ ЙЭККГЛА ТОУ СУСТчЛАТОР, АККэ ДЕМ ХА ПЯОЙАКщСЕИ БКэБГ."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "аУТЭЛАТГ ЕНщТАСГ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "пЯОСДИОЯИСЛЭР ПАЯАЛщТЯЫМ"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "лПОЯЕъТЕ ТЧЯА МА ДЧСЕТЕ ПАЯАЛщТЯОУР ЦИА ТОМ ОДГЦЭ %s"
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its 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''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "пАЯэЛЕТЯОИ ОДГЦОЩ"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"г ЖОЯТЫСГ ТОУ ОДГЦОЩ %s АПЕТУВЕ.\n"
+"хщКЕТЕ МА ДОЙИЛэСЕТЕ НАМэ ЛЕ ДИАЖОЯЕТИЙщР ПАЯАЛщТЯОУР;"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS %s!\n"
+"\n"
+"EPILEXTE LEITORGIKO SYSTHMA APO TON PARAPANO KATALOGO \n"
+"H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH EPILOGH.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welcome to GRUB the operating system chooser!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "commands before booting, or 'c' for a command-line."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "ДЕМ УПэЯВЕИ АЯЙЕТЭР ВЧЯОР СТО /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start Menu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d КЕПТэ"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 КЕПТЭ"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d ДЕУТЕЯЭКЕПТА"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "дГЛИОУЯЦъА"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "аПОСЩМДЕСГ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "дИАЦЯАЖч"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "лОЯЖОПОъГСГ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "аККАЦч ЛЕЦщХОУР"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "тЩПОР"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "сГЛЕъО СЩМДЕСГР"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "аПОХчЙЕУСГ /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "лЕТАПчДГСГ СЕ ПЯОВЫЯГЛщМО ТЯЭПО КЕИТОУЯЦъАР"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "лЕТАПчДГСГ СЕ ЙАМОМИЙЭ ТЯЭПО КЕИТОУЯЦъАР"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "еПАМАЖОЯэ АПЭ АЯВЕъО"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "аПОХчЙЕУСГ СЕ АЯВЕъО"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "лэЦОР"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "еПАМАЖОЯэ АПЭ ДИСЙщТТА"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "аПОХчЙЕУСГ СЕ ДИСЙщТТА"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "йАХАЯИСЛЭР ЭКЫМ"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "лОЯЖОПОъГСГ ЭКЫМ"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "аУТОЛАТГ ЙАТАМОЛч"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "╪КЕР ОИ ПЯЫТЕЩОУСЕР ЙАТАТЛчСЕИР ЕъМАИ СЕ ВЯчСГ"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "дЕМ ЛПОЯЧ МА ПЯОСХщСЫ ЙАТАТЛГСЕИР"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -697,59 +924,63 @@ msgstr ""
"цИА МА ПЯОСХщСЕТЕ ЙАТАТЛчСЕИР, ПАЯАЙАКЧ ДИАЦЯэЬТЕ ЛъА ЕТСИ ЧСТЕМА ЕъМАИ "
"ДУМАТч Г ПЯОСХчЙГ ЕЙТЕТАЛщМГР ЙАТэТЛГСГР"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "пъМАЙАР ЙАТАТЛчСЕЫМ ДИэСЫСГР"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "аЙЩЯЫСГ ТЕКЕУТАъАР ПЯэНГР"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "аПОХчЙЕУСГ ПъМАЙА ЙАТАТЛчСЕЫМ"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "еПАМАЖЭЯТЫСГ"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "╤ДЕИО"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "╤ККО"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "╤ДЕИО"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "╤ККО"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "тЩПОИ СУСТчЛАТОР АЯВЕъЫМ:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "кЕПТОЛщЯЕИЕР"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -761,17 +992,17 @@ msgstr ""
"сУМИСТЧ МА АККэНЕТЕ ТО ЛщЦЕХЭР ТГР ПЯЧТА\n"
"(ЕПИКщНТЕ ТГМ, ЛЕТэ ЕПИКщНТЕ \"аККАЦч ЛЕЦщХОУР\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "пАЯАЙАКЧ ЙэМТЕ ПЯЧТА щМА АМТъЦЯАЖО АСЖАКЕъАР ТЫМ ДЕДОЛщМЫМ САР"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "дИАБэСТЕ ПЯОСЕЙТИЙэ!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -781,77 +1012,77 @@ msgstr ""
"2048 ТОЛЕъР ЕъМАИ АЯЙЕТОъ)\n"
"СТГМ АЯВч ТОУ ДъСЙОУ"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "пЯОСОВч: аУТч Г ДИАДИЙАСъА ЕъМАИ ЕПИЙъМДУМГ."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "сЖэКЛА"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "сГЛЕъО СЩМДЕСГР: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "сУСЙЕУч: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "пИХАМЭ DOS ЦЯэЛЛА ДъСЙОУ: %s \n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "тЩПОР: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "аЯВч: ТОЛщАР %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "лщЦЕХОР: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s ТОЛЕъР"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "йЩКИМДЯОР %d ЕЧР ЙЩКИМДЯОР %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "лОЯЖОПОИГЛщМОР\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "аЛОЯЖОПОъГТОР\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "сУМДЕДЕЛщМОР\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "аЯВЕъА loopback: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -859,79 +1090,79 @@ msgstr ""
"йАТэТЛГСГ ЕЙЙъМГСГР ЕН ОЯИСЛОЩ\n"
" (АПЭ MS-DOS, ЭВИ АПЭ lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "еПъПЕДО %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "лщЦЕХОР chunk %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "дъСЙОИ RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "╪МОЛА АЯВЕъОУ loopback: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "пАЯАЙАКЧ ЙэМТЕ ЙКИЙ СЕ ЛИА ЙАТэТЛГСГ"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "лщЦЕХОР: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "цЕЫЛЕТЯъА: %s ЙЩКИМДЯОИ, %s ЙЕЖАКщР, %s ТОЛЕъР\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "тЩПОР ПъМАЙА ЙАТАТЛчСЕЫМ: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "СТО bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "сЩМДЕСГ"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "еМЕЯЦЭ"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "пЯОСХчЙГ СТО RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "аЖАъЯЕСГ АПЭ ТО RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "тЯОПОПОъГСГ RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "вЯчСГ ЦИА loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "еПИКщНТЕ ПЯэНГ"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -943,7 +1174,7 @@ msgstr ""
"еъТЕ ВЯГСИЛОПОИЕъТЕ LILO ЙАИ ДЕМ ХА ДОУКщЬЕИ, ЕъТЕ ДЕМ ВЯГСИЛОПОИЕъТЕLILO "
"ЙАИ ДЕМ ВЯЕИэФЕСТЕ ТО /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -954,28 +1185,27 @@ msgstr ""
"ДЕМ щВЕТЕ ЙАТэТЛГСГ /boot.\n"
"аМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ LILO, ПЯОСХщСТЕ ЛъА ЙАТэТЛГСГ /boot."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"еПИКщНАТЕ ЛИА software RAID ЙАТэТЛГСГ ЫР root (/).\n"
"йАМщМА ПЯЭЦЯАЛЛА ЕЙЙъМГСГР ДЕМ ЛПОЯЕъ МА ТО ВЕИЯИСТЕъ АУТЭ ВЫЯъР ЛИА "
"ЙАТэТЛГСГ /boot.\n"
-"аМ КОИПЭМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО lilo ч ТО grub, ЖЯОМТъСТЕ МА "
-"ПЯОСХщСЕТЕ ЛИА ЙАТэТЛГСГ /boot."
+"жЯОМТъСТЕ КОИПЭМ МА ПЯОСХщСЕТЕ ЛИА ЙАТэТЛГСГ /boot."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "вЯГСИЛОПОИчСТЕ ``%s'' СТГ ХщСГ ТОУ"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "йэМТЕ ПЯЧТА ``аПОСЩМДЕСГ''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -983,41 +1213,43 @@ msgstr ""
"лЕТэ ТГМ АККАЦч ТЩПОУ СТГМ ЙАТэТЛГСГ %s, ЭКА ТА ДЕДОЛщМА СЕ АУТчМ ТГМ "
"ЙАТэТЛГСГ ХА ВАХОЩМ"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "мА СУМЕВИСЫ;"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "╦НОДОР ВЫЯъР АПОХчЙЕУСГ"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "╦НОДОР ВЫЯъР АПОХчЙЕУСГ ТОУ ПъМАЙА ЙАТАТЛчСЕЫМ;"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "аККАЦч ТЩПОУ ЙАТэТЛГСГР"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "тИ ТЩПО ЙАТэТЛГСГР ХщКЕТЕ;"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "пОИЭ СЩТГЛА АЯВЕъЫМ ПЯОТИЛэТЕ;"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
+"дЕМ ЛПОЯЕъТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО ReiserFS ЦИА ЙАТАТЛчСЕИР ЛИЙЯЭТЕЯЕР АПЭ "
+"32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "пОЩ ХщКЕТЕ МА СУМДщСЕТЕ ТО АЯВЕъО loopback %s;"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "пОЩ ХщКЕТЕ МА СУМДщСЕТЕ ТГМ СУСЙЕУч %s;"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1026,143 +1258,147 @@ msgstr ""
"ВЯГСИЛОПОИЕъТАИ\n"
"ЦИА loopback. аЖАИЯщСТЕ ПЯЧТА ТО loopback"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"лЕТэ ТГМ ЛОЯЖОПОъГСГ ТГР ЙАТэТЛГСГР %s, ЭКА ТА ДЕДОЛщМА СЕ АУТчМ ТГМ "
"ЙАТэТЛГСГ ХА ВАХОЩМ"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "лОЯЖОПОъГСГ"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "лОЯЖОПОъГСГ АЯВЕъОУ loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "лОЯЖОПОъГСГ ЙАТэТЛГСГР %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "лЕТэ ТГМ ЛОЯЖОПОъГСГ ЭКЫМ ТЫМ ЙАТАТЛчСЕЫМ,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "ЭКА ТА ДЕДОЛщМА СЕ АУТщР ТИР ЙАТАТЛчСЕИР ХА ВАХОЩМ"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "лЕТАЙъМГСГ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "сЕ ПОИЭМ ДъСЙО ХщКЕТЕ МА ЛЕТАЙИМГХЕъТЕ;"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "тОЛщАР"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "сЕ ПОИЭМ ТОЛщА ХщКЕТЕ МА ЛЕТАЙИМГХЕъТЕ;"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "лЕТАЙъМГСГ СЕ ЕНщКИНГ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "лЕТАЙъМГСГ ЙАТэТЛГСГР СЕ ЕНщКИНГ..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "о ПъМАЙАР ЙАТАТЛчСЕЫМ ТОУ ДъСЙОУ %s ХА АПОХГЙЕУТЕъ СТОМ ДъСЙО!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "аПАИТЕъТАИ ЕПАМЕЙЙъМГСГ ЦИА МА ЕЖАЯЛОСТОЩМ ОИ АККАЦщР"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "уПОКОЦИСЛЭР fat filesystem bounds"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "лЕТАБОКч ЛЕЦщХОУР"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "аУТЭР О ТЩПОР ЙАТэТЛГСГР ДЕМ ЛПОЯЕъ М' АККэНЕИ ЛщЦЕХОР."
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr ""
"пЯщПЕИ МА ЦъМЕИ АМТъЦЯАЖО АСЖАКЕъАР ЭКЫМ ТЫМ ДЕДОЛщМЫМ СЕ АУТч ТГМ ЙАТэТЛГСГ"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"лЕТэ ТГМ АККАЦч ЛЕЦщХОУР СТГМ ЙАТэТЛГСГ %s, ЭКА ТА ДЕДОЛщМА СЕ АУТчМ ТГМ "
"ЙАТэТЛГСГ ХА ВАХОЩМ"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "еПИКщНТЕ ТО МщО ЛщЦЕХОР"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "дГЛИОУЯЦъА МщАР ЙАТэТЛГСГР"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "аЯВч СТОМ ТОЛщА: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "лщЦЕХОР СЕ MB"
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "тЩПОР СУСТчЛАТОР АЯВЕъЫМ: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "пЯОТъЛГСГ: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "аУТч Г ЙАТэТЛГСГ ДЕМ ЛПОЯЕъ МА ВЯГСИЛОПОИГХЕъ ЦИА loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "╪МОЛА АЯВЕъОУ loopback: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "тО АЯВЕъО ВЯГСИЛПОПОИЕъТАИ чДГ, ЕПИКщНТЕ щМА эККО"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "тО АЯВЕъО УПэЯВЕИ чДГ. мА ТО ВЯГСИЛОПОИчСЫ;"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "еПИКщНТЕ АЯВЕъО"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1170,11 +1406,11 @@ msgstr ""
"о ЕЖЕДЯИЙЭР ПъМАЙАР ЙАТАТЛчСЕЫМ щВЕИ ДИАЖОЯЕТИЙЭ ЛщЦЕХОР\n"
"мА СУМЕВъСЫ;"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "пЯОЕИДОПОъГСГ"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1182,79 +1418,80 @@ msgstr ""
"еИСэЦЕТЕ ЛИА ДИСЙщТТА СТОМ ОДГЦЭ ДИСЙщТТАР\n"
"╪КА ТА ДЕДОЛщМА СЕ АУТч ТГ ДИСЙщТТА ХА ВАХОЩМ"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "пЯОСПэХЕИА ДИэСЫСГР ПъМАЙА ЙАТАТЛчСЕЫМ"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "СУСЙЕУч"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "ЕПъПЕДО"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "ЛщЦЕХОР chunk"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "еПИКщНТЕ щМА УПэЯВОМ RAID СТО ОПОъО ХА ЦъМЕИ Г ПЯОСХчЙГ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "МщО"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ЛОЯЖОПОъГСГ ТОУ %s АПщТУВЕ"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ДЕМ НщЯЫ ПЧР МА ЛОЯЖОПОИчСЫ ТО %s СЕ ТЩПО %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "СЩМДЕСГ nfs АПщТУВЕ"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "СЩМДЕСГ АПщТУВЕ: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "СЖэКЛА ЙАТэ ТГМ АПОСЩМДЕСГ ТОУ %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "тО СГЛЕъО СЩМДЕСГР ПЯщПЕИ МА НЕЙИМэЕИ ЛЕ /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "уПэЯВЕИ чДГ ЙАТэТЛГСГ ЛЕ СГЛЕъО СЩМДЕСГР %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "йУЙКИЙщР СУМДщСЕИР %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+"аУТЭР О ЙАТэКОЦОР ПЯщПЕИ МА ПАЯАЛЕъМЕИ СТО ЯИФИЙЭ СЩСТГЛА АЯВЕъЫМ (root)"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"вЯЕИэФЕСТЕ щМА ПЯАЦЛАТИЙЭ СЩСТГЛА АЯВЕъЫМ (ext2, reiserfs) ЦИА АУТЭ ТО "
"СГЛЕъО СЩМДЕСГР\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "сЖэКЛА ЙАТэ ТО эМОИЦЛА ТОУ %s ЦИА ЕЦЦЯАЖч: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1263,74 +1500,94 @@ msgstr ""
"ДГЛИОУЯЦъА МщЫМ СУСТГЛэТЫМ АЯВЕъЫМ. пАЯАЙАКЧ ЕКЕЦНТЕ ТО УКИЙЭ САР ЦИАТГМ "
"АИТъА АУТОЩ ТОУ ПЯОБКчЛАТОР"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "дЕМ УПэЯВЕИ ЙАЛъА ЙАТэТЛГСГ!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "еПИКщНТЕ ЦКЧССА ЦИА ЕЦЙАТэСТАСГ ЙАИ ВЯчСГ."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "пАЯАЙАКЧ ЕПИКщНТЕ ЦКЧССА ЦИА ЕЦЙАТэСТАСГ ЙАИ ВЯчСГ."
+
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"пЯщПЕИ МА АПОДЕВХЕъТЕ ТОУР ЭЯОУР ТГР эДЕИАР ВЯчСГР ПЯИМ СУМЕВъСЕТЕ ТГМ "
+"ЕЦЙАТэСТАСГ.\n"
+"\n"
+"\n"
+"пАЯАЙАКЧ ЕПИКщНТЕ \"аПОДОВч\" ЕэМ СУЛЖЫМЕъТЕ ЛЕ ТОУР ЭЯОУР.\n"
+"\n"
+"\n"
+"пАЯАЙАКЧ ЕПИКщНТЕ \"╤ЯМГСГ\" ЕэМ ДЕМ СУЛЖЫМЕъТЕ. г ЕЦЙАТэСТАСГ ХА СТАЛАТчСЕИ "
+"ВЫЯъР МА\n"
+"ПЕИЯАВТЕъ ТъПОТА."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr ""
"еПИКщНТЕ ТГМ ДИАЯЩХЛИСГ ПОУ АМТИСТОИВЕъ СТО ПКГЙТЯОКЭЦИЭ САРАПЭ ТГМ ПАЯАПэМЫ "
"КъСТА"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
-"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
-"\n"
-"\n"
-"Select:\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"еэМ ХщКЕТЕ ЙАИ эККЕР ЦКЧССЕР (ЕЙТЭР АПЭ АУТч ПОУ ЕПИКщНАТЕ СТГМ АЯВч)\n"
+"ПАЯАЙАКЧ ЕПИКщНТЕ ТИР АПЭ ТОМ ПАЯАПэМЫ ЙАТэКОЦО."
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"еПИКщНТЕ \"еЦЙАТэСТАСГ\" ЕэМ ДЕМ УПэЯВЕИ ПАКАИЭТЕЯГ ЕЦЙАТэСТАСГ Linux\n"
-"СТО СЩСТГЛэ САР, ч ЕэМ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ПОККАПКщР ЕЦЙАТАСТэСЕИР.\n"
"\n"
-"еПИКщНТЕ \"аМАБэХЛИСГ\" ЕэМ ХщКЕТЕ МА АМАБАХЛъСЕТЕ ЛИА УПэЯВОУСА\n"
-"ЕЦЙАТэСТАСГ ТОУ Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo),\n"
-"5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold 2000 or 7.0 (Air).\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-"еПИКщНТЕ:\n"
"\n"
-" - аУТЭЛАТО: еэМ АУТч ЕъМАИ Г ПЯЧТГ ЖОЯэ ПОУ ЕЦЙАХИСТэТЕ Linux.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - пЯОСАЯЛОСЛщМГ: еэМ ЕъСТЕ ЕНОИЙЕИЫЛщМОР ЛЕ ТО Linux, ХА ЛПОЯщСЕТЕ МА \n"
-"ЕПИКщНЕТЕ ЛЕТАНЩ СУСТчЛАТОР ЦЕМИЙчР ВЯчСГР, СУСТчЛАТОР АМэПТУНГР ч "
-"ЕНУПГЯЕТГТч\n"
-"ДИЙТЩОУ.\n"
"\n"
-" - еНЕИДИЙЕУЛщМГ: еэМ ЕъСТЕ ПОКЩ ЕНОИЙЕИЫЛщМОР ЛЕ СУСТчЛАТА GNU/Linux ЙАИ\n"
-"ХщКЕТЕ МА ПЯАЦЛАТОПОИчСЕТЕ ЛИА ЕНАИЯЕТИЙэ ПЯОСАЯЛОСЛщМГ ЕЦЙАТэСТАСГ, ТЭТЕ\n"
-"АУТч Г ЕПИКОЦч ЕъМАИ ЦИА САР. хА ЛПОЯщСЕТЕ МА ЕПИКщНЕТЕ ТЩПО ЕЦЙАТэСТАСГР\n"
-"ЭПЫР ЙАИ СТГМ ПАЯАПэМЫ (\"пЯОСАЯЛОСЛщМГ\") ЕПИКОЦч.\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1338,12 +1595,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"еПИКщНТЕ:\n"
"\n"
@@ -1352,223 +1610,429 @@ msgstr ""
"ЕНУПГЯЕТГТч\n"
"ДИЙТЩОУ.\n"
"\n"
+"\n"
" - еНЕИДИЙЕУЛщМГ: еэМ ЕъСТЕ ПОКЩ ЕНОИЙЕИЫЛщМОР ЛЕ СУСТчЛАТА GNU/Linux ЙАИ\n"
"ХщКЕТЕ МА ПЯАЦЛАТОПОИчСЕТЕ ЛИА ЕНАИЯЕТИЙэ ПЯОСАЯЛОСЛщМГ ЕЦЙАТэСТАСГ, ТЭТЕ\n"
"АУТч Г ЕПИКОЦч ЕъМАИ ЦИА САР. хА ЛПОЯщСЕТЕ МА ЕПИКщНЕТЕ ТЩПО ЕЦЙАТэСТАСГР\n"
-"ЭПЫР ЙАИ СТГМ ПАЯАПэМЫ (\"пЯОСАЯЛОСЛщМГ\") ЕПИКОЦч.\n"
+"ЭПЫР ЙАИ СТГМ ПАЯАПэМЫ (\"пЯОСАЯЛОСЛщМГ\") ЕПИКОЦч."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-"оИ ЕПИКОЦщР ПОУ щВЕТЕ СВЕТИЙэ ЛЕ ТГМ ВЯчСГ ТОУ СУСТчЛАТЭР САР (ЛЕ ДЕДОЛщМО\n"
-"ЭТИ ЕПИКщНАТЕ \"пЯОСАЯЛОСЛщМГ\" ч \"еНЕИДИЙЕУЛщМГ\" ЕъМАИ ОИ АЙЭКОУХЕР:\n"
+"оИ ЕПИКОЦщР ПОУ щВЕТЕ СВЕТИЙэ ЛЕ ТГМ ВЯчСГ ТОУ СУСТчЛАТЭР САР \n"
+"ЕъМАИ ОИ АЙЭКОУХЕР:\n"
"\n"
-" - йАМОМИЙч: еПИКщНТЕ АУТчМ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИГСЕТЕ ТО СЩСТГЛэ "
-"САР\n"
-" ЙУЯъЫР ЦИА ЙАХГЛЕЯИМч ВЯчСГ (ЕЯЦАСъЕР ЦЯАЖЕъОУ, ЦЯАЖИЙА ЙКП). дЕМ ХА \n"
-" ЕЦЙАТАСТАХОЩМ ЛЕТАЦКЫТИСТщР, ЕЯЦАКЕъА АМэПТУНГР ЙКП.\n"
+"\t* сТАХЛЭР ЕЯЦАСъАР: еПИКщНТЕ АУТчМ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИГСЕТЕ ТО "
+"СЩСТГЛэ\n"
+"\t САР ЙУЯъЫР ЦИА ЙАХГЛЕЯИМч ВЯчСГ, СТО СПъТИ ч СТО ЦЯАЖЕъО. \n"
"\n"
-" - аМэПТУНГ: еПИКщНТЕ АУТЭ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО СЩСТГЛэ САР\n"
-" ЙУЯъЫР ЦИА АМэПТУНГ КОЦИСЛИЙОЩ. хА ЕЦЙАТАСТАХЕъ ЛИА ПКчЯГР СУККОЦч "
+"\t* аМэПТУНГ: еПИКщНТЕ АУТЭ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО СЩСТГЛэ САР\n"
+"\t ЙУЯъЫР ЦИА АМэПТУНГ КОЦИСЛИЙОЩ. хА ЕЦЙАТАСТАХЕъ ЛИА ПКчЯГР СУККОЦч "
"ЕЯЦАКЕъЫМ\n"
-" ЦИА ЛЕТАЦКЧТИСГ, АПОСЖАКЛэТЫСГ ЙАИ ЛОЯЖОПОъГСГ ПГЦАъОУ ЙЧДИЙА, ЙАХЧР ЙАИ "
+"\t ЦИА ЛЕТАЦКЧТИСГ, АПОСЖАКЛэТЫСГ ЙАИ ЛОЯЖОПОъГСГ ПГЦАъОУ ЙЧДИЙА, ЙАХЧР "
+"ЙАИ\n"
+"\t ДГЛИОУЯЦъА ПАЙщТЫМ КОЦИСЛИЙОЩ.\n"
"\n"
-" ДГЛИОУЯЦъА ПАЙщТЫМ КОЦИСЛИЙОЩ.\n"
-"\n"
-" - еНУПГЯЕТГТчР: еПИКщНТЕ АУТЭ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО СЩСТГЛэ "
+"\t* еНУПГЯЕТГТчР: еПИКщНТЕ АУТЭ ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО СЩСТГЛэ "
"САР\n"
-" ЫР ЕНУПГЯЕТГТч, ЕъТЕ АЯВЕъЫМ (NFS ч SMB), ЕъТЕ ЕЙТУПЧСЕЫМ (lp ч SMB), "
-"ЕъТЕ \n"
-" ПИСТОПОъГСГР (NIS), БэСГР ДЕДОЛщМЫМ ЙКП. сЕ АУТчМ ТГМ ПЕЯъПТЫСГ, ДЕМ ХА "
-"\n"
-" ЕЦЙАТАСТАХОЩМ ПЯэЦЛАТА ЭПЫР ТО KDE, ТО Gnome ЙКП.\n"
+"\t ЫР ЕНУПГЯЕТГТч, ЕъТЕ АЯВЕъЫМ (NFS ч SMB), ЕъТЕ ЕЙТУПЧСЕЫМ (lp ч SMB), "
+"ЕъТЕ\n"
+"\t ПИСТОПОъГСГР (NIS), БэСГР ДЕДОЛщМЫМ ЙКП. сЕ АУТчМ ТГМ ПЕЯъПТЫСГ, ДЕМ ХА\n"
+"\t ЕЦЙАТАСТАХОЩМ ПЯэЦЛАТА ЭПЫР ТО KDE, ТО Gnome ЙКП."
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"тО DrakX ХА ПЯОСПАХчСЕИ ЙАТ' АЯВчМ МА ЕМТОПъСЕИ щМАМ ч ПЕЯИССЭТЕЯОУР\n"
-"PCI ПЯОСАЯЛОЦЕъР SCSI. еэМ ЕМТОПъСЕИ ЙэПОИОМ ч ЙэПОИОУР ЙАИ НщЯЕИ\n"
-"ПОИОЩР ОДГЦОЩР МА ВЯГСИЛОПОИчСЕИ, ХА ТО ЙэМЕИ АУТЭЛАТА.\n"
+"тО DrakX ХА ПЯОСПАХчСЕИ МА ЕМТОПъСЕИ ПЯОСАЯЛОЦЕъР SCSI ТЩПОУ PCI.\n"
+"еэМ ТО DrakX ЕМТОПъСЕИ щМАМ ПЯОСАЯЛОЦщА ПОУ НщЯЕИ ПЧР МА ТОМ "
+"ВЯГСИЛОПОИчСЕИ,\n"
+"ХА ЕЦЙАТАСТчСЕИ АУТЭЛАТА ТОМ ЙАТэККГКО ОДГЦЭ\n"
"\n"
"\n"
-"еэМ О SCSI ПЯОСАЯЛОЦщАР САР ЕъМАИ ISA ч ЙэПОИОР PCI ПОУ ДЕМ ЕъМАИ\n"
-"ЦМЫСТЭР СТО DrakX, ч ЕэМ ДЕМ щВЕТЕ ЕЦЙАТЕСТГЛщМО ПЯОСАЯЛОЦщА SCSI,\n"
-"ХА ЕЯЫТГХЕъТЕ ЕэМ щВЕТЕ ЙэПОИОМ ПЯОСАЯЛОЦщА. еэМ ДЕМ щВЕТЕ, АПАМТчСТЕ\n"
-"\"╪ВИ\". еэМ щВЕТЕ, АПАМТчСТЕ \"мАИ\". хА ЕЛЖАМИСТЕъ щМАР ЙАТэКОЦОР\n"
-"ЛЕ ОДГЦОЩР, АПЭ ТОМ ОПОъОМ ХА ПЯщПЕИ МА ЕПИКщНЕТЕ ТОМ ЙАТэККГКО.\n"
+"еэМ щВЕТЕ ПЯОСАЯЛОЦщА SCSI ТЩПОУ ISA, ЙэПОИОМ Лч АМАЦМЫЯъСИЛО PCI "
+"ПЯОСАЯЛОЦщА \n"
+"ч ДЕМ щВЕТЕ ЙАМщМАМ ПЯОСАЯЛОЦщА SCSI, ТО DrakX ХА САР ЯЫТчСЕИ ЕэМ щВЕТЕ "
+"ЙэПОИОМ \n"
+"ПЯОСАЯЛОЦщА SCSI СТО СЩСТГЛэ САР. еэМ ДЕМ щВЕТЕ, ПАТчСТЕ АПКЧР '╪ВИ'. еэМ "
+"ПАТчСЕТЕ\n"
+"'мАИ', ХА САР ФГТГХЕъ МА АПИКщНЕТЕ ТОМ ТЩПО ТОУ АПЭ щМАМ ЙАТэКОЦО.\n"
"\n"
"\n"
-"лЕТэ ТГМ ЕПИКОЦч ОДГЦОЩ, ТО DraЙв ХА САР ЯЫТчСЕИ ЕэМ ХщКЕТЕ МА ОЯъСЕТЕ\n"
-"ЯУХЛъСЕИР ЦИА ТОМ ОДГЦЭ. йАТ' АЯВчМ, АЖчСТЕ ТОМ ОДГЦЭ МА ПЯОСДИОЯъСЕИ\n"
-"ЛЭМОР ТОУ ТИР ЙАТэККГКЕР ЯУХЛъСЕИР. аУТЭ СУМчХЫР щВЕИ ТО ЕПИХУЛГТЭ\n"
-"АПОТщКЕСЛА.\n"
+"еэМ ЕПИКщНЕТЕ ПЯОСАЯЛОЦщА, ТО DrakX ХА САР ЯЫТчСЕИ ЕэМ ХщКЕТЕ МА ОЯъСЕТЕ "
+"ЕПИКОЦщР.\n"
+"сУМчХЫР, АЖчМОМТАР ТО DrakX МА ЯУХЛъСЕИ АУТЭЛАТА ТОМ ПЯОСАЯЛОЦщА, ДЕМ ХА "
+"щВЕТЕ ПЯЭБКГЛА.\n"
"\n"
"\n"
-"еэМ АУТЭ ДЕМ ИСВЩЕИ, ВЯГСИЛОПОИчСТЕ ТИР ЯУХЛъСЕИР ПОУ АМАЖщЯОМТАИ\n"
-"СТГМ ТЕЙЛГЯъЫСГ ТОУ УКИЙОЩ САР ч АУТщР ПОУ ИСВЩОУМ СТА Windows \n"
-"(ЕэМ АУТэ ЕИМАИ ЕЦЙАТЕСТГЛщМА СТОМ УПОКОЦИСТч САР), ЭПЫР АМАЖщЯЕТАИ\n"
-"СТОМ ОДГЦЭ ЕЦЙАТэСТАСГР."
+"сЕ АМТъХЕТГ ПЕЯъПТЫСГ, ХА ПЯщПЕИ МА ДЧСЕТЕ ЕПИКОЦщР ЦИА ТОМ ОДГЦЭ. \n"
+"сУЛБОУКЕУТЕъТЕ ТОМ оДГЦЭ еЦЙАТэСТАСГР ЦИА ТО ПЧР ХА БЯЕъТЕ АУТщР ТИР \n"
+"ПКГЯОЖОЯъЕР АПЭ ТГМ ЕЦЙАТэСТАСГ ТЫМ Windows (АМ УПэЯВЕИ), АПЭ ТГМ "
+"ТЕЙЛГЯъЫСГ\n"
+"ТОУ УКИЙОЩ ч АПЭ ТГМ ИСТОСЕКъДА ТОУ ЙАТАСЙЕУАСТч (АМ щВЕТЕ ПЯЭСБАСГ СТО "
+"Internet)."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"сЕ АУТЭ ТО СГЛЕъО, ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ ПОИщР ЙАТАТЛчСЕИР ХА "
-"ВЯГСИЛОПОИчСЕТЕ\n"
-"ЦИА ТГМ ЕЦЙАТэСТАСГ ТОУ Linux-Mandrake, АМ АУТщР щВОУМ чДГ ОЯИСТЕъ (АПЭ\n"
-"ПАКАИЭТЕЯГ ЕЦЙАТАСТАСГ Linux ч АПЭ ЙэПОИО ЕЯЦАКЕъО ЙАТАТЛчСЕЫМ). "
-"дИАЖОЯЕТИЙэ,\n"
-"ХА ПЯщПЕИ МА ОЯъСЕТЕ ЙАТАТЛчСЕИР. аУТч Г ДИАДИЙАСъА СУМъСТАТАИ СТОМ \n"
-"КОЦИЙЭ ДИАВЫЯИСЛЭ ТОУ ВЧЯОУ ТОУ СЙКГЯОЩ САР ДъСЙОУ СЕ ПЕЯИОВщР.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"еэМ ПЯщПЕИ МА ДГЛИОУЯЦчСЕТЕ МщЕР ЙАТАТЛчСЕИР, ЕПИКщНТЕ \"аУТЭЛАТГ\n"
-"ЙАТАМОЛч\" ЦИА АУТЭЛАТГ ДГЛИОУЯЦъА ТЫМ ЙАТэККГКЫМ ЙАТАТЛчСЕЫМ.\n"
-"лПОЯЕъТЕ МА ЕПИКщНЕТЕ СЕ ПОИЭМ СЙКГЯЭ ДъСЙО ХА ДГЛИОУЯЦГХОЩМ ОИ\n"
-"ЙАТАТЛчСЕИР ЙэМОМТАР ЙКИЙ СТО \"hda\" ЦИА ТОМ ПЯЧТО IDE ДъСЙО, \n"
-"СТО \"hdb\" ЦИА ТОМ ДЕЩТЕЯО IDE ДъСЙО, СТО \"sda\" ЦИА ТОМ ПЯЫТО\n"
-"SCSI ДъСЙО ЙКП.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"дЩО СУМГХИСЛщМЕР ЙАТАТЛчСЕИР ЕъМАИ: г ЙЩЯИА ЙАТэТЛГСГ (/), Г ОПОъА\n"
-"ЕъМАИ ТО АЯВИЙЭ СГЛЕъО ТГР ИЕЯАЯВъАР ТОУ СУСТчЛАТОР АЯВЕъЫМ ЙАИ Г\n"
-"/boot, Г ОПОъА ПЕЯИщВЕИ ТА АПАЯАъТГТА ЦИА ТГМ ЕЙЙъМГСГ ТОУ СУСТчЛАТОР\n"
-"АЯВЕъА.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"еПЕИДч ТА АПОТЕКщСЛАТА ТГР ДИАДИЙАСъАР ЙАТэТЛГСГР ЕъМАИ СУМчХЫР ЛГ\n"
-"АМАСТЯщЬИЛА, Г ДИАДИЙАСъА АУТч ЛПОЯЕъ МА ЕъМАИ ДЩСЙОКГ ЦИА щМАМ\n"
-"эПЕИЯО ВЯчСТГ. тО DiskDrake ТГМ АПКОПОИЕъ ЭСО ЕъМАИ ДУМАТЭМ.\n"
-"сУЛБОУКЕУТЕъТЕ ТГМ ТЕЙЛГЯъЫСГ ЙАИ ЛГМ БИАСТЕъТЕ СТИР ЙИМчСЕИР САР.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"лПОЯЕъТЕ МА ЕЙТЕКщСЕТЕ ТИР ЕЯЦАСъЕР ВЯГСИЛОПОИЧМТАР ТО ПКГЙТЯОКЭЦИО: \n"
-"ЛЕТАЙИМГХЕъТЕ ВЯГСИЛОПОИЧМТАР ТО ПКчЙТЯО Tab ЙАИ ТА ПэМЫ ЙАИ ЙэТЫ БщКГ.\n"
-"╪ТАМ ЛъА ЙАТэТЛГСГ щВЕИ ЕПИКЕЦЕъ, ЛПОЯЕъТЕ МА ПАТчСЕТЕ:\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-C ЦИА ДГЛИОУЯЦъА МщАР ЙАТэТЛГСГР (СЕ эДЕИО ВЧЯО)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d ЦИА ДИАЦЯАЖч ЙАТэТЛГСГР\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m ЦИА ОЯИСЛЭ СГЛЕъОУ СЩМДЕСГР\n"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"╪КЕР ОИ МщЕР ЙАТАТЛчСЕИР ПЯщПЕИ МА ЛОЯЖОПОИГХОЩМ ПЯЫТОЩ \n"
-"ВЯГСИЛОПОИГХОЩМ (ЛОЯЖОПОъГСГ ЕъМАИ Г ДГЛИОУЯЦъА СУСТчЛАТОР\n"
-"АЯВЕъЫМ). сЕ АУТЭ ТО СГЛЕъО, ъСЫР ХЕКчСЕТЕ МА ЛОЯЖОПОИчСЕТЕ\n"
-"НАМэ ЙАИ ЙэПОИЕР УПэЯВОУСЕР ЙАТАТЛчСЕИР ЦИА МА СБчСЕТЕ эВЯГСТА\n"
-"ДЕДОЛщМА ПОУ ъСЫР ПЕЯИщВОУМ. сГЛЕъЫСГ: дЕМ ЕъМАИ АПАЯАъТГТО МА \n"
-"ЕПАМАЛОЯЖОПОИчСЕТЕ УПэЯВОУСЕР ЙАТАТЛчСЕИР, ЕИДИЙэ АМ ПЕЯИщВОУМ\n"
-"АЯВЕъА ЙАИ ДЕДОЛщМА ТА ОПОъА ХА ХщКАТЕ МА ЙЯАТчСЕТЕ. сУМчХЫР \n"
-"ДИАТГЯОЩМТАИ ОИ ЙАТАТЛчСЕИР /home ЙАИ /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"лПОЯЕъТЕ ТЧЯА МА ЕПИКщНЕТЕ ТИР ОЛэДЕР ПАЙщТЫМ ПОУ ЕПИХУЛЕъТЕ МА "
-"ЕЦЙАТАСТчСЕТЕ\n"
-"ч МА АМАБАХЛъСЕТЕ. тО DrakX ХА ПЯОСДИОЯъСЕИ ЕэМ щВЕТЕ АЯЙЕТЭ ВЧЯО СТОМ ДъСЙО "
-"САР.\n"
+"ЕЦЙАТАСТчСЕТЕ ч МА АМАБАХЛъСЕТЕ.\n"
+"\n"
+"\n"
+"тО DrakX ХА ПЯОСДИОЯъСЕИ ЕэМ щВЕТЕ АЯЙЕТЭ ВЧЯО СТОМ ДъСЙО САР.\n"
"еэМ ЭВИ, ХА КэБЕТЕ ЛИА ПЯОЕИДОПОъГСГ. еэМ ХщКЕТЕ МА СУМЕВъСЕТЕ, ХА "
"ЕЦЙАТАСТАХОЩМ\n"
"ЭКЕР ОИ ЕПИКЕЦЛщМЕР ОЛэДЕР, АККэ ХА АЖАИЯЕХОЩМ ЙэПОИА ПАЙщТА ЕКэССОМОР "
@@ -1577,146 +2041,157 @@ msgstr ""
"ПАЙщТЫМ\". сЕ АУТч\n"
"ТГ ПЕЯъПТЫСГ ХА ПЯщПЕИ МА ЕПИКщНЕТЕ АМэЛЕСА СЕ ПАЯАПэМЫ АПЭ 1000 ПАЙщТА."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"еэМ щВЕТЕ ЭКА ТА ПАЯАПэМЫ CDs, ПАТчСТЕ Ok.\n"
"еэМ ДЕМ щВЕТЕ ЙАМщМА АПЭ ТА ПАЯАПэМЫ CDs, ПАТчСТЕ аЙЩЯЫСГ.\n"
"еэМ ДЕМ щВЕТЕ ЙэПОИА АПЭ АУТэ, АПОЕПИКщНТЕ ТА ЙАИ ПАТчСТЕ Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"тА ПАЙщТА ПОУ ЕПИКщНАТЕ ХА ЕЦЙАТАСТАХОЩМ ТЧЯА. аУТч Г ДИАДИЙАСъА\n"
-"ХА ДИАЯЙщСЕИ ЛЕЯИЙэ КЕПТэ, ЕЙТЭР ЕэМ щВЕТЕ ЕПИКщНЕИ МА АМАБАХЛъСЕТЕ\n"
-"ЛИА УПэЯВОУСА ЕЦЙАТэСТАСГ, ОПЭТЕ ХА ДИАЯЙщСЕИ ПЕЯИССЭТЕЯО АЙЭЛА ЙАИ\n"
-"ПЯИМ АЯВъСЕИ Г АМАБэХЛИСГ."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"еэМ ТО DrakX АПщТУВЕ МА ПЯОСДИОЯъСЕИ ТОМ ТЩПО ПОМТИЙИОЩ ПОУ\n"
-"ВЯГСИЛОПОИЕъТЕ, ч ЕэМ ХщКЕТЕ МА ДЕъТЕ ТИ АЙЯИБЧР щЙАМЕ, ХА САР\n"
-"ПАЯОУСИАСТЕъ О ПАЯАПэМЫ ЙАТэКОЦОР.\n"
-"\n"
-"\n"
-"еэМ СУЛЖЫМЕъТЕ ЛЕ ТИР ЕПИКОЦщР ТОУ DrakX, АПКэ ПЯОВЫЯчСТЕ СТГМ\n"
-"ПЕЯИОВч ПОУ САР ЕМДИАЖщЯЕИ ЙэМОМТАР ЙКИЙ ЛЕ ТО ПОМТъЙИ СТО ЛЕМОЩ\n"
-"СТА АЯИСТЕЯэ. аККИЧР, ЕПИКщНТЕ щМАМ ТЩПО ПОМТИЙИОЩ ПОУ ПИСТЕЩЕТЕ\n"
-"ЭТИ ЕъМАИ ПКГСИщСТЕЯОР СТОМ ДИЙЭ САР.\n"
-"\n"
-"\n"
-"сТГМ ПЕЯъПТЫСГ СЕИЯИАЙОЩ ПОМТИЙИОЩ, ХА ПЯщПЕИ ЕПъСГР МА ПЕъТЕ СТО\n"
-"DrakX СЕ ПОИэ ХЩЯА ЕъМАИ СУМДЕДЕЛщМО ТО ПОМТъЙИ САР."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"пАЯАЙАКЧ ЕПИКщНТЕ ТГМ ЙАТэККГКГ ХЩЯА. цИА ПАЯэДЕИЦЛА, Г COM1 СТА Windows\n"
-"ОМОЛэФЕТАИ ttyS0 СТО Linux."
+"пАЯАЙАКЧ ЕПИКщНТЕ ТГМ ЙАТэККГКГ ХЩЯА. цИА ПАЯэДЕИЦЛА,\n"
+"Г COM1 СТА Windows ОМОЛэФЕТАИ ttyS0 СТО GNU/Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"аУТЭ ТО СГЛЕъО АЖОЯэ ТГМ ЯЩХЛИСГ ТОПИЙОЩ ДИЙТЩОУ (LAN) ч ТОУ\n"
-"modem.\n"
-"\n"
-"еПИКщНТЕ \"тОПИЙЭ дъЙТУО\" ЙАИ ТО DrakX ХА ПЯОСПАХчСЕИ МА \n"
-"ЕМТОПИСЕИ ЛИА ЙэЯТА ДИЙТЩОУ Ethernet СТО СУСТГЛэ САР. оИ ЙэЯТЕР\n"
-"PCI ХА ЕМТОПИСТОЩМ ЙАИ ХА ЕЦЙАТАСТАХОЩМ АУТЭЛАТА. \n"
-"аМ ЭЛЫР Г ЙэЯТА САР ЕъМАИ ТЩПОУ ISA, О АУТЭЛАТОР ЕМТОПИСЛЭР ДЕМ \n"
-"ХА КЕИТОУЯЦчСЕИ ЙАИ ХА ПЯщПЕИ МА ЕПИКщНЕТЕ щМАМ ОДГЦЭ АПЭ ТОМ \n"
-"ЙАТэКОЦО ПОУ ХА ЕЛЖАМИСТЕъ АЛщСЫР ЛЕТэ.\n"
-"\n"
-"\n"
-"╪СО АЖОЯэ ТИР ЙэЯТЕР SCSI, ЛПОЯЕъТЕ МА АЖчСЕТЕ ТОМ ОДГЦЭ МА ЕМТОПъСЕИ\n"
-"ТОМ ПЯОСАЯЛОЦщА (ЙАЯТА) ТГМ ПЯЧТГ ЖОЯэ, АККИЧР ХА ПЯщПЕИ МА ДЧСЕТЕ\n"
-"ЕСЕъР ТИР СВЕТИЙщР ПАЯАЛщТЯОУР, ТИР ОПОъЕР ХА ЕМТОПъСЕТЕ АПЭ ТГМ\n"
-"ТЕЙЛГЯъЫСГ ТОУ УКИЙОЩ САР.\n"
-"\n"
-"\n"
-"еэМ ЕЦЙАХИСТэТЕ ТО Linux-Mandrake ЫР ЛщЯОР ЕМЭР чДГ УПэЯВОМТОР ДИЙТЩОУ,\n"
-"О ДИАВЕИЯИСТчР ТОУ ДИЙТЩОУ САР ХА САР щВЕИ чДГ ДЧСЕИ ТИР АПАЯАъТГТЕР \n"
-"ПКГЯОЖОЯъЕР (ДИЕЩХУМСГ IP, ЭМОЛА, ЛэСЙА ДИЙТЩОУ). еэМ ЕТОИЛэФЕТЕ щМА\n"
-"МщО ДъЙТУО, ЦИА ПАЯэДЕИЦЛА СТО СПъТИ, ХА ПЯщПЕИ МА АПОЖАСъСЕТЕ ЛЭМОР\n"
-"САР ЦИА ТИР ДИЕУХЩМСЕИР.\n"
-"\n"
-"\n"
-"еПИКщНТЕ \"вЯчСГ modem\" ЦИА МА ЯУХЛъСЕТЕ ТГМ СЩМДЕСГ ЛЕ ТО дИАДъЙТУО\n"
-"ЛщСЫ modem. тО DrakX ХА ПЯОСПАХчСЕИ МА ЕМТОПъСЕИ ТО modem САР. еэМ\n"
-"АПОТЩВЕИ, ХА ПЯщПЕИ МА ЕПИКщНЕТЕ ТГМ СЕИЯИАЙч ХЩЯА СТГМ ОПОъА ЕъМАИ\n"
-"СУМДЕДЕЛщМО ТО modem САР."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"лПОЯЕъТЕ ТЧЯА МА ЕИСэЦЕТЕ ТО ДИЙТУАЙЭ ЭМОЛА (ЕэМ ВЯЕИэФЕТАИ). еэМ ДЕМ ЕъСТЕ "
+"СъЦОУЯОР,\n"
+"ЛПОЯЕъТЕ МА ФГТчСЕТЕ ПКГЯОЖОЯъЕР АПЭ ТОМ ПАЯОВщА САР."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"еИСэЦЕТЕ:\n"
+"лПОЯЕъТЕ ТЧЯА МА ЯУХЛъСЕТЕ ТГМ СУСЙЕУч ДИЙТЩОУ.\n"
"\n"
" - дИЕЩХУМСГ IP: еэМ ДЕМ ТГМ НщЯЕТЕ, ЯЫТчСТЕ ТОМ УПЕЩХУМО ДИЙТЩОУ ч\n"
"ТОМ ПАЯОВщА САР.\n"
+"дЕМ ПЯщПЕИ МА ЕИСэЦЕТЕ ДИЕЩХУМСГ IP ЕэМ ЕПИКщНЕТЕ \"аУТЭЛАТГ АПЭДОСГ IP\"\n"
+"ПАЯАЙэТЫ.\n"
"\n"
"\n"
" - лэСЙА ДИЙТЩОУ: \"255.255.255.0\" ЕъМАИ СУМчХЫР ЙАКч ЕПИКОЦч. еэМ ДЕМ\n"
@@ -1725,13 +2200,28 @@ msgstr ""
"\n"
" - аУТЭЛАТГ АПЭДОСГ IP: еэМ ТО ДъЙТУЭ САР ВЯГСИЛОПОИЕъ щМА АПЭ ТА "
"ПЯОТЭЙОККА\n"
-"bootp ч dhcp, ЕПИКщНТЕ АУТЭ. сЕ АУТч ТГМ ПЕЯъПТЫСГ, ДЕМ ВЯЕИэФЕТАИ МА "
+"BOOTP ч DHCP, ЕПИКщНТЕ АУТЭ. сЕ АУТч ТГМ ПЕЯъПТЫСГ, ДЕМ ВЯЕИэФЕТАИ МА "
"ДЧСЕТЕ\n"
-"ДИЕЩХУМСГ IP ч ЛэСЙА ДИЙТЩОУ. еэМ ДЕМ ЕъСТЕ СъЦОУЯОР, ЯЫТчСТЕ ТОМ УПЕЩХУМО "
-"ДИЙТЩОУ ч\n"
-"ТОМ ПАЯОВщА САР.\n"
+"ДИЕЩХУМСГ IP. еэМ ДЕМ ЕъСТЕ СъЦОУЯОР, ЯЫТчСТЕ ТОМ УПЕЩХУМО ДИЙТЩОУ ч\n"
+"ТОМ ПАЯОВщА САР."
+
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"лПОЯЕъТЕ ТЧЯА МА ЕИСэЦЕТЕ ТО ДИЙТУАЙЭ САР ЭМОЛА. еэМ ДЕМ\n"
+"ЕъСТЕ СъЦОУЯОИ, СУЛБОУКЕУХЕъТЕ ТОМ УПЕЩХУМО ДИЙТЩОУ."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"лПОЯЕъТЕ ТЧЯА МА ЕИСэЦЕТЕ ТО ДИЙТУАЙЭ САР ЭМОЛА. еэМ ДЕМ\n"
+"ЕъСТЕ СъЦОУЯОИ, АЖчСТЕ ТО ЙЕМЭ."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1739,7 +2229,7 @@ msgstr ""
"лПОЯЕъТЕ ТЧЯА МА ЕИСэЦЕТЕ ТИР ЕПИКОЦщР ТОУ dialup. еэМ ДЕМ ЕъСТЕ СъЦОУЯОР,\n"
"ЛПОЯЕъТЕ МА ФГТчСЕТЕ ПКГЯОЖОЯъЕР АПЭ ТОМ ПАЯОВщА САР."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1747,13 +2237,14 @@ msgstr ""
"еэМ ВЯГСИЛОПОИчСЕТЕ proxies, ПАЯАЙАКЧ ЯУХЛъСТЕ ТОУР ТЧЯА. еэМ ДЕМ НщЯЕТЕ,\n"
"ЯЫТчСТЕ ТОМ ПАЯОВщА САР ч ТОМ УПЕЩХУМО ДИЙТЩОУ."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1765,112 +2256,249 @@ msgstr ""
"сГЛЕИЧСТЕ ЭТИ ПЯщПЕИ МА ЕПИКщНЕТЕ ТЭПО ЙАИ ПАЙщТА СЩЛЖЫМА ЛЕ ТГМ\n"
"МОЛОХЕСъА САР."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"лПОЯЕъТЕ ТЧЯА МА ЕПИКщНЕТЕ ТГМ ФЧМГ ЧЯАР АМэКОЦА ЛЕ ТО ЛщЯОР ТОУ\n"
-"ПКАМчТГ цГ ЭПОУ ЙАТОИЙЕъТЕ.\n"
-"\n"
-"\n"
-"тО Linux ВЕИЯъФЕТАИ ТГМ ЧЯА СЕ GMT (\"Greenwich Mean Time\" ч \n"
+"тО GNU/Linux ВЕИЯъФЕТАИ ТГМ ЧЯА СЕ GMT (\"Greenwich Mean Time\" ч \n"
"\"лЕСГЛБЯИМч ©ЯА цЙЯчМОУИТР\") ЙАИ ТГМ ЛЕТАТЯщПЕИ СЕ ТОПИЙч ЧЯА\n"
-"БэСЕИ ТГР ФЧМГР ЧЯАР ПОУ ХА ЕПИКщНЕТЕ."
+"БэСЕИ ТГР ФЧМГР ЧЯАР ПОУ ХА ЕПИКщНЕТЕ.\n"
+"\n"
+"еэМ СТО ъДИО СЩСТГЛА щВЕТЕ ПАЯэККГКА ЙАИ Microsoft Windows, ЕПИКщНТЕ \"╪ВИ\"."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
+msgstr ""
+"лПОЯЕъТЕ ТЧЯА МА ЕПИКщНЕТЕ ПОИщР УПГЯЕСъЕР ХщКЕТЕ МА НЕЙИМОЩМ ЙАТэ ТГМ \n"
+"ЕЙЙъМГСГ.\n"
+"\n"
+"\n"
+"еэМ ЛЕТАЙИМчСЕТЕ ТОМ ДЯОЛщА ТОУ ПОМТИЙИОЩ ПэМЫ СЕ ЛъА АПЭ АУТщР, \n"
+"ХА ЕЛЖАМИСТЕъ щМА ЛПАКОМэЙИ БОГХЕъАР ПОУ ХА ЕНГЦЕъ ТОМ ЯЭКО ТГР.\n"
+"\n"
+"\n"
+"пЯОСщНТЕ АУТЭ ТО БчЛА ЕэМ СЙОПЕЩЕТЕ МА ВЯГСИЛОПОИчСЕТЕ СТО СЩСТГЛА САМ \n"
+"ЕНУПГЯЕТГТч. дЕМ ХА ХщКАТЕ МА НЕЙИМчСЕТЕ УПГЯЕСъЕР ПОУ ДЕМ ВЯЕИэФЕСТЕ, \n"
+"ДИЭТИ ОЯИСЛщМЕР УПГЯЕСъЕР ЕЛПЕЯИщВОУМ ЙИМДЩМОУР АСЖАКЕъАР ЕэМ УПэЯВОУМ \n"
+"СЕ ЕНУПГЯЕТГТч.\n"
+"цЕМИЙэ, ЕПИКщНТЕ ЛЭМО ТИР УПГЯЕСъЕР ПОУ ВЯЕИэФЕСТЕ ПЯАЦЛАТИЙэ."
+
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
-"лПОЯЕъТЕ ТЧЯА МА АПИКщНЕТЕ ПОИщР УПГЯЕСъЕР ХщКЕТЕ МА НЕЙИМОЩМ ЙАТэ ТГМ \n"
-"ЕЙЙъМГСГ. еэМ ЛЕТАЙИМчСЕТЕ ТОМ ДЯОЛщА ТОУ ПОМТИЙИОЩ ПэМЫ СЕ ЛъА АПЭ АУТщР, \n"
-"ХА ЕЛЖАМИСТЕъ щМА ЛПАКОМэЙИ БОГХЕъАР ПОУ ХА ЕНГЦЕъ ТОМ ЯЭКО ТГР."
+"лПОЯЕъТЕ МА ОЯъСЕТЕ щМАМ ТОПИЙЭ ЕЙТУПЫТч (СУМДЕДЕЛщМО СТОМ УПОКОЦИСТч САР) \n"
+"ч щМАМ АПОЛЕЛАЙЯУСЛщМО (ПЯОСБэСИЛО ЛщСЫ UNIX ДИЙТЩОУ, Netware ч ДИЙТЩОУ \n"
+"Microsoft Windows)."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+"еэМ ХщКЕТЕ МА ЕЙТУПЧМЕТЕ, ЕПИКщНТЕ щМА СПЭ ТА ДЩО СУСТчЛАТА ЕЙТЩПЫСГР \n"
+"(CUPS ЙАИ LPR.\n"
+"\n"
+"\n"
+"тО CUPS ЕъМАИ щМА МщО, ДУМАТЭ ЙАИ ЕУщКИЙТО СЩСТГЛА ЕЙТЩПЫСГР ЦИА UNIX \n"
+"СУСТчЛАТА. аУТч ЕъМАИ Г БАСИЙч ЕПИКОЦч ЦИА ТО Linux-Mandrake.\n"
+"\n"
+"\n"
+"тО LPR ЕъМАИ ТО ПАКИЭ ЙКАССИЙЭ СЩСТГЛА ЕЙТЩПЫСГР.\n"
+"\n"
+"еэМ ДЕМ щВЕТЕ СЙТУПЫТч, ЕПИКщНТЕ \"йАМщМА\"."
+
+#: ../../help.pm_.c:505
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-"тО Linux ЛПОЯЕъ МА СУМЕЯЦАСТЕъ ЛЕ ПОККОЩР ТЩПОУР ЕЙТУПЫТЧМ. о\n"
-"ЙАХщМАР АПЭ АУТОЩР АПАИТЕъ ДИАЖОЯЕТИЙщР ЯУХЛъСЕИР. сГЛЕИЧСТЕ ЭТИ\n"
-"ТО ПЯЭЦЯАЛЛА ЕЙТЩПЫСГР ВЯГСИЛОПОИЕъ ТО 'lp' ЫР ЕН' ОЯИСЛОЩ ЭМОЛА\n"
-"ЕЙТУПЫТч, ОПЭТЕ ПЯщПЕИ МА щВЕТЕ ОПЫСДчПОТЕ щМАМ ЕЙТУПЫТч ЛЕ АУТЭ\n"
-"ТО ЭМОЛА. лПОЯЕъТЕ ЭЛЫР МА ДЧСЕТЕ ПЕЯИССЭТЕЯА ТОУ ЕМЭР ОМЭЛАТА СЕ\n"
-"щМАМ ЕЙТУПЫТч, ДИАВЫЯъФОМТэР ТА ЛЕ '|'. оПЭТЕ, ЕэМ ПЯОТИЛэТЕ щМА ПИО\n"
-"ЕЩЙОКО ЭМОЛА, ПЯщПЕИ МА ТО ДЧСЕТЕ ПЯЧТО, П.В. \"My Printer|lp\".\n"
-"о ЕЙТУПЫТчР ПОУ ОМОЛэФЕТАИ (ЙАИ) \"lp\" ХА ЕъМАИ О ЕН' ОЯИСЛОЩ ЕЙТУПЫТчР.\n"
+"тО GNU/Linux ЛПОЯЕъ МА СУМЕЯЦАСТЕъ ЛЕ ДИэЖОЯОУР ТЩПОУР ЕЙТУПЫТЧМ. о ЙАХщМАР "
+"АПЭ\n"
+"АУТОЩР ВЯЕИэФЕТАИ ДИАЖОЯЕТИЙщР ЯУХЛъСЕИР.\n"
+"\n"
+"еэМ О ЕЙТУПЫТчР САР ЕъМАИ СУМДЕДЕЛщМОР СТО СЩСТГЛэ САР, ЕПИКщНТЕ \"тОПИЙЭР\n"
+"еЙТУПЫТчР\".\n"
+"\n"
+"еэМ ХщКЕТЕ МА ЕЙТУПЧМЕТЕ СЕ щМАМ ЕЙТУПЫТч ТОПОХЕТГЛщМО СЕ АПОЛЕЛАЙЯУСЛщМО "
+"UNIX\n"
+"СЩСТГЛА, ЕПИКщНТЕ \"аПОЛЕЛАЙЯУСЛщМОР ЕЙТУПЫТчР\".\n"
+"\n"
+"\n"
+"еэМ ХщКЕТЕ МА ЕЙТУПЧМЕТЕ СЕ щМАМ ЕЙТУПЫТч ТОПОХЕТГЛщМО СЕ АПОЛЕЛАЙЯУСЛщМО "
+"Windows\n"
+"СЩСТГЛА (ч UNIX ЛЕ SMB ПЯЫТЭЙОККО), ЕПИКщНТЕ \"SMB/Windows 95/98/NT\"."
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"еэМ О ЕЙТУПЫТчР САР ЕъМАИ АП' ЕУХЕъАР СУМДЕДЕЛщМОР СТОМ УПОКОЦИСТч\n"
-"САР, ЕПИКщНТЕ \"тОПИЙЭР ЕЙТУПЫТчР\". хА ПЯщПЕИ ТЭТЕ МА ОЯъСЕТЕ \n"
-"СЕ ПОИэ ХЩЯА ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТчР САР ЙАИ МА ЕПИКщНЕТЕ\n"
-"ТО ЙАТэККГКО ЖъКТЯО (ОДГЦЭ).\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"еэМ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ щМАМ ЕЙТУПЫТч СУМДЕДЕЛщМО СЕ ЙэПОИО\n"
-"АПОЛЕЛАЙЯУСЛщМО Unix СЩСТГЛА, ЕПИКщНТЕ \"аПОЛЕЛАЙЯУСЛщМОР lpd\".\n"
-"дЕМ ВЯЕИэФЕТАИ МА ДЧСЕТЕ ЙЫДИЙЭ ВЯчСТГ ЙАИ ЙКЕИДъ, АККэ ПЯщПЕИ МА НщЯЕТЕ\n"
-"ТО ЭМОЛА ТГР ОУЯэР ТОУ ЕЙТУПЫТч ПОУ ХА ВЯГСИЛОПОИчСЕТЕ.\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"еэМ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ щМАМ ЕЙТУПЫТч SMB (ДГКАДч щМАМ ЕЙТУПЫТч\n"
-"СУМДЕДЕЛщМО СЕ ЙэПОИО СЩСТГЛА Windows 9x/NT), ХА ПЯщПЕИ МА ДЫСЕТЕ\n"
-"ТО ЭМОЛА SMB (ТО ОПОъО ДЕМ ЕъМАИ ЭМОЛА TCP/IP) ЙАИ ПИХАМЧР ЙАИ ТГМ\n"
-"ДИЕЩХУМСГ IP, ЙАХЧР ЕПъСГР ЙАИ ЙЫДИЙЭ ВЯчСТГ, КщНГ ЙКЕИДъ ЙАИ \n"
-"ЭМОЛА ТОЛщА Г ОЛэДАР ЕЯЦАСъАР ЙАИ ЖУСИЙэ ТО ЭМОЛА ТОУ ЕЙТУПЫТч.\n"
-"тА ъДИА ИСВЩОУМ ЙАИ ЦИА ЕЙТУПЫТщР NetWare, ЛЕ ТГМ ДИАЖОЯэ ЭТИ \n"
-"ДЕМ АПАИТЕъТАИ ЭМОЛА ТОЛщА ч ОЛэДАР ЕЯЦАСъАР."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:567
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"дЕМ ЕМТОПъСТГЙЕ ЕЙТУПЫТчР. пАЯАЙАКЧ ЕИСэЦЕТЕ ТО ЭМОЛА ТГР СУСЙЕУчР СТГМ\n"
+" ОПОъА ЕъМАИ СУМДЕДЕЛщМОР.\n"
+"\n"
+"\n"
+"оИ ПЕЯИССЭТЕЯОИ ЕЙТУПЫТщР СУМДщОМТАИ СТГМ ПЯЧТГ ПАЯэККГКГ ХЩЯА. аУТч "
+"ОМОЛэФЕТАИ\n"
+"\"/dev/lp0\" СТО GNU/Linux ЙАИ \"LPT1\" СТА Microsoft Windows."
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "еПИКщНТЕ ТОМ ЕЙТУПЫТч САР СТОМ ПАЯАПэМЫ ЙАТэКОЦО"
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"пАЯАЙАКЧ ЕПИКщНТЕ ТИР ЙАТэККГКЕР ЯУХЛъСЕИР ЦИА ТОМ ЕЙТУПЫТч САР.\n"
+"йОИТэНТЕ ТГМ ТЕЙЛГЯъЫСГ ТОУ ЕЙТУПЫТч ЕэМ ДЕМ НщЯЕТЕ ТИ МА ЕПИКщНЕТЕ.\n"
+"\n"
+"\n"
+"╦ВЕТЕ ТГМ ДУМАТЭТГТА МА ЕКщЦНЕТЕ ТИР ЕПИКОЦщР САР СТО ЕПЭЛЕМО БчЛА ЙАИ МАТИР "
+"ТЯОПОПОИчСЕТЕ АМ ДЕМ КЕИТОУЯЦОЩМ ЭПЫР ХА ХщКАТЕ."
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"лПОЯЕъТЕ ТЧЯА МА ОЯъСЕТЕ ТГ КщНГ-ЙКЕИДъ ЦИА ТОМ ВЯчСТГ \"root\".\n"
"г КщНГ ПЯщПЕИ МА ЕИСАВХЕъ ЕИР ДИПКОЩМ ЦИА ЕПИБЕБАъЫСГ.\n"
@@ -1881,13 +2509,14 @@ msgstr ""
"ЕПИКщНТЕ ПЯОСЕЙТИЙэ АУТч ТГ КщНГ ЙКЕИДъ! лГ ЕНОУСИОДОТГЛщМГ \n"
"ПЯЭСБАСГ СТО root ЛПОЯЕъ МА ЕъМАИЕНАИЯЕТИЙэ ЕПИЙъМДУМГ ЦИА \n"
"ТГМ АЙЕЯАИЭТГТА ТОУ СУСТчЛАТОР ЙАИ ТЫМ ДЕДОЛщМЫМ ТОУ, ЙАХЧР \n"
-"ЙАИ ЦИА эККА СУСТчЛАТА СУМДЕДЕЛщМА СЕ АУТЭ. г КщНГ ЙКЕИДъ ПЯщПЕИ\n"
-"МА ЕъМАИ ЛИА ЛъНГ АКЖАЯИХЛГТИЙЧМ ВАЯАЙТчЯЫМ ЙАИ ЛЕ ЛчЙОР ТОУКэВИСТОМ\n"
-"ОЙТЧ (8) ВАЯАЙТчЯЫМ. дЕМ ПЯщПЕИ *ПОТщ* МА ТО ЦЯэЬЕТЕ СЕ ВАЯТъ. лГМ\n"
-"ТО ЙэМЕТЕ ЭЛЫР ПОКЩ ЛАЙЯЩ ч ПЕЯъПКОЙО, ЛИАР ЙАИ ХА ПЯщПЕИ МА ЕъСТЕ\n"
-"СЕ ХщСГ МА ТО ХУЛэСТЕ ВЫЯъР ИДИАъТЕЯГ ПЯОСПэХЕИА."
+"ЙАИ ЦИА эККА СУСТчЛАТА СУМДЕДЕЛщМА СЕ АУТЭ. \n"
+"\n"
+"\n"
+"г КщНГ ЙКЕИДъ ПЯщПЕИ МА ЕъМАИ ЛИА ЛъНГ АКЖАЯИХЛГТИЙЧМ ВАЯАЙТчЯЫМ \n"
+"ЙАИ ЛЕ ЛчЙОР ТОУКэВИСТОМ ОЙТЧ (8) ВАЯАЙТчЯЫМ. дЕМ ПЯщПЕИ *ПОТщ* \n"
+"МА ТО ЦЯэЬЕТЕ СЕ ВАЯТъ."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1895,7 +2524,7 @@ msgstr ""
"цИА ЛЕЦАКЩТЕЯГ АСЖэКЕИА, ПЯщПЕИ МА ЕПИКщНЕТЕ \"вЯчСГ АЯВЕъОУ shadow\" ЙАИ\n"
"\"вЯчСГ СУМХГЛАТИЙЧМ MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1903,7 +2532,7 @@ msgstr ""
"еэМ ТО ДъЙТУЭ САР ВЯГСИЛОПОИЕъ NIS, ЕПИКщНТЕ \"вЯчСГ NIS\". еэМ ДЕМ\n"
"ЕъСТЕ СъЦОУЯОИ, СУЛБОУКЕУХЕъТЕ ТОМ УПЕЩХУМО ДИЙТЩОУ."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1946,23 +2575,17 @@ msgstr ""
"ЙЫДИЙЭ АПКОЩ ВЯчСТГ ЙАИ МА СУМДщЕСТЕ ЫР root ЛЭМО ЦИА ЕЯЦАСъЕР ДИОъЙГСГР\n"
"ЙАИ СУМТчЯГСГР ТОУ СУСТчЛАТОР."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"еДЧ СУМъСТАТАИ МА АПАМТчСЕТЕ \"мАИ\"! еэМ ЙэМЕТЕ АЯЦЭТЕЯА\n"
-"ЕПАМЕЦЙАТэСТАСГ ТЫМ Windows, ХА АККэНЕИ ТОМ ТОЛщА ЕЙЙъМГСГР\n"
-"(boot sector) ТОУ СУСТчЛАТОР. дЕМ ХА ЛПОЯЕъТЕ МА ЕЙЙИМчСЕТЕ\n"
-"ТО Linux, ЕЙТЭР ЙАИ АМ щВЕТЕ ДГЛИОУЯЦчСЕИ ДИСЙщТТА ЕЙЙъМГСГР\n"
-"ЭПЫР ПЯОТЕъМЕТАИ ЕДЧ!"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1970,13 +2593,13 @@ msgid ""
msgstr ""
"пЯщПЕИ МА ПЯОСДИОЯъСЕТЕ ПОЩ ХщКЕТЕ МА ЕЦЙАТАСТАХОЩМ ОИ \n"
"ПКГЯОЖОЯъЕР ПОУ ЕъМАИ АПАЯАъТГТЕР ЦИА ТГМ ЕЙЙъМГСГ ТОУ \n"
-"Linux.\n"
+"GNU/Linux.\n"
"\n"
"\n"
"еЙТЭР ЙАИ АМ НщЯЕТЕ ПОКЩ ЙАКэ ТИ ЙэМЕТЕ, ЕПИКщНТЕ \"пЯЧТОР ТОЛщАР\n"
"ТОУ ДъСЙОУ (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1985,10 +2608,10 @@ msgstr ""
"ЕъМАИ \"/dev/hda\" (О ПЯЧТОР ДъСЙОР СТО ПЯЧТО ЙАМэКИ), ч \"/dev/sda\n"
"(О ПЯЧТОР SCSI ДъСЙОР)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1999,12 +2622,12 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"тО LILO ЙАИ ТО Grub ЕъМАИ ПЯОЦЯэЛЛАТА ЕЙЙъМГСГР: лПОЯОЩМ МА ЕЙЙИМчСОУМ \n"
-"ТО Linux ч ОПОИОДчПОТЕ эККО КЕИТОУЯЦИЙЭ УПэЯВЕИ СТО СЩСТГЛэ САР. йАМОМИЙэ, \n"
+"ТО GNU/Linux ч ОПОИОДчПОТЕ эККО КЕИТОУЯЦИЙЭ УПэЯВЕИ СТО СЩСТГЛэ САР. "
+"йАМОМИЙэ, \n"
"ТА ЕПИПКщОМ КЕИТОУЯЦИЙэ ПЯОСДИОЯъФОМТАИ ЙАИ ЯУХЛъФОМТАИ СЫСТэ. еэМ АУТЭ ДЕМ "
"\n"
-"СУМщБГ, ЛПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЕПИПКщОМ ЕПИКОЦщР СЕ АУТчМ ТГМ ОХЭМГ. "
-"пЯОСщНТЕ \n"
-"МА ЕПИКщНЕТЕ ТИР СЫСТщР ПАЯАЛщТЯОУР.\n"
+"СУМщБГ, ЛПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЕПИПКщОМ ЕПИКОЦщР СЕ АУТчМ ТГМ ОХЭМГ. \n"
+"пЯОСщНТЕ МА ЕПИКщНЕТЕ ТИР СЫСТщР ПАЯАЛщТЯОУР.\n"
"\n"
"лПОЯЕъТЕ ЕПъСГР МА АПОЙКЕъСЕТЕ ТГМ ПЯЭСБАСГ СЕ эККА КЕИТОУЯЦИЙэ СУСТчЛАТА "
"АЖАИЯЧМТАР\n"
@@ -2012,7 +2635,7 @@ msgstr ""
"ДИСЙщТТА ЕЙЙъМГСГР\n"
"ЦИА МА ТА ВЯГСИЛОПОИчСЕТЕ!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2029,7 +2652,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"оИ ЙЩЯИЕР ЕПИКОЦщР ТОУ LILO ЙАИ ТОУ grub ЕъМАИ:\n"
@@ -2047,13 +2672,70 @@ msgstr ""
"\n"
" - аМэКУСГ ОХЭМГР: аУТЭ ОЯъФЕИ ТГМ VGA АМэКУСГ ЙЕИЛщМОУ ПОУ ХА ЕПИКЕЦЕъ\n"
"ЙАТэ ТГМ ЕЙЙъМГСГ. уПэЯВОУМ ОИ ПАЯАЙэТЫ ЕПИКОЦщР: \n"
+"\n"
" * normal: йАМОМИЙч АМэКУСГ ЙЕИЛщМОУ 80в25.\n"
+"\n"
" * <АЯИХЛЭР>: ВЯчСГ ТГР АМТъСТОИВГР АМэКУСГР ЙЕИЛщМОУ."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"тО SILO ЕъМАИ ПЯЭЦЯАЛЛА ЕЙЙъМГСГР ЦИА SPARC: лПОЯЕъ МА ЕЙЙИМчСЕИ \n"
+"ТО GNU/Linux ч ОПОИОДчПОТЕ эККО КЕИТОУЯЦИЙЭ УПэЯВЕИ СТО СЩСТГЛэ САР. "
+"йАМОМИЙэ, \n"
+"ТА ЕПИПКщОМ КЕИТОУЯЦИЙэ ПЯОСДИОЯъФОМТАИ ЙАИ ЯУХЛъФОМТАИ СЫСТэ. еэМ АУТЭ ДЕМ "
+"\n"
+"СУМщБГ, ЛПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЕПИПКщОМ ЕПИКОЦщР СЕ АУТчМ ТГМ ОХЭМГ. \n"
+"пЯОСщНТЕ МА ЕПИКщНЕТЕ ТИР СЫСТщР ПАЯАЛщТЯОУР.\n"
+"\n"
+"лПОЯЕъТЕ ЕПъСГР МА АПОЙКЕъСЕТЕ ТГМ ПЯЭСБАСГ СЕ эККА КЕИТОУЯЦИЙэ СУСТчЛАТА "
+"АЖАИЯЧМТАР\n"
+"ТИР АМТъСТОИВЕР ЕПИКОЦщР. сЕ АУТчМ ЭЛЫР ТГМ ПЕЯъПТЫСГ, ХА ВЯЕИАСТЕъТЕ "
+"ДИСЙщТТА ЕЙЙъМГСГР\n"
+"ЦИА МА ТА ВЯГСИЛОПОИчСЕТЕ!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"оИ ЙЩЯИЕР ЕПИКОЦщР ТОУ SILO ЕъМАИ:\n"
+" - еЦЙАТэСТАСГ bootloader: оЯъФЕИ ТО ПОЩ ХщКЕТЕ МА ЕЦЙАТАСТАХОЩМ ОИ "
+"АПАЯАъТГТЕР\n"
+"ЦИА ТГМ ЕЙЙъМГСГ ТОУ GNU/Linux ПКГЯОЖОЯъЕР. еЙТЭР ЙИ АМ НщЯЕТЕ ТИ АЙЯИБЧР "
+"ЙэМЕТЕ,\n"
+"ЕПИКщНТЕ \"пЯЧТОР ТОЛщАР ТОУ ДъСЙОУ (MBR)\".\n"
+"\n"
+"\n"
+" - йАХУСТщЯГСГ ПЯИМ ТГМ ЕЙЙъМГСГ: оЯъФЕИ ТА ДщЙАТА ТОУ ДЕУТЕЯОКщПТОУ\n"
+"ПОУ ТО СЩСТГЛА ХА ПЕЯИЛщМЕИ ПЯИМ ЕЙЙИМчСЕИ ТО ПЯЧТО КЕИТОУЯЦИЙЭ.\n"
+"аУТЭ ЕъМАИ СУМчХЫР ВЯчСИЛО СЕ СУСТчЛАТА ПОУ ЕЙЙИМОЩМ АПЭ ТОМ ДъСЙО\n"
+"АЛщСЫР ЛЕТэ ТГМ ЕМЕЯЦОПОъГСГ ТОУ ПКГЙТЯОКОЦъОУ. дЕМ УПэЯВЕИ ЙАХУСТщЯГСГ\n"
+"ЕэМ О АЯИХЛЭР ПАЯАКЕИЖХЕъ ч ЕъМАИ ЛГДщМ."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2065,7 +2747,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"тЧЯА ПЯщПЕИ МА ЯУХЛъСЕТЕ ТО X Window System, ТО ОПОъО ЕъМАИ О \n"
-"ПУЯчМАР ТОУ ЦЯАЖИЙОЩ ПЕЯИБэККОМТОР (GUI) ТОУ Linux. пЯщПЕИ МА\n"
+"ПУЯчМАР ТОУ ЦЯАЖИЙОЩ ПЕЯИБэККОМТОР (GUI) ТОУ GNU/Linux. пЯщПЕИ МА\n"
"ЯУХЛъСЕТЕ ТГМ ЙэЯТА ЦЯАЖИЙЧМ ЙАИ ТГМ ОХЭМГ САР. тО ЛЕЦАКЩТЕЯО\n"
"ЛщЯОР ТГР ДИАДИЙАСъАР ЕъМАИ АУТОЛАТОПОИГЛщМО, ОПЭТЕ Г СУЛБОКч\n"
"САР СУМъСТАТАИ СТГМ ЕПИБЕБАъЫСГ ЙАИ АПОДОВч ТЫМ АУТОЛэТЫМ \n"
@@ -2078,7 +2760,7 @@ msgstr ""
"ЛПОЯЕъТЕ МА ЕПИСТЯщЬЕТЕ ЕДЧ ЙАИ МА ЕПАМАКэБЕТЕ ТИР ЯУХЛъСЕИР\n"
"ЭСЕР ЖОЯщР ВЯЕИАСТЕъ."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2086,7 +2768,7 @@ msgstr ""
"еэМ ЙэТИ ДЕМ ПэЕИ ЙАКэ ЛЕ ТИР ЯУХЛъСЕИР ТЫМ в, ВЯГСИЛОПОИЕъСТЕ АУТщР ТИР\n"
"ЕПИКОЦщР ЦИА МА ЯУХЛъСЕТЕ СЫСТэ ТО ЦЯАЖИЙЭ ПЕЯИБэККОМ (X Window System)."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2094,47 +2776,50 @@ msgstr ""
"еэМ ПЯОТИЛэТЕ ЕЙЙъМГСГ СЕ ЦЯАЖИЙЭ ПЕЯИБэККОМ ЕПИКщНТЕ \"мАИ\". аККИЧР, \n"
"ЕПИКщНТЕ \"╪ВИ\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"лПОЯЕъТЕ ТЧЯА МА ЕПИКщНЕТЕ ДИэЖОЯЕР ЯУХЛъСЕИР ЦИА ТО СЩСТГЛэ САР.\n"
"\n"
-" - вЯчСГ БЕКТИСТОПОИчСЕЫМ СЙКГЯОЩ ДъСЙОУ: аУТч Г ЕПИКОЦч ЛПОЯЕъ МА "
-"БЕКТИЧСЕИ\n"
+"* вЯчСГ БЕКТИСТОПОИчСЕЫМ СЙКГЯОЩ ДъСЙОУ: аУТч Г ЕПИКОЦч ЛПОЯЕъ МА БЕКТИЧСЕИ\n"
"ТИР ЕПИДЭСЕИР ТОУ СЙКГЯОЩ САР ДъСЙОУ, АККэ ПЯООЯъФЕТАИ ЛЭМО ЦИА "
"ПЯОВЫЯГЛщМОУР\n"
"ВЯчСТЕР, ЕПЕИДч ЛЕЯИЙэ ПЯОБКГЛАТИЙэ chipsets ЛПОЯОЩМ МА ЙАТАСТЯщЬОУМ "
@@ -2144,38 +2829,37 @@ msgstr ""
"МА АПОЖЩЦЕТЕ ЕЙПКчНЕИР, ЛГ ВЯГСИЛОПОИчСЕТЕ АУТчМ ТГМ ЕПИКОЦГ.\n"
"\n"
"\n"
-" - еПИКОЦч ЕПИПщДОУ АСЖАКЕъАР: еПИКщНТЕ ЕПъПЕДО АСЖАКЕъАР ЦИА ТО СЩСТГЛэ "
+"* еПИКОЦч ЕПИПщДОУ АСЖАКЕъАР: еПИКщНТЕ ЕПъПЕДО АСЖАКЕъАР ЦИА ТО СЩСТГЛэ "
"САР.\n"
"пАЯАЙАКЧ АМАТЯщНТЕ СТГМ ТЕЙЛГЯъЫСГ ЦИА ПЕЯАИТщЯЫ ПКГЯОЖОЯъЕР.\n"
-"еэМ ДЕМ НщЯЕТЕ, ЕПИКЕНТЕ \"лЕСАъО\". еэМ ХщКЕТЕ щМА ТЕКЕъЫР АСЖАКщР "
-"СЩСТГЛА,\n"
-"ЕПИКщНТЕ \"пАЯАМОЗЙЭ\", АККэ ПЯОСОВч: сЕ АУТчМ ТГМ ПЕЯъПТЫСГ, О root ДЕМ \n"
-"ЛПОЯЕъ МА ЙэМЕИ login АПЭ ЙОМСЭКА. пЯщПЕИ МА ЛПЕъТЕ САМ АПКЭР ВЯчСТГР ЙАИ \n"
-"МА ДЫСЕТЕ \"su\". цЕМИЙэ, АУТЭ ТО ЕПъПЕДО АСЖАКЕъАР ПЯООЯъФЕТАИ ЛЭМО ЦИА \n"
-"ДИЙТУАЙОЩР ЕНУПГЯЕТГТщР.\n"
-"\n"
+"еэМ ДЕМ НщЯЕТЕ, ЙЯАТчСТЕ ТГМ ПЯОЕПИКОЦч. \n"
"\n"
-" - аЙЯИБщР ЛщЦЕХОР RAM ЕэМ ВЯЕИэФЕТАИ: сТА СГЛЕЯИМэ PC ДЕМ УПэЯВЕИ "
+"* аЙЯИБщР ЛщЦЕХОР RAM ЕэМ ВЯЕИэФЕТАИ: сТА СГЛЕЯИМэ PC ДЕМ УПэЯВЕИ "
"СУЦЙЕЙЯИЛщМОР\n"
-"ТЯЭПОР ЕНАЙЯъБЫСГР ТОУ ЛЕЦщХОУР ТГР RAM АПЭ ТО BIOS. сУМЕПЧР, ТО Linux ДЕМ\n"
+"ТЯЭПОР ЕНАЙЯъБЫСГР ТОУ ЛЕЦщХОУР ТГР RAM АПЭ ТО BIOS. сУМЕПЧР, ТО GNU/Linux "
+"ДЕМ\n"
"ЛПОЯЕъ МА УПОКОЦъСЕИ ПэМТА СЫСТэ ТГМ ЕЦЙАТЕСТГЛщМГ RAM. еэМ АУТЭ ИСВЩЕИ, "
"ЕИСэЦЕТЕ ТО СЫСТЭ\n"
"ЛщЦЕХОР. сГЛЕъЫСГ: лИА ДИАЖОЯэ 2 ч 4 MB ХЕЫЯЕъТАИ ЖУСИОКОЦИЙч.\n"
"\n"
"\n"
-" аУТЭЛАТГ СЩМДЕСГ АЖАИЯщСИЛЫМ ЛщСЫМ: еэМ ПЯОТИЛэТЕ МА ЦъМЕТАИ АУТЭЛАТА Г "
+"* аУТЭЛАТГ СЩМДЕСГ АЖАИЯщСИЛЫМ ЛщСЫМ: еэМ ПЯОТИЛэТЕ МА ЦъМЕТАИ АУТЭЛАТА Г "
"СЩМДЕСГ\n"
"АЖАИЯОЩЛЕМЫМ ЛщСЫМ АПОХчЙЕУСГР (CD-ROM, ДИСЙщТТА, Zip), ЕПИКщНТЕ АУТчМ ТГМ "
"ЕПИКОЦч.\n"
"\n"
"\n"
-" - еМЕЯЦОПОъГСГ numlock СТГМ ЕЙЙъМГСГ: еэМ ХщКЕТЕ ТО Number Lock МА ЕъМАИ "
+"* йАХАЯИСЛЭР \"/tmp\" ЙАТэ ТГМ ЕЙЙъМГСГ: еэМ ХщКЕТЕ МА ДИАЦЯэЖОМТАИ ЭКА ТА "
+"ПЯОСЫЯИМэ АЯВЕъА ТОУ ЙАТАКЭЦОУ\n"
+"\"tmp\" ЙАТэ ТГМ ЕЙЙъМГСГ, ЕПИКщНТЕ ТО.\n"
+"\n"
+"\n"
+"* еМЕЯЦОПОъГСГ numlock СТГМ ЕЙЙъМГСГ: еэМ ХщКЕТЕ ТО Number Lock МА ЕъМАИ "
"ЕМЕЯЦЭ\n"
-"ЙАТэ ТГМ ЕЙЙъМГСГ, ЕПИКщНТЕ (сГЛЕъЫСГ: тО Num Lock ХА СУМЕВъСЕИ МА ЕъМАИ "
-"АМЕМЕЯЦЭ\n"
-"СТО СЩСТГЛА X Window)."
+"ЙАТэ ТГМ ЕЙЙъМГСГ, ЕПИКщНТЕ (сГЛЕъЫСГ: Г ЯЩХЛИСГ ДЕМ АЖОЯэ ТО СЩСТГЛА X "
+"Window)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2189,96 +2873,118 @@ msgstr ""
"АУТЭЛАТА. еэМ ХщКЕТЕ МА ЕЙЙИМчСЕТЕ щМА эККО УПэЯВОМ КЕИТОУЯЦИЙЭ, ПАЯАЙАКЧ\n"
"ДИАБэСТЕ ТИР СВЕТИЙщР ОДГЦъЕР."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "еПИКщНТЕ ЦКЧССА"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "еПИКщНТЕ ЕЦЙАТэСТАСГ"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "еМТОПИСЛЭР СЙКГЯОЩ ДъСЙОУ"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "яЩХЛИСГ ПОМТИЙИОЩ"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "еПИКщНТЕ ПКГЙТЯОКЭЦИО"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "дИэЖОЯА"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "пЯОЕТ. СУС. АЯВ."
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "лОЯЖОП. ЙАТАТЛчС."
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "еПИКОЦч ПАЙщТЫМ"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "еЦЙАТэСТАСГ СУСТчЛАТОР"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "яЩХЛИСГ ДИЙТЩОУ"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "йЯУПТОЦЯАЖъА"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "яЩХЛИСГ ФЧМГР ЧЯАР"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "яЩХЛИСГ УПГЯЕСИЧМ"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "яЩХЛИСГ ЕЙТУПЫТч"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "сУМХГЛАТИЙЭ root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "пЯОСХчЙГ ВЯчСТГ"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "дИСЙщТА ЕЙЙъМГСГР"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "еЦЙ. ПЯ. ЕЙЙъМГСГР"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "яЩХЛИСГ в"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "дИСЙщТА АУТЭЛАТГР ЕЦЙАТэСТАСГР"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "╦НОДОР"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "сЖэКЛА ЙАТэ ТГМ АМэЦМЫСГ ТОУ АЯВЕъОУ $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "пАЯАЙАКЧ ДОЙИЛэСТЕ ТО ПОМТъЙИ"
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "цИА ЕМЕЯЦОПОъГСГ ПОМТИЙИОЩ"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "йимгсте то яодайи!"
+
+#: ../../install_interactive.pm_.c:23
+#, 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_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2288,234 +2994,255 @@ msgstr ""
"дГЛИoУЯЦчСТЕ ч ЕПИКщНТЕ ЛИА ЙАТэТЛГСГ.\n"
"лЕТэ ОЯъСТЕ ЫР СГЛЕъО СЩМДЕСГР ТО `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"дЕМ ЛПОЯЧ МА ДИАБэСЫ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ, ЕъМАИ ПОКЩ ЙАТЕСТЯАЛщМОР :(\n"
-"хА ПЯОСПАХчСЫ МА СУМЕВъСЫ АЖАИЯЧМТАР ТИР КАМХАСЛщМЕР ЙАТАТЛчСЕИР"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "пЯщПЕИ МА щВЕТЕ ЛИА ЙАТэТЛГСГ swap"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"тО DiskDrake АПщТУВЕ МА ДИАБэСЕИ СЫСТэ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ.\n"
-"сУМЕВъСТЕ ЛЕ ДИЙч САР ЕУХЩМГ!"
+"дЕМ щВЕТЕ ОЯъСЕИ ЙАТэТЛГСГ swap\n"
+"\n"
+"мА СУМЕВъСЫ;"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "ьэНИЛО ЦИА root partition."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "вЯчСГ ЕКЕЩХЕЯОУ ВЧЯОУ"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "пКГЯОЖОЯъЕР"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "дЕМ УПэЯВЕИ АЯЙЕТЭР ЕКЕЩХЕЯОР ВЧЯОР ЦИА ДГЛИОУЯЦъА МщЫМ ЙАТАТЛчСЕЫМ"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: аУТч ДЕМ ЕъМАИ root partition, ПАЯАЙАКЧ ЕПИКщНТЕ ЛИА эККГ."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "вЯчСГ УПэЯВОМТЫМ ЙАТАТЛчСЕЫМ"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "дЕМ БЯщХГЙЕ root partition"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "дЕМ УПэЯВОУМ ЙАТАТЛчСЕИР ПЯОР ВЯчСГ"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "дЕМ ЛПОЯЧ МА ВЯГСИЛОПОИчСЫ broadcast ВЫЯъР NIS domain"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "вЯчСГ ЙАТэТЛГСГР Windows ЦИА loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "сЖэКЛА ЙАТэ ТГМ АМэЦМЫСГ ТОУ АЯВЕъОУ $f"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "пОИэ ЙАТэТЛГСГ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ЦИА ТО Linux4Win;"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"пЯОЙКчХГЙЕ СЖэКЛА ПОУ ДЕМ НщЯЫ ПЧР МА ТО ВЕИЯИСТЧ.\n"
-"сУМЕВъСТЕ ЛЕ ДИЙИэ САР ЕУХЩМГ."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "еПИКщНТЕ ТА ЛЕЦщХГ"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "дИПКЭ СГЛЕъО СЩМДЕСГР %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "лщЦЕХОР БАСИЙчР ЙАТэТЛГСГР СУСТчЛАТОР СЕ MB:"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"лЕЯИЙэ СГЛАМТИЙэ ПАЙщТА ДЕМ ЕЦАТАСТэХГЙАМ СЫСТэ.\n"
-"о ОДГЦЭР CD-ROM ч ТО CD-ROM ЕъМАИ ЕККАТЫЛАТИЙЭ.\n"
-"еКщЦНТЕ ТО CD-ROM СЕ щМА эККО СЩСТГЛА ВЯГСИЛОПОИЧМТАР ТГМ ЕМТОКч \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "лщЦЕХОР ЙАТэТЛГСГР swap СЕ MB"
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "йАКЧР чЯХАТЕ СТО %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "вЯчСГ ТОУ ЕКЕЩХЕЯОУ ВЧЯОУ СТГМ ЙАТэТЛГСГ ТЫМ Windows"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "дЕМ УПэЯВЕИ ДИАХщСИЛОР ОДГЦЭР ДИСЙщТТАР"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "сЕ ТИ ТЩПО ЙАТэТЛГСГР ХщКЕТЕ МА АККэНЕТЕ ЛщЦЕХОР;"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "уПОКОЦИСЛЭР ОЯъЫМ СУСТчЛАТОР АЯВЕъЫМ Windows"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "бчЛА `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"дЕМ ЛПОЯЧ МА АККэНЫ ЛщЦЕХОР СТГМ ЙАТэТЛГСГ FAT, \n"
+"ПЯОЙКчХГЙЕ ТО ПАЯАЙэТЫ КэХОР: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "пЯщПЕИ МА щВЕТЕ ЛИА ЙАТэТЛГСГ swap"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"г ЙАТэТЛГСГ ТЫМ Windows ЕъМАИ ПОКЩ ЙАТАЙЕЯЛАТИСЛщМГ, ПАЯАЙАКЧ ТЯщНТЕ ПЯЧТА "
+"ТО ``defrag'' "
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"дЕМ щВЕТЕ ОЯъСЕИ ЙАТэТЛГСГ swap\n"
+"пяосовг!\n"
"\n"
-"мА СУМЕВъСЫ;"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "еПИКщНТЕ ТО ЛщЦЕХОР ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
+"тО DrakX ПЯщПЕИ ТЧЯА МА АККэНЕИ ТО ЛщЦЕХОР ТГР ЙАТэТЛГСГР ТЫМ Windows.\n"
+"г ДИАДИЙАСъА АУТч ЕЛПЕЯИщВЕИ ЙИМДЩМОУР. еэМ ДЕМ ТО щВЕТЕ ЙэМЕИ чДГ,\n"
+"ХА ПЯщПЕИ МА ЕКщЦНЕТЕ ТГМ ЙАТэТЛГСГ ЛЕ ЙэПОИО СВЕТИЙЭ ПЯЭЦЯАЛЛА (ПВ\n"
+"scandisk) ЙАИ ЙАТэ ПЕЯъПТЫСГ МА ТГМ АПОЙАТАЙЕЯЛАТОПОИчСЕТЕ (defragment).\n"
+"лЕТэ ХА ПЯщПЕИ МА ЙЯАТчСЕТЕ АМТъЦЯАЖО АСЖАКЕъАР ТЫМ ДЕДОЛщМЫМ САР.\n"
+"еэМ ЕъСТЕ СъЦОУЯОИ, ПАТчСТЕ Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "сУМОКИЙЭ ЛщЦЕХОР: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "тИ ВЧЯО ХщКЕТЕ МА ЙЯАТчСЕТЕ ЦИА ТА windows СТО"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "╦ЙДОСГ: %s\n"
+msgid "partition %s"
+msgstr "ЙАТэТЛГСГ %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "лщЦЕХОР: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "аККАЦч ЛЕЦщХОУР FAT АПщТУВЕ: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "еПИКщНТЕ ТА ПАЙщТА ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"дЕМ УПэЯВОУМ FAT ЙАТАТЛчСЕИР ЦИА АККАЦч ЛЕЦщХОУР ч ЦИА ВЯчСГ ЫР loopback (ч "
+"ДЕМ УПэЯВЕИ АЯЙЕТЭР ВЧЯОР)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "пКГЯОЖОЯъЕР"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "дИАЦЯАЖч ОКЭЙКГЯОУ ТОУ ДъСЙОУ"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "еЦЙАТэСТАСГ"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "аЖАъЯЕСГ Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "еЦЙАТэСТАСГ"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"╦ВЕТЕ ПЕЯИССЭТЕЯОУР АПЭ щМАМ ДъСЙОУР, СЕ ПОИЭМ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ ТО "
+"Linux;"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "пАЯАЙАКЧ ПЕЯИЛщМЕТЕ, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"╪КЕР ОИ УПэЯВОУСЕР ЙАТАТЛчСЕИР ЙАИ ТА ДЕДОЛщМА ТОУР СТОМ ДъСЙО %s ХА ВАХОЩМ"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "еМАПОЛщМЫМ ВЯЭМОР "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "цИА ЕИДИЙОЩР..."
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "сУМОКИЙЭР ВЯЭМОР "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "вЯчСГ diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "пЯОЕТОИЛАСъА ЕЦЙАТэСТАСГР"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "вЯчСГ fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "еЦЙАТэСТАСГ ПАЙщТОУ %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"лПОЯЕъТЕ ТЧЯА МА ЙАТАТЛчСЕТЕ ТОМ ДъСЙО %s\n"
+"╪ТАМ ТЕКЕИЧСЕТЕ, ЛГМ НЕВэСЕТЕ МА АПОХГЙЕЩСЕТЕ ПАТЧМТАР `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "мА СУМЕВъСЫ;"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "дЕМ щВЕТЕ АЯЙЕТЭ ЕКЕЩХЕЯО ВЧЯО СТГМ ЙАТэТЛГСГ ТЫМ Windows"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "пЯОЙКчХГЙЕ СЖэКЛА ЙАТэ ТГМ ТАНИМЭЛГСГ ТЫМ ПАЙщТЫМ:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "дЕМ ЛПОЯЧ МА БЯЧ АЯЙЕТЭ ВЧЯО ЦИА ЕЦЙАТэСТАСГ"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "мА ВЯГСИЛОПОИчСЫ ТИР УПэЯВОУСЕР ЯУХЛъСЕИР ЦИА ТА в11;"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "тО DrakX БЯчЙЕ ТИР ПАЯАЙэТЫ КЩСЕИР:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "пАЯАЙАКЧ ЕИСэЦЕТЕ ТИР ПАЯАЙэТЫ ПКГЯОЖОЯъЕР"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "г ЙАТэТЛГСГ АПщТУВЕ: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "дЕМ УПэЯВЕИ ЙАЛъА ЙАТэТЛГСГ windows!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "еЙЙъМГСГ ДИЙТЩОУ"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "дЕМ щВЕТЕ АЯЙЕТЭ ВЧЯО ЦИА ТО Lnx4win!"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "дИАЙОПч КЕИТОУЯЦъАР ДИЙТЩОУ."
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"пяосовг!\n"
-"\n"
-"тО DrakX ПЯщПЕИ ТЧЯА МА АККэНЕИ ТО ЛщЦЕХОР ТГР ЙАТэТЛГСГР ТЫМ Windows.\n"
-"г ДИАДИЙАСъА АУТч ЕЛПЕЯИщВЕИ ЙИМДЩМОУР. еэМ ДЕМ ТО щВЕТЕ ЙэМЕИ чДГ,\n"
-"ХА ПЯщПЕИ МА ЕКщЦНЕТЕ ТГМ ЙАТэТЛГСГ ЛЕ ЙэПОИО СВЕТИЙЭ ПЯЭЦЯАЛЛА (ПВ\n"
-"scandisk) ЙАИ ЙАТэ ПЕЯъПТЫСГ МА ТГМ АПОЙАТАЙЕЯЛАТОПОИчСЕТЕ (defragment).\n"
-"лЕТэ ХА ПЯщПЕИ МА ЙЯАТчСЕТЕ АМТъЦЯАЖО АСЖАКЕъАР ТЫМ ДЕДОЛщМЫМ САР.\n"
-"еэМ ЕъСТЕ СъЦОУЯОИ, ПАТчСТЕ Ok."
+"пЯОЙКчХГЙЕ СЖэКЛА ПОУ ДЕМ НщЯЫ ПЧР МА ТО ВЕИЯИСТЧ.\n"
+"ТОУ УКИЙОЩ ч АПЭ ТГМ ИСТОСЕКъДА ТОУ ЙАТАСЙЕУАСТч (АМ щВЕТЕ ПЯЭСБАСГ СТО "
+"Internet).сУМЕВъСТЕ ЛЕ ДИЙИэ САР ЕУХЩМГ."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "аУТЭЛАТГ АККАЦч ЛЕЦщХОУР АПщТУВЕ"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "дИПКЭ СГЛЕъО СЩМДЕСГР %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "пОИэ ЙАТэТЛГСГ ХА ВЯГСИЛОПОИчСЕТЕ ЦИА ТО Linux4Win;"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"лЕЯИЙэ СГЛАМТИЙэ ПАЙщТА ДЕМ ЕЦАТАСТэХГЙАМ СЫСТэ.\n"
+"о ОДГЦЭР CD-ROM ч ТО CD-ROM ЕъМАИ ЕККАТЫЛАТИЙЭ.\n"
+"еКщЦНТЕ ТО CD-ROM СЕ щМА эККО СЩСТГЛА ВЯГСИЛОПОИЧМТАР ТГМ ЕМТОКч \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "еПИКщНТЕ ТА ЛЕЦщХГ"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "йАКЧР чЯХАТЕ СТО %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "лщЦЕХОР БАСИЙчР ЙАТэТЛГСГР СУСТчЛАТОР СЕ MB:"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "дЕМ УПэЯВЕИ ДИАХщСИЛОР ОДГЦЭР ДИСЙщТТАР"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "лщЦЕХОР ЙАТэТЛГСГР swap СЕ MB"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "бчЛА `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"тО СЩСТГЛэ САР ДЕМ щВЕИ АЯЙЕТОЩР ПЭЯОУР. лПОЯЕъ МА АМТИЛЕТЫПъСЕТЕ "
+"ПЯОБКчЛАТА\n"
+"СТГМ ЕЦЙАТэСТАСГ ТОУ Linux-Mandrake. еэМ СУЛБЕъ АУТЭ, ЛПОЯЕъТЕ МА ДОЙИЛэСЕТЕ "
+"ЕЦЙАТэСТАСГ ЙЕИЛщМОУ.\n"
+"пАТчСТЕ F1 ЙАТэ ТГМ ЕЙЙъМГСГ АПЭ CDROM, ЛЕТэ ЦЯэЬТЕ `text'."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "пАЯАЙАКЧ ЕИСэЦЕТЕ ТИР ПАЯАЙэТЫ ПКГЯОЖОЯъЕР"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "тО СУМОКИЙЭ ЛщЦЕХОР ТЫМ ОЛэДЫМ ПОУ ЕПИКщНАТЕ ЕъМАИ ПЕЯъПОУ %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2529,7 +3256,7 @@ msgstr ""
"╦МА ВАЛГКЭ ПОСОСТЭ ХА ЕЦЙАТАСТчСЕИ ЛЭМО ТА ПИО СГЛАМТИЙэ ПАЙщТА.\n"
"╦МА ПОСОСТЭ 100% ХА ЕЦЙАТАСТчСЕИ ЭКА ТА ЕПИКЕЦЛщМА ПАЙщТА."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2545,58 +3272,99 @@ msgstr ""
"╦МА ВАЛГКЭ ПОСОСТЭ ХА ЕЦЙАТАСТчСЕИ ЛЭМО ТА ПИО СГЛАМТИЙэ ПАЙщТА.\n"
"╦МА ПОСОСТЭ %d%% ХА ЕЦЙАТАСТчСЕИ ЭСО ПЕЯИССЭТЕЯА ЦъМЕТАИ."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "хА ЛПОЯщСЕТЕ МА ЙэМЕТЕ КЕПТОЛЕЯщСТЕЯГ ЕПИКОЦч СТО ЕПЭЛЕМО БчЛА."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "пОСОСТЭ ПАЙщТЫМ ПЯОР ЕЦЙАТэСТАСГ"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "еПИКщНТЕ ТА ПАЙщТА ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "пКГЯОЖОЯъЕР"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "еЦЙАТэСТАСГ"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "аУТЭЛАТГ ЕПъКУСГ ЕНАЯТчСЕЫМ"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "аМэПТУНГ ДщМТЯОУ"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "сЩЛПТУНГ ДщМТЯОУ"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "еМАККАЦч ЛЕТАНЩ ЕПъПЕДГР ЙАИ ОЛАДИЙчР ТАНИМЭЛГСГР"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "кэХОР ПАЙщТО"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "╪МОЛА: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "╦ЙДОСГ: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "лщЦЕХОР: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "сГЛАСъА: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "сУМОКИЙЭ ЛщЦЕХОР: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"дЕМ ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО ДИЭТИ ДЕМ УПэЯВЕИ АЯЙЕТЭР ВЧЯОР"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "хА ЕЦЙАТАСТАХОЩМ ТА ПАЯАЙэТЫ ПАЙщТА"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "хА АЖАИЯЕХОЩМ ТА ПАЯАЙэТЫ ПАЙщТА "
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "дЕМ ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ/АПОЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "аУТЭ ЕъМАИ АПАИТОЩЛЕМО ПАЙщТО, ДЕМ ЛПОЯЕъ МА АПОЕПИКЕЦЕъ"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "дЕМ ЛПОЯЕъТЕ МА АПОЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО. еъМАИ чДГ ЕЦЙАТЕСТГЛщМО"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2604,45 +3372,88 @@ msgstr ""
"аУТЭ ТО ПАЙщТО ПЯщПЕИ МА АМАБАХЛИСТЕъ\n"
"еъСТЕ СъЦОУЯОР ЭТИ ХщКЕТЕ МА ТО АПОЕПИКщНЕТЕ;"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "дЕМ ЛПОЯЕъТЕ МА АПОЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО. пЯщПЕИ МА АМАБАХЛИСТЕъ"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"дЕМ ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО ДИЭТИ ДЕМ УПэЯВЕИ АЯЙЕТЭР ВЧЯОР"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "тА ПАЯАЙэТЫ ПАЙщТА ХА ЕЦЙАТАСТАХОЩМ/АЖАИЯЕХОЩМ"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "дЕМ ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ/АПОЕПИКщНЕТЕ АУТЭ ТО ПАЙщТО"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "еЦЙАТэСТАСГ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "еЙТъЛГСГ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "пАЯАЙАКЧ ПЕЯИЛщМЕТЕ, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "еМАПОЛщМЫМ ВЯЭМОР "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "сУМОКИЙЭР ВЯЭМОР "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "аЙЩЯЫСГ"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "пЯОЕТОИЛАСъА ЕЦЙАТэСТАСГР"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d ПАЙщТА"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "еЦЙАТэСТАСГ ПАЙщТОУ %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "аПОДОВч"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2656,189 +3467,391 @@ msgstr ""
"пАЯАЙАКЧ ЕИСэЦЕТЕ ТО Cd-Rom ЛЕ ЭМОЛА \"%s\" СТОМ ОДГЦЭ САР ЙАИ ПАТчСТЕ оЙ.\n"
"еэМ ДЕМ ТО щВЕТЕ, ПАТчСТЕ аЙЩЯЫСГ ЦИА АПОЖУЦч ЕЦЙАТэСТАСГР АПЭ АУТЭ ТО CdRom."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "╤ЯМГСГ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "мА СУМЕВъСЫ;"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "пЯОЙКчХГЙЕ СЖэКЛА ЙАТэ ТГМ ТАНИМЭЛГСГ ТЫМ ПАЙщТЫМ:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "пЯОЙКчХГЙЕ СЖэКЛА ЙАТэ ТГМ ЕЦЙАТэСТАСГ ТЫМ ПАЙщТЫМ:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "пЯОЙКчХГЙЕ СЖэКЛА"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "пАЯАЙАКЧ ЕПИКщНТЕ ЛИА ЦКЧССА."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "пКГЙТЯОКЭЦИО"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "пАЯАЙАКЧ ЕПИКщНТЕ ДИАЯЩХЛИСГ ПКГЙТЯОКОЦъОУ."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
"лПОЯЕъТЕ МА ЕПИКщНЕТЕ ЙАИ эККЕР ЦКЧССЕР ПОУ ХА ЕъМАИ ДИАХщСИЛЕР ЛЕТэ ТО "
"ПщЯАР ТГР ЕЦЙАТэСТАСГР"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Root Partition (БАСИЙч ЙАТэТЛГСГ СУСТчЛАТОР)"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "пОИэ ЕъМАИ Г БАСИЙч ЙАТэТЛГСГ (/) ТОУ СУСТчЛАТЭР САР;"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "╪КА"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "тЩПОР ЕЦЙАТэСТАСГР"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "тИ ТЩПО ЕЦЙАТэСТАСГР ПЯОТИЛэТЕ;"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
msgstr "еЦЙАТэСТАСГ/аМАБэХЛИСГ"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
msgstr "пЯЭЙЕИТАИ ЦИА ЕЦЙАТэСТАСГ ч ЦИА АМАБэХЛИСГ;"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "аУТЭЛАТО"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "сУМИСТЧЛЕМО"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "пЯОСАЯЛОСЛщМО"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "цИА ЕИДИЙОЩР"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"еъСТЕ СъЦОУЯОР ПЫР ЕъСТЕ ЕИДИЙЭР;\n"
-"хА САР ЕПИТЯАПОЩМ ИСВУЯщР АККэ ЕПИЙъМДУМЕР ЕПИКОЦщР!"
+"хА САР ЕПИТЯАПОЩМ ИСВУЯщР АККэ ЕПИЙъМДУМЕР ЕПИКОЦщР!\n"
+"хА САР ЦъМОУМ ЕЯЫТчСЕИР ЭПЫР: ``вЯчСГ СЙИЫДЧМ СУМХГЛАТИЙЧМ;'',\n"
+"ЕъСТЕ щТОИЛОИ МА АПАМТчСЕТЕ СЕ ТщТОИЕР ЕЯЫТчСЕИР;"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
msgstr "аМАБэХЛИСГ"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "йАМОМИЙЭ"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "сТАХЛЭР ЕЯЦАСъАР"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "аМэПТУНГ"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "еНУПГЯЕТГТчР ДИЙТЩОУ"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
msgstr "цИА Тъ ВЯчСГ ПЯООЯъФЕТАИ ТО СЩСТГЛэ САР;"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "пАЯАЙАКЧ ЕПИКщНТЕ ТЩПО ПОМТИЙИОЩ."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "хЩЯА ПОМТИЙИОЩ"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"пАЯАЙАКЧ ЕПИКщНТЕ СЕИЯИАЙч ХЩЯА СТГМ ОПОъА ЕъМАИ СУМДЕДЕЛщМО ТО ПОМТъЙИ САР."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "яЩХЛИСГ ЙАЯТЧМ PCMCIA "
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "яЩХЛИСГ IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ДЕМ УПэЯВОУМ ДИАХщСИЛЕР ЙАТАТЛчСЕИР"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "пОИэ ЙАТэТЛГСГ ХА ВЯГСИЛОПОИчСЕТЕ ЫР ЙЩЯИА (/);"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "еПИКщНТЕ СГЛЕъА СЩМДЕСГР"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"дЕМ ЛПОЯЧ МА ДИАБэСЫ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ, ЕъМАИ ПОКЩ ЙАТЕСТЯАЛщМОР :(\n"
+"хА ПЯОСПАХчСЫ МА СУМЕВъСЫ АЖАИЯЧМТАР ТИР КАМХАСЛщМЕР ЙАТАТЛчСЕИР ЙАИ ока\n"
+"ТА ДЕДОЛщМА ХА ВАХОЩМ. г эККГ ЕПИКОЦч САР ЕъМАИ МА ЛГМ ЕПИТЯщЬЕТЕ СТО \n"
+"DrakX МА АЦЦъНЕИ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ. тО СЖэКЛА ЕъМАИ: %s\n"
+"\n"
+"сУЛЖЫМЕъТЕ МА ДИАЦЯАЖОЩМ ЭКЕР ОИ ЙАТАТЛчСЕИР;\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"тО DiskDrake АПщТУВЕ МА ДИАБэСЕИ СЫСТэ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ.\n"
+"сУМЕВъСТЕ ЛЕ ДИЙч САР ЕУХЩМГ!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Root Partition (БАСИЙч ЙАТэТЛГСГ СУСТчЛАТОР)"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "пОИэ ЕъМАИ Г БАСИЙч ЙАТэТЛГСГ (/) ТОУ СУСТчЛАТЭР САР;"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"аПАИТЕъТАИ ЕПАМЕЙЙъМГСГ ЦИА МА ЕМЕЯЦОПОИГХОЩМ ОИ АККАЦщР СТОМ ПъМАЙА "
"ЙАТАТЛчСЕЫМ"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "еПИКщНТЕ ЙАТАТЛчСЕИР ПЯОР ЛОЯЖОПОъГСГ"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "╦КЕЦВОР ЦИА ВАКАСЛщМА blocks;"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "лОЯЖОПОъГСГ ЙАТАТЛчСЕЫМ"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "дГЛИОУЯЦъА ЙАИ ЛОЯЖОПОъГСГ АЯВЕъОУ %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
"дЕМ УПэЯВЕИ АЯЙЕТЭ swap ЦИА ТГМ ОКОЙКчЯЫСГ ТГР ЕЦЙАТэСТАСГР, ПАЯАЙАКЧ "
"ПЯОСХщСТЕ"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "ьэВМЫ ЦИА ДИАХщСИЛА ПАЙщТА"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "пЯОСДИОЯИСЛЭР ПАЙщТЫМ ПЯОР АМАБэХЛИСГ"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-"тО СЩСТГЛэ САР ДЕМ щВЕИ АЯЙЕТЭ ДИАХщСИЛО ВЧЯО ЦИА ЕЦЙАТэСТАСГ ч АМАБэХЛИСГ"
+"тО СЩСТГЛэ САР ДЕМ щВЕИ АЯЙЕТЭ ДИАХщСИЛО ВЧЯО ЦИА ЕЦЙАТэСТАСГ ч АМАБэХЛИСГ "
+"(%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "пКчЯГР (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "еКэВИСТГ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "сУМИСТЧЛЕМГ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "пЯОСАЯЛОСЛщМО"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "еПИКщНТЕ ТО ЛщЦЕХОР ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "еПИКОЦч ОЛэДЫМ ПАЙщТЫМ"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "еПИКОЦч НЕВЫЯИСТЧМ ПАЙщТЫМ"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2848,12 +3861,12 @@ msgstr ""
"еэМ ДЕМ щВЕТЕ ЙАМщМА АПЭ ТА ПАЯАЙэТЫ CDs, ПАТчСТЕ аЙЩЯЫСГ.\n"
"еэМ ДЕМ щВЕТЕ ЙэПОИА АПЭ АУТэ, АПОЕПИКщНТЕ ТА ЙАИ ПАТчСТЕ Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ОМЭЛАТИ \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2861,173 +3874,11 @@ msgstr ""
"еЦЙАТэСТАСГ ПАЙщТОУ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "яУХЛъСЕИР ЛЕТэ ТГМ ЕЦЙАТэСТАСГ"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "дИАТчЯГСГ УПАЯВЭМТЫМ ЯУХЛъСЕЫМ IP"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "еПАМАЯЩХЛИСГ ДИЙТЩОУ ТЧЯА"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "мА ЛГМ ЯУХЛИСТЕъ ТО ДъЙТУО"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "яУХЛъСЕИР ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "г ТОПИЙч ДИЙТЩЫСГ ЕъМАИ чДГ ЯУХЛИСЛщМГ. хщКЕТЕ МА:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ТОПИЙч (LAN) ДИЙТЩЫСГ ТОУ СУСТчЛАТЭР САР;"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "ДЕМ БЯщХГЙЕ ПЯОСАЯЛОЦщАР ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "яЩХЛИСГ modem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ДИЙТЩЫСГ ТОУ СУСТчЛАТЭР САР ЛщСЫ modem;"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "яЩХЛИСГ СУСЙЕУчР ДИЙТЩОУ %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "аУТЭЛАТО IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP ДИЕЩХУМСГ:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "лэСЙА ДИЙТЩОУ:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "г IP ДИЕЩХУМСГ ПЯщПЕИ МА ЕъМАИ СЕ ЛОЯЖч 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "яЩХЛИСГ ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:493
-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"
-"тО ЭМОЛА АУТЭ ПЯщПЕИ МА ЕъМАИ щМА ПКчЯЕР ЭМОЛА СУСТчЛАТОР,\n"
-"ЭПЫР П.В. ``mybox.mylab.myco.com''.\n"
-"лПОЯЕъТЕ ЕПъСГР МА ЕИСэЦЕТЕ ЙАИ ТГМ ДИЕЩХУМСГ IP ТГР ПЩКГР ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "еНУПГЯЕТГТчР DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "сУСЙЕУч ХЩЯАР:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "хЩЯА ДИЙТЩОУ:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "╪МОЛА СУСТчЛАТОР:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "мА ЬэНЫ ЦИА modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "сЕ ПОИэ СЕИЯИАЙч ПЭЯТА ЕъМАИ СУМДЕДЕЛщМО ТО modem САР;"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "еПИКОЦщР dialup"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "╪МОЛА СЩМДЕСГР"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "аЯИХЛЭР ТГКЕЖЧМОУ"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "пИСТОПОъГСГ ТАУТЭТГТАР"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "вЯчСГ script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "вЯчСГ ТЕЯЛАТИЙОЩ"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "╪МОЛА ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "пЯЧТОР ЕНУПГЯЕТГТчР DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "дЕЩТЕЯОР ЕНУПГЯЕТГТчР DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3092,90 +3943,94 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "еПИКщНТЕ ТЭПО АПЭ ТОМ ОПОъО ХА ЦъМЕИ Г КчЬГ ПАЙщТЫМ"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "сЩМДЕСГ ЦИА КчЬГ ПАЙщТЫМ"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "пАЯАЙАКЧ ЕПИКщНТЕ ТА ПАЙщТА ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "еПИКщНТЕ ФЧМГ ЧЯАР"
+msgstr "пОИэ ЕъМАИ Г ФЧМГ ЧЯАР;"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "тО ЯОКЭИ ТОУ УПОКОЦИСТч САР ЕъМАИ ЯУХЛИСЛщМО СЕ GMT (ЧЯА цЙЯчМОУЗТР);"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "пОИЭ СЩСТГЛА ЕЙТЩПЫСГР ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ;"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "вЫЯъР СУМХГЛАТИЙЭ"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "вЯчСГ АЯВЕъОУ shadow"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "вЯчСГ СУМХГЛАТИЙЧМ MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "вЯчСГ NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "yellow pages"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"аУТЭ ТО СУМХГЛАТИЙЭ ЕъМАИ ПОКЩ АПКЭ (ПЯщПЕИ МА ЕъМАИ ТОУКэВИСТОМ %d "
"ВАЯАЙТчЯЕР ЛАЙЯЩ)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "пИСТОПОъГСГ NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "пЕЯИОВч (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "еНУПГЯЕТГТчР NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "аПОДОВч ВЯчСТГ"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "пЯОСХчЙГ ВЯчСТГ"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(ТО %s щВЕИ чДГ ПЯОСТЕХЕъ)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3185,61 +4040,88 @@ msgstr ""
"еИСэЦЕТЕ ВЯчСТГ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "пЯАЦЛАТИЙЭ ЭМОЛА"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "йЫДИЙЭ ЭМОЛА"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "жКОИЭР (shell)"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "еИЙОМъДИО"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "тО СУМХГЛАТИЙЭ ЕъМАИ ПОКЩ АПКЭ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "пАЯАЙАКЧ ЕИСэЦЕТЕ ЙЫДИЙЭ ЭМОЛА"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"тО ЙЫДИЙЭ ЭМОЛА ЛПОЯЕъ МА ПЕЯИщВЕИ ЛЭМО ПЕФэ ЦЯэЛЛАТА, АЯИХЛОЩР, `-' ЙАИ `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "аУТЭ ТО ЙЫДИЙЭ ЭМОЛА УПэЯВЕИ чДГ"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"лИА ПЯОСАЯЛОСЛщМГ ДИСЙщТТА ЕЙЙъМГСГР САР ДъМЕИ ТГМ ДУМАТЭТГТА МА ЕЙЙИМчСЕТЕ\n"
+"ТО СЩСТГЛэ САР ВЫЯъР ТГМ ВЯчСГ ТОУ ПЯОЦЯэЛЛАТОР ЕЙЙъМГСГР. аУТЭ ЕъМАИ "
+"ВЯчСИЛО ЕэМ ДЕМ ХщКЕТЕ\n"
+"МА ЕЦЙАТАСТчСЕТЕ ТО SILO , ЕэМ ЙэПОИО эККО КЕИТОУЯЦИЙЭ ЙАТАСТЯщЬЕИ ТО SILO\n"
+"ч ЕэМ ОИ ЯУХЛъСЕИР САР ДЕМ ЕПИТЯщПОУМ ТГ ВЯчСГ SILO. аУТч Г ДИСЙщТТА ЛПОЯЕъ\n"
+"ЕПъСГР МА ВЯГСИЛОПОИГХЕъ СЕ СУМДУАСЛЭ ЛЕ ТГМ ДИСЙщТТА ДИэСЫСГР ТОУ "
+"Mandrake,\n"
+"ЙэМОМТАР ЕУЙОКЭТЕЯГ ТГМ ЕПАМАЖОЯэ ТОУ СУСТчЛАТОР ЛЕТэ АПЭ СОБАЯч БКэБГ.\n"
+"хщКЕТЕ МА ДГЛИОУЯЦчСЕТЕ ДИСЙщТТА ЕЙЙъМГСГР;"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "пЯЧТОР ОДГЦЭР ДИСЙщТАР"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "дЕЩТЕЯОР ОДГЦЭР ДИСЙщТАР"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "пАЯэКЕИЬГ"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3263,64 +4145,32 @@ msgstr ""
"ЙэМОМТАР ЕУЙОКЭТЕЯГ ТГМ ЕПАМАЖОЯэ ТОУ СУСТчЛАТОР ЛЕТэ АПЭ СОБАЯч БКэБГ.\n"
"хщКЕТЕ МА ДГЛИОУЯЦчСЕТЕ ДИСЙщТТА ЕЙЙъМГСГР;"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "кУПэЛАИ, ДЕМ УПэЯВЕИ ДИАХщСИЛОР ОДГЦЭР ДИСЙщТТАР"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "еПИКщНТЕ ОДГЦЭ ДИСЙщТТАР ЦИА ДГЛИОУЯЦъА ДИСЙщТТАР ЕЙЙъМГСГР"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "еИСэЦЕТЕ ДИСЙщТТА СТОМ ОДГЦЭ %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "дГЛИОУЯЦъА ДъСЙОУ ЕЙЙъМГСГР"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "г ЕЦЙАТэСТАСГ ТОУ LILO АПщТУВЕ. пЯОЙКчХГЙЕ ТО АЙЭКОУХО СЖэКЛА:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "хщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО SILO;"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "бАСИЙщР ЕПИКОЦщР SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"уПэЯВОУМ ОИ АЙЭКОУХЕР ЕПИКОЦщР СТО SILO.\n"
-"лПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЙИ эККЕР ч МА АККэНЕТЕ ТИР УПэЯВОУСЕР."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "йАТэТЛГСГ"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "аУТч Г ЕТИЙЕТТА УПэЯВЕИ чДГ"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "г ЕЦЙАТэСТАСГ ТОУ SILO АПщТУВЕ. пЯОЙКчХГЙЕ ТО АЙЭКОУХО СЖэКЛА:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "пЯОЕТОИЛАСъА ПЯОЦЯэЛЛАТОР ЕЙЙъМГСГР"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "хщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО aboot;"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3329,128 +4179,125 @@ msgstr ""
"ПЯОСПэХЕИА БЕБИАСЛщМГР ЕЦЙАТэСТАСГР, АЙЭЛА ЙАИ АМ АУТЭ щВЕИ САМ АПОТщКЕСЛА "
"ТГМ ЙАТАСТЯОЖч ТГР ПЯЧТГР ЙАТэТЛГСГР;"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "яУХЛъСЕИР proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "о proxy ПЯщПЕИ МА ЕъМАИ http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "о proxy ПЯщПЕИ МА ЕъМАИ ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"г ЕЦЙАТэСТАСГ ТОУ ПЯОЦЯэЛЛАТОР ЕЙЙъМГСГР АПщТУВЕ. пЯОЙКчХГЙЕ ТО АЙЭКОУХО "
+"СЖэКЛА:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "йАКЧР чЯХАТЕ СТОУР Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "жТЫВЭ"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "вАЛГКЭ"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "лщТЯИО"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "уЬГКЭ"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "пАЯАМОЗЙЭ"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "дИэЖОЯЕР ЕЯЫТчСЕИР"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(ЛПОЯЕъ МА ПЯОЙАКщСЕИ ЙАТАСТЯОЖч ДЕДОЛщМЫМ"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "мА ВЯГСИЛОПОИчСЫ БЕКТИСТОПОИчСЕИР СТОМ СЙКГЯЭ ДъСЙО;"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "еПИКщНТЕ ЕПъПЕДО АСЖАКЕъАР"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "аЙЯИБчР ПОСЭТГТАР ЛМчЛГР АМ ВЯЕИэФЕТАИ (щВЫ ЕМТОПъСЕИ %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "аУТЭЛАТГ СЩМДЕСГ АПОСПЧЛЕМЫМ ЛОМэДЫМ АПОХчЙЕУСГР"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "йАХАЯИСЛЭР /tmp СЕ ЙэХЕ ЕЙЙъМГСГ"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "еМЕЯЦОПОъГСГ ПОККАПКЧМ profiles"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "еМЕЯЦОПОъГСГ num lock ЙАТэ ТГМ ЕЙЙъМГСГ"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "еИСэЦЕТЕ ЛщЦЕХОР ЛМчЛГР СЕ Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "аДЩМАТГ Г ВЯчСГ ТОУ supermount СЕ УЬГКЭ ЕПъПЕДО АСЖАКЕъАР"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"тО DrakX ХА ДГЛИОУЯЦчСЕИ АЯВЕъА ЯУХЛъСЕЫМ ЦИА XFree 3.3 ЙАИ XFree 4.0.\n"
-"еН ОЯИСЛОЩ, ВЯГСИЛОПОИЕъТЕИ Г щЙДОСГ 3.3 ЕПЕИДч УПОСТГЯъФЕИ ПЕЯИССЭТЕЯЕР "
-"ЙАЯТЕР.\n"
-"\n"
-"хщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО XFree 4.0;"
+"пяосовг: сЕ АУТЭ ТО ЕПъПЕДО АСЖАКЕъАР, г сумдесг ыс ROOT дем епитяепетаи \n"
+"апо тгм йомсока! еэМ ХщКЕТЕ МА СУМДЕХЕъТЕ ЫР root, ПЯщПЕИ ПЯЧТА МА "
+"СУМДЕХЕъТЕ\n"
+"ЫР АПКЭР ВЯчСТГР ЙАИ МА ВЯГСИЛОПОИчСЕТЕ ТГМ ЕМТОКч \"su\". цЕМИЙэ, ЛГМ "
+"ПЕЯИЛщМЕТЕ\n"
+"МА ВЯГСИЛОПОИчСЕТЕ ТО СЩСТГЛэ САР ЦИА эККГ ВЯчСГ ЕЙТЭР АПЭ ЕНУПГЯЕТГТч."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"пЯОСОВч, Г ЕМЕЯЦОПОъГСГ ТОУ numlock щВЕИ САМ АПОТщКЕСЛА ПОККэ ПКчЙТЯА МА \n"
+"ДъМОУМ ЬГЖъА АМТъ ЦИА ЦЯэЛЛАТА (П.В. ПАТЧМТАР `p' ПАъЯМЕТЕ `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "мА ДОЙИЛэСЫ АУТЭЛАТО ЕМТОПИСЛЭ СУСЙЕУЧМ PCI;"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "мА ВЯГСИЛОПОИчСЫ ТИР УПэЯВОУСЕР ЯУХЛъСЕИР ЦИА ТА в11;"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"хщКЕТЕ МА ДГЛИОУЯЦчСЕТЕ ЛИА ДИСЙщТТА АУТЭЛАТГР ЕЦЙАТэСТАСГР ЦИА ЙКЫМОПОъГСГ "
"АУТчР ТГР ЕЦЙАТэСТАСГР;"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "еИСэЦЕТЕ эДЕИА ДИСЙщТТА СТОМ ОДГЦЭ %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "пЯОЕТОИЛАСъА ДИСЙщТАР АУТЭЛАТГР ЕЦЙАТэСТАСГР"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3460,7 +4307,7 @@ msgstr ""
"\n"
"хщКЕТЕ СъЦОУЯА МА ЕЦЙАТАКЕъЬЕТЕ ТЧЯА;"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3483,153 +4330,18 @@ msgstr ""
"СВЕТИЙЭ\n"
"ЙЕЖэКАИО ТОУ ЕПъСГЛОУ ОДГЦОЩ ВЯчСГР ТОУ Linux-Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "йКщИСИЛО"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "еЦЙАТэСТАСГ ОДГЦОЩ ЦИА %s ЙэЯТА %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "пОИЭМ %s ОДГЦЭ МА ДОЙИЛэСЫ;"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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"
-"ПЯОЙАКщСЕИ ЙЭККГЛА ТОУ СУСТчЛАТОР, АККэ ДЕМ ХА ПЯОЙАКщСЕИ БКэБГ."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "аУТЭЛАТГ ЕНщТАСГ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "пЯОСДИОЯИСЛЭР ПАЯАЛщТЯЫМ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "лПОЯЕъТЕ ТЧЯА МА ДЧСЕТЕ ПАЯАЛщТЯОУР ЦИА ТОМ ОДГЦЭ %s"
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its 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''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "пАЯэЛЕТЯОИ ОДГЦОЩ"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"г ЖОЯТЫСГ ТОУ ОДГЦОЩ %s АПЕТУВЕ.\n"
-"хщКЕТЕ МА ДОЙИЛэСЕТЕ НАМэ ЛЕ ДИАЖОЯЕТИЙщР ПАЯАЛщТЯОУР;"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "мА ДОЙИЛАСЫ МА ЕМТОПъСЫ ЙэЯТЕР PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "яЩХЛИСГ ЙАЯТЧМ PCMCIA "
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "мА ДОЙИЛэСЫ АУТЭЛАТО ЕМТОПИСЛЭ СУСЙЕУЧМ %s;"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "бЯчЙА %s %s ПЯОСАЯЛОЦЕъР"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "╦ВЕТЕ АККОМ;"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "╦ВЕТЕ ЙэПОИОМ ПЯОСАЯЛОЦщА %s;"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "╪ВИ"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "мАИ"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "пЯОБОКч ПКГЯОЖОЯИЧМ УКИЙОЩ"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "еЙЙъМГСГ ДИЙТЩОУ"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "дИАЙОПч КЕИТОУЯЦъАР ДИЙТЩОУ."
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "еЦЙАТэСТАСГ Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> аККАЦч ПЕДъОУ | <Space> ЕПИКОЦч | <F12> ЕПЭЛЕМГ ОХ. "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"лПОЯЕъТЕ ТЧЯА МА ЙАТАТЛчСЕТЕ ТОМ СЙКГЯЭ ДъСЙО %s\n"
-"╪ТАМ ТЕКЕИЧСЕТЕ, ЛГМ НЕВэСЕТЕ МА АПОХГЙЕЩСЕТЕ ПАТЧМТАР `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "пАЯАЙАКЧ ПЕЯИЛщМЕТЕ"
@@ -3639,7 +4351,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "аЛЖИБОКО (%s), ПАЯАЙАКЧ ПЯОСДИОЯИСТЕ ЙАКЩТЕЯА\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "йАЙч ЕПИКОЦч, НАМАДОЙИЛэСТЕ\n"
@@ -3653,442 +4365,944 @@ msgstr " ; (ЕН' ОЯИСЛОЩ %s) "
msgid "Your choice? (default %s) "
msgstr "г ЕПИКОЦч САР; (ЕН' ОЯИСЛОЩ %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "г ЕПИКОЦч САР; (ЕН' ОЯИСЛОЩ %s ЕИСэЦЕТЕ `none' ЦИА ЙАМщМА) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "тСщВИЙО"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "цЕЯЛАМИЙЭ"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "иСПАМИЙЭ"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "жИМКАМДИЙЭ"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "цАККИЙЭ"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "мОЯБГЦИЙЭ"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "пОКЫМИЙЭ"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "яЫСИЙЭ"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "лЕЦэКГ бЯЕТАММъА (UK)"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "г.п.а. (US)"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "аЯЛЕМИЙЭ (ПАКИЭ)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "аЯЛЕМИЙЭ (ЦЯАЖОЛГВАМч)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "аЯЛЕМИЙЭ (ЖЫМГТИЙЭ)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "аФЕЯЛПАЗТФэМ (кАТИМИЙЭ)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "аФЕЯЛПАЗТФэМ (ЙУЯИККИЙЭ)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "бЕКЦИЙЭ"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "бОУКЦАЯИЙЭ"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "бЯАФИКИэМИЙО"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "кЕУЙОЯЫСъАР"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "еКБЕТИЙЭ (цЕЯЛАМИЙч ДИАЯЩХЛИСГ)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "еКБЕТИЙЭ (цАККИЙч ДИАЯЩХЛИСГ)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "цЕЯЛАМИЙЭ (ВЫЯъР МЕЙЯэ ПКчЙТЯА)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "дАМИЙЭ"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (гпа)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (мОЯБГЦИЙЭ)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "еСХОМИЙЭ"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "цЕЫЯЦъА (\"яЫСИЙГ\" ДИАЯЩХЛИСГ)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "цЕЫЯЦъА (\"кАТИМИЙч\" ДИАЯЩХЛИСГ)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "еККГМИЙЭ"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "оУЦЦЯИЙЭ"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "йЯОАТИЙЭ"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "иСЯАчК"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "иСЯАчК (ЖЫМГТИЙЭ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "иЯАМИЙЭ"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "иСКАМДИЙЭ"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "иТАКИЙЭ"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "иАПЫМИЙЭ 106 ПКчЙТЯЫМ"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "кАТИМИЙчР аЛЕЯИЙчР"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "оККАМДИЙЭ"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "кИХОУАМИЙЭ AZERTY (ПАКИЭ)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "кИХОУАМИЙЭ AZERTY (МщО)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "кИХОУАМИЙЭ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "кИХОУАМИЙЭ \"ЖЫМГТИЙЭ\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "пОКЫМИЙЭ (ДИАЯЩХЛИСГ qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "пОКЫМИЙЭ (ДИАЯЩХЛИСГ qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "пОЯТОЦАККИЙЭ"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "йАМАДИЙЭ (йЕЛПщЙ)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "яЫСИЙЭ (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "сОУГДИЙЭ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "сКОБЕМъАР"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "сКОБАЙъАР"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "тОУЯЙИЙЭ (ПАЯАДОСИАЙЭ \"F\" ЛОМТщКО)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "тОУЯЙИЙЭ (ЛОМТщЯМО \"Q\" ЛОМТщКО)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "оУЙЯАМИЙЭ"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US ДИЕХМщР"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "бИЕТМэЛ \"numeric row\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "цИОУЦЙОСКАБИЙЭ (КАТИМИЙч ДИАЯЩХЛИСГ)"
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "тУПИЙЭ"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "цЕМИЙЭ"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "лЕ ЯОДэЙИ"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "СЕИЯИАЙЭ"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "цЕМИЙОЩ ТЩПОУ ЛЕ 2 ПКчЙТЯА"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "цЕМИЙОЩ ТЩПОУ ЛЕ 3 ПКчЙТЯА"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (СЕИЯИАЙЭ, ПАКИЭР C7 ТЩПОР)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "busmouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "дЩО ПКчЙТЯЫМ"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "тЯИЧМ ПКчЙТЯЫМ"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ЙАМщМА"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "вЫЯъР ПОМТъЙИ"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "еПЭЛЕМО -╩"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "сЫСТЭ;"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "яУХЛъСЕИР дИАДИЙТЩОУ (Internet)"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "хщКЕТЕ МА ДОЙИЛэСЕТЕ МА СУМДЕХЕъТЕ СТО дИАДъЙТУО ТЧЯА;"
+
+#: ../../netconnect.pm_.c:101
+msgid "Testing your connection..."
+msgstr "дОЙИЛч СЩМДЕСГР... "
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "аУТч ТГ СТИЦЛч ДЕМ ЕъСТЕ СУМДЕДЕЛщМОИ СТО дИАДъЙТУО."
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"тО СЩСТГЛэ САР ДЕМ ЖАъМЕТАИ МА ЕъМАИ СУМДЕДЕЛщМО СТО дИАДъЙТУО.\n"
+"дОЙИЛэСТЕ МА ЕПАМАЯУХЛъСЕТЕ ТГМ СЩМДЕСч САР."
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "яУХЛъСЕИР ISDN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"еПИКщНТЕ ТОМ ПАЯОВщА САР\n"
+" еэМ ДЕМ ЕъМАИ СТОМ ЙАТэКОЦО, ЕПИКщНТЕ Unlisted"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "яУХЛъСЕИР СКУМДЕСГР"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "пАЯАЙАКЧ ЕКщЦНТЕ ч СУЛПКГЯЧСТЕ ТО ПАЯАЙэТЫ ПЕДъО"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ ЙэЯТАР"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "DMA ЙэЯТАР"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO ЙэЯТАР"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 ЙэЯТАР"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 ЙэЯТАР"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "пЯОСЫПИЙЭР АЯИХЛЭР ТГКЕЖЧМОУ"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "╪МОЛА ПАЯОВщА (П.В. provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "аЯИХЛЭР ТГКЕЖЧМОУ ПАЯОВщА"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "тЯЭПОР ЙКчСГР"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "'оМОЛА КОЦАЯИАЛОЩ (user name)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "сУМХГЛАТИЙЭ КОЦАЯИАСЛОЩ"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "еПИБЕБАъЫСГ СУМХГЛАТИЙОЩ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "еУЯЧПГ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "еУЯЧПГ (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "уПЭКОИПОР ЙЭСЛОР"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "уПЭКОИПОР ЙЭСЛОР - ВЫЯъР D-Channel (ЛИСХЫЛщМЕР ЦЯАЛЛщР)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "пОИЭ ПЯЫТЭЙОККО ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ;"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "дЕМ НщЯЫ"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "тъ ЙэЯТА щВЕТЕ;"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "сУМщВЕИА"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "аЙЩЯЫСГ"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\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"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"еэМ щВЕТЕ ISA ЙэЯТА, ОИ ТИЛщР СТГМ ЕПЭЛЕМГ ОХЭМГ ХА ПЯщПЕИ МА ЕъМАИ СЫСТщР.\n"
"\n"
+"еэМ щВЕТЕ PCMCIA ЙэЯТА, ПЯщПЕИ МА НщЯЕТЕ ТО irq ЙАИ ТО io ТГР ЙэЯТАР САР.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "пОИэ ЕъМАИ Г ISDN ЙэЯТА САР;"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "еМТОПъСТГЙЕ ЙэЯТА ISDN:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"еМТЭПИСА ЛИА ISDN ЙэЯТА, АККэ ДЕМ НщЯЫ ТОМ ТЩПО ТГР. пАЯАЙАКЧ ЕПИКщНТЕ ЛИА "
+"ЙэЯТА PCI АПЭ ТГМ ПАЯАЙэТЫ ОХЭМГ."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "дЕМ БЯщХГЙЕ ЙэЯТА ISDN. пАЯАЙАКЧ ЕПИКщНТЕ ЛИА АПЭ ТГМ ПАЯАЙэТЫ ОХЭМГ."
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"дЕМ БЯщХГЙЕ ПЯОСАЯЛОЦщАР ДИЙТЩОУ Ethernet СТО СЩСТГЛэ САР.\n"
+"дЕМ ЛПОЯЧ МА ЯУХЛъСЫ АУТОЩ ТОУ ТЩПОУ ТГМ СЩМДЕСГ."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "еПИКщНТЕ СУСЙЕУч ДИЙТЩОУ"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS LILO!\n"
+"пАЯАЙАКЧ ЕПИКщНТЕ ПОИэ СУСЙЕУч ДИЙТЩОУ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ЦИА ТГМ "
+"СЩМДЕСГ СТО дИАДъЙТУО"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "сУСЙЕУч ДИЙТЩОУ"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"GIA NA DEITE TIS DIATHESIMES EPILOGES, PATHSTE <TAB>.\n"
+"Do you agree?"
+msgstr ""
"\n"
-"GIA NA EPILEXETE MIA APO AUTES PLHKTROLOGHSTE TO ONOMA THS KAI \n"
-"PATHSTE <ENTER>, H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH \n"
-"EPILOGH.\n"
+"сУЛЖЫМЕъТЕ;"
+
+#: ../../netconnect.pm_.c:352
+msgid "I'm about to restart the network device:\n"
+msgstr "хА ЕПАМЕЙЙИМчСЫ ТГМ ПАЯАЙэТЫ СУСЙЕУч ДИЙТЩОУ:\n"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "яУХЛъСЕИР ADSL"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "хщКЕТЕ МА СУМДщЕСТЕ ЙАТэ ТГМ ЕЙЙъМГСГ;"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "мА ЬэНЫ ЦИА modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "сЕ ПОИэ СЕИЯИАЙч ПЭЯТА ЕъМАИ СУМДЕДЕЛщМО ТО modem САР;"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "еПИКОЦщР dialup"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "╪МОЛА СЩМДЕСГР"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "аЯИХЛЭР ТГКЕЖЧМОУ"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Login ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "пИСТОПОъГСГ ТАУТЭТГТАР"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "вЯчСГ script"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "вЯчСГ ТЕЯЛАТИЙОЩ"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "╪МОЛА ДИЙТЩОУ"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "пЯЧТОР ЕНУПГЯЕТГТчР DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "дЕЩТЕЯОР ЕНУПГЯЕТГТчР DNS"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"лПОЯЕъТЕ МА СУМДЕХЕъТЕ СТО дИАДъЙТУО ч МА ЕПАМАЯУХЛъСЕТЕ ТГМ СЩМДЕСч САР."
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welcome to GRUB the operating system chooser!"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"лПОЯЕъТЕ МА ЕПАМАЯУХЛъСЕТЕ ТГМ СЩМДЕСч САР."
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "аУТч ТГ СТИЦЛч ДЕМ ЕъСТЕ СУМДЕДЕЛщМОИ СТО дИАДъЙТУО."
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"лПОЯЕъТЕ МА АПОСУМДЕХЕъТЕ ч МА ЕПАМАЯУХЛъСЕТЕ ТГМ СЩМДЕСч САР."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "аУТч ТГ СТИЦЛч ЕъСТЕ СУМДЕДЕЛщМОИ СТО дИАДъЙТУО."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "сЩМДЕСГ СТО ДИАДъЙТУО (internet)"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "ДЕМ УПэЯВЕИ АЯЙЕТЭР ВЧЯОР СТО /boot"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "аПОСЩМДЕСГ АПЭ ТО ДИАДъЙТУО (internet)"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:594
+msgid "Configure network connection (LAN or Internet)"
+msgstr "яЩХЛИСГ СЩМДЕСГР СТО ДъЙТУО (ТОПИЙЭ ч дИАДъЙТУО)"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start Menu"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "сЩМДЕСГ ЙАИ ЯЩХЛИСГ дИАДИЙТЩОУ (internet)"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "хА ЕПАМЕЙЙИМчСЫ ТГМ СУСЙЕУч ДИЙТЩОУ $netc->{NET_DEVICE}. сУЛЖЫМЕъТЕ;"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB Mouse"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
+msgstr "яЩХЛИСГ АПКчР СЩМДЕСГР ЛЕ modem"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB Mouse (2 ПКчЙТЯА)"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
+msgstr "яЩХЛИСГ СЩМДЕСГР ISDN"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "еСЫТЕЯИЙч ЙэЯТА ISDN"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB Mouse"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "еНЫТЕЯИЙЭ ISDN modem"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB Mouse (2 ПКчЙТЯА)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "сЩМДЕСГ СТО дИАДъЙТУО"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "тъ ЕъДОУР ЕъМАИ Г ISDN СЩМДЕСч САР;"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "цЕМИЙОЩ ТЩПОУ (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "яЩХЛИСГ СЩМДЕСГР DSL (ч ADSL)"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "цАККъА"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "цЕМИЙОЩ ТЩПОУ ЛЕ 3 ПКчЙТЯА (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "╤ККЕР ВЧЯЕР"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "сЕ ПОИэ ВЧЯА БЯъСЙЕСТЕ;"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "еэМ ТО adsl modem САР ЕъМАИ alcatel, ЕПИКщНТЕ Alcatel. аККИЧР, ECI."
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "ВЯчСГ pppoe"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "ЛГ ВЯчСГ pppoe"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"о ПИО ЙОИМЭР ТЯЭПОР СЩМДЕСГР adsl ЕъМАИ dhcp + pppoe.\n"
+"оЯИСЛщМЕР ЭЛЫР СУМДщСЕИР ВЯГСИЛОПОИОЩМ ЛЭМО dhcp.\n"
+"еэМ ДЕМ НщЯЕТЕ, ЕПИКщНТЕ pppoe"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
+msgstr "яЩХЛИСГ ЙАКЫДИАЙчР СЩМДЕСГР"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"пОИЭМ ПЕКэТГ dhcp ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ;\n"
+"г ПЯОЕПИКОЦч ЕъМАИ dhcpd"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "аПЕМЕЯЦОПОъГСГ СЩМДЕСГР СТО ДИАДъЙТУО"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "яЩХЛИСГ ТОПИЙОЩ ДИЙТЩОУ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Mouse"
+#: ../../netconnect.pm_.c:815
+msgid "Network configuration"
+msgstr "яУХЛъСЕИР ДИЙТЩОУ"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+#: ../../netconnect.pm_.c:816
+msgid "Do you want to restart the network"
+msgstr "хщКЕТЕ МА ЕПАМЕЙЙИМчСЕТЕ ТО ДъЙТУО;"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "вЫЯъР ПОМТъЙИ"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "аПЕМЕЯЦОПОъГСГ ДИЙТЩОУ"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ч МЕЧТЕЯО (СЕИЯИАЙЭ)"
+#: ../../netconnect.pm_.c:834
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "яЩХЛИСГ СЩМДЕСГР СТО ДИАДъЙТУО / яЩХЛИСГ ТОПИЙОЩ ДИЙТЩОУ"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (СЕИЯИАЙЭ)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"г ТОПИЙч ДИЙТЩЫСГ ЕъМАИ чДГ ЯУХЛИСЛщМГ. \n"
+"хщКЕТЕ МА:"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (СЕИЯИАЙЭ)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "пЧР ХщКЕТЕ МА СУМДЕХЕъТЕ СТО дИАДъЙТУО;"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (СЕИЯИАЙЭ)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "яУХЛъСЕИР ДИЙТЩОУ"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (СЕИЯИАЙЭ)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"тЧЯА ПОУ Г СЩМДЕСч САР ЛЕ ТО дИАДъЙТУО ЯУХЛъСТГЙЕ, О УПОКОЦИСТчР САР ЛПОЯЕъ "
+"\n"
+"МА ЯУХЛИСТЕъ щТСИ ЧСТЕ МА ТГМ ЛОИЯэФЕТАИ ЛЕ эККОУР УПОКОЦИСТщР. сГЛЕъЫСГ: \n"
+"вЯЕИэФЕСТЕ щМАМ ПЯОСАЯЛОЦщА ДИЙТЩОУ щТСИ ЧСТЕ МА ДГЛИОУЯЦчСЕТЕ щМА ТОПИЙЭ "
+"ДъЙТУО (LAN).\n"
+"\n"
+"хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ЙОИМч ВЯчСГ ТГР СЩМДЕСГР Internet;\n"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "ДЕМ БЯщХГЙЕ ПЯОСАЯЛОЦщАР ДИЙТЩОУ"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "яЩХЛИСГ ДИЙТЩОУ"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"пАЯАЙАКЧ ЕИСэЦЕТЕ ТО ЭМОЛА ТОУ СУСТчЛАТОР щАМ ТО НщЯЕТЕ.\n"
+"оЯИСЛщМОИ ЕНУПГЯЕТГТщР DHCP ДЕМ КЕИТОУЯЦОЩМ ВЫЯъР АУТЭ.\n"
+"тО ЭМОЛА АУТЭ ПЯщПЕИ МА ЕъМАИ щМА ПКчЯЕР ЭМОЛА СУСТчЛАТОР,\n"
+"ЭПЫР П.В. ``mybox.mylab.myco.com''."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (СЕИЯИАЙЭ, ПАКИЭР C7 ТЩПОР)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "╪МОЛА СУСТчЛАТОР"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"пяосовг: аУТч Г СУСЙЕУч ЕъМАИ чДГ ЯУХЛИСЛщМГ ЦИА МА СУМДщЕТАИ ЛЕ ТО "
+"дИАДъЙТУО.\n"
+"аПКэ ПАТчСТЕ OK ЦИА МА ЙЯАТчСЕТЕ ТИР УПэЯВОУСЕР ЯУХЛъСЕИР.\n"
+"аККэФОМТАР ТА ПАЯАЙэТЫ ПЕДъА ХА АККэНЕТЕ ТГМ УПэЯВОУСА ЯЩХЛИСГ."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "цЕМИЙОЩ ТЩПОУ (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:302
+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)."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft СУЛБАТЭ (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "яЩХЛИСГ СУСЙЕУчР ДИЙТЩОУ %s"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "цЕМИЙОЩ ТЩПОУ ЛЕ 3 ПКчЙТЯА (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "аУТЭЛАТО IP"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (СЕИЯИАЙЭ)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "дИЕЩХУМСГ IP"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "сЫСТЭ;"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "лэСЙА ДИЙТЩОУ"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "г IP ДИЕЩХУМСГ ПЯщПЕИ МА ЕъМАИ СЕ ЛОЯЖч 1.2.3.4"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:341
+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"
+"тО ЭМОЛА АУТЭ ПЯщПЕИ МА ЕъМАИ щМА ПКчЯЕР ЭМОЛА СУСТчЛАТОР,\n"
+"ЭПЫР П.В. ``mybox.mylab.myco.com''.\n"
+"лПОЯЕъТЕ ЕПъСГР МА ЕИСэЦЕТЕ ЙАИ ТГМ ДИЕЩХУМСГ IP ТГР ПЩКГР ДИЙТЩОУ"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "еНУПГЯЕТГТчР DNS"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "пЩКГ ДИЙТЩОУ"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "сУСЙЕУч ПЩКГР"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "яУХЛъСЕИР proxies"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "о proxy ПЯщПЕИ МА ЕъМАИ http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "о proxy ПЯщПЕИ МА ЕъМАИ ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "г ЕЙТЕТАЛщМГ ЙАТэТЛГСГ ДЕМ УПОСТГЯъФЕТАИ СЕ АУТЭМ ТОМ ТЩПО СУСТчЛАТОР"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4098,21 +5312,21 @@ msgstr ""
"г ЛОМАДИЙч КЩСГ ЕъМАИ МА ЛЕТАЙИМчСЕТЕ ТИР ПЯЫТЕЩОУСЕР ЙАТАТЛчСЕИР САР щТСИ "
"ЧСТЕ ТО ЙЕМЭ МА БЯЕХЕъ ДъПКА СТГМ ЕЙТЕТАЛщМГ ЙАТэТЛГСГ"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "сЖэКЛА ЙАТэ ТГМ АМэЦМЫСГ ТОУ АЯВЕъОУ %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "г ЕПАМАЖОЯэ АПЭ ТО АЯВЕъО %s АПщТУВЕ: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "йАТЕСТЯАЛщМО ЕЖЕДЯИЙЭ АЯВЕъО"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "сЖэКЛА ЕЦЦЯАЖчР СТО АЯВЕъО %s"
@@ -4146,42 +5360,51 @@ msgstr "ЕМДИАЖщЯОМ"
msgid "maybe"
msgstr "ъСЫР"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (СГЛАМТИЙЭ)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (ПОКЩ ЙАКЭ)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (ЙАКЭ)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "еЛЖэМИСГ КИЦЭТЕЯЫМ"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "еЛЖэМИСГ ПЕЯИССЭТЕЯЫМ"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "тОПИЙЭР ЕЙТУПЫТчР"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "аПОЛЕЛАЙЯУСЛщМОР lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "аПОЛЕЛАЙЯУСЛщМОР ЕЙТУПЫТчР"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "аПОЛЕЛАЙЯУСЛщМОР ЕНУПГЯЕТГТчР CUPS"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "аПОЛЕЛАЙЯУСЛщМОР ЕНУПГЯЕТГТчР lpd"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "еЙТУПЫТчР ДИЙТЩОУ (socket)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "сУСЙЕУч ЕЙТУПЫТч URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "еМТОПИСЛЭР СУСЙЕУЧМ..."
@@ -4195,11 +5418,11 @@ msgstr "дОЙИЛч ХУЯЧМ"
msgid "A printer, model \"%s\", has been detected on "
msgstr "╦МАР ЕЙТУПЫТчР ТЩПОУ \"%s\" ЕМТОПъСТГЙЕ СТО "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "сУСЙЕУч ТОПИЙОЩ ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4207,15 +5430,15 @@ msgstr ""
"сЕ ПОИэ СУСЙЕУч ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТчР САР;\n"
"(СГЛЕъЫСГ: ТО /dev/lp0 АМТИСТОИВЕъ СТО LPT1:)\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "сУСЙЕУч ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "еПИКОЦщР АПОЛЕЛАЙЯУСЛщМОУ lpd ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4226,19 +5449,19 @@ msgstr ""
"ЕЙТУПЧСЕЫМ, ЙАХЧР ЙАИ ТО ЭМОЛА ТГР ОУЯэР ТГМ ОПОъА ХА \n"
"ВЯГСИЛОПОИчСЕТЕ СЕ АУТЭМ ТОМ ЕНУПГЯЕТГТч."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "аПОЛЕЛАЙЯУСЛщМО ДИЙТУАЙЭ ЭМОЛА:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "╪МОЛА АПОЛЕЛАЙЯУСЛщМГР ОУЯэР"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "еПИКОЦщР ЕЙТУПЫТч SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4253,27 +5476,27 @@ msgstr ""
"ПЯЭСБАСГ, ЙАХЧР ЙАИ ОПОИАДчПОТЕ АПАЯАъТГТГ ПКГЯОЖОЯъА ПЕЯъ ЙЫДИЙОЩ \n"
"ВЯчСТГ, КщНГР ЙКЕИДъ ЙАИ ТОЛщА ч ОЛэДАР ЕЯЦАСъАР."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "дИЙТУАЙЭ ЭМОЛА SMB ЕНУПГЯЕТГТч:"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP ДИЕЩХУМСГ SMB ЕНУПГЯЕТГТч:"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "╪МОЛА ПЭЯОУ:"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "оЛэДА ЕЯЦАСъАР:"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "еПИКОЦщР ЕЙТУПЫТч NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4286,130 +5509,155 @@ msgstr ""
"ТО ЭМОЛА ТОУ ЕЙТУПЫТч СТОМ ОПОъО ЕПИХУЛЕъТЕ ПЯЭСБАСГ, ЙАХЧР ЙАИ\n"
"ОПОИАДчПОТЕ АПАЯАъТГТГ ПКГЯОЖОЯъА ПЕЯъ ЙЫДИЙОЩ ВЯчСТГ ЙАИ КщНГР ЙКЕИДъ."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "еНУПГЯЕТГТчР ЕЙТУПЧСЕЫМ"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "╪МОЛА ОУЯэР ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "еПИКОЦщР ЕЙТУПЫТч socket"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"цИА МА ЕЙТУПЧСЕТЕ СЕ щМАМ ЕЙТУПЫТч socket, ПЯщПЕИ МА ДЧСЕТЕ ТО \n"
+"ДИЙТУАЙЭ ЭМОЛА ТОУ ЕЙТУПЫТч ЙАИ ПЯОАИЯЕТИЙэ ТОМ АЯИХЛЭ ХЩЯАР."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "╪МОЛА ЕЙТУПЫТч"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "хЩЯА"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+"лПОЯЕъТЕ МА ДЧСЕТЕ ЙАТЕУХЕъАМ ТО URI ЦИА ПЯЭСБАСГ СТОМ ЕЙТУПЫТч ЛщСЫ CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "тъ ТЩПОУ ЕЙТУПЫТч щВЕТЕ;"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "хщКЕТЕ МА ДОЙИЛэСЕТЕ ТГМ ЕЙТЩПЫСГ;"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "еЙТЩПЫСГ ДОЙИЛАСТИЙЧМ СЕКъДЫМ..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"лъА ч ПЕЯИССЭТЕЯЕР ДОЙИЛАСТИЙщР СЕКъДЕР СТэКХГЙАМ СТОМ ЕЙТУПЫТч.\n"
+"лПОЯЕъ МА ПЕЯэСЕИ ЙэПОИОР ВЯЭМОР ЛщВЯИ Г ЕЙТЩПЫСГ МА НЕЙИМчСЕИ.\n"
+"йАТэСТАСГ ЕЙТЩПЫСГР:\n"
+"%s\n"
+"\n"
+"╦ЦИМЕ СЫСТэ Г ЕЙТЩПЫСГ"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"лъА ч ПЕЯИССЭТЕЯЕР ДОЙИЛАСТИЙщР СЕКъДЕР СТэКХГЙАМ СТОМ ЕЙТУПЫТч.\n"
+"лПОЯЕъ МА ПЕЯэСЕИ ЙэПОИОР ВЯЭМОР ЛщВЯИ Г ЕЙТЩПЫСГ МА НЕЙИМчСЕИ.\n"
+"╦ЦИМЕ СЫСТэ Г ЕЙТЩПЫСГ;"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "мАИ, СТЕъКЕ ДОЙИЛАСТИЙч СЕКъДА ASCII"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "мАИ, СТЕъКЕ ДОЙИЛАСТИЙч СЕКъДА PostScrip"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "мАИ, СТЕъКЕ ЙАИ ТИР ДЩО ДОЙИЛАСТИЙщР СЕКъДЕР"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "яЩХЛИСГ ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "тъ ТЩПОУ ЕЙТУПЫТч щВЕТЕ;"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "еПИКОЦщР ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "лщЦЕХОР ВАЯТИОЩ"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "аПОБОКч ВАЯТИОЩ ЛЕ ТО ПщЯАР ТГР ЕЙТЩПЫСГР;"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "еПИКОЦщР ОДГЦОЩ Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "еПИКОЦщР БэХОУР ВЯЧЛАТОР"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "еЙТЩПЫСГ ЙЕИЛщМОУ САМ PostScript;"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "аМТъСТЯОЖГ СЕИЯэ СЕКъДЫМ;"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "дИЭЯХЫСГ ЙЕИЛщМОУ-СЙэКАР;"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "аЯИХЛЭР СЕКъДЫМ АМэ СЕКъДЕР ЕНЭДОУ"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "аЯИСТЕЯэ/ДЕНИэ ПЕЯИХЧЯИА СЕ СТИЦЛщР (1/72 ТГР ъМТСАР)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "пэМЫ/ЙэТЫ ПЕЯИХЧЯИА СЕ СТИЦЛщР (1/72 ТГР ъМТСАР)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "еПИПКщОМ ЕПИКОЦщР GhostScript"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "еПИПКщОМ ЕПИКОЦщР ЙЕИЛщМОУ"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "хщКЕТЕ МА ДОЙИЛэСЕТЕ ТГМ ЕЙТЩПЫСГ;"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "еЙТЩПЫСГ ДОЙИЛАСТИЙЧМ СЕКъДЫМ..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"лъА ч ПЕЯИССЭТЕЯЕР ДОЙИЛАСТИЙщР СЕКъДЕР СТэКХГЙАМ СТОМ ЕЙТУПЫТч.\n"
-"лПОЯЕъ МА ПЕЯэСЕИ ЙэПОИОР ВЯЭМОР ЛщВЯИ Г ЕЙТЩПЫСГ МА НЕЙИМчСЕИ.\n"
-"йАТэСТАСГ ЕЙТЩПЫСГР:\n"
-"%s\n"
-"\n"
-"╦ЦИМЕ СЫСТэ Г ЕЙТЩПЫСГ"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"лъА ч ПЕЯИССЭТЕЯЕР ДОЙИЛАСТИЙщР СЕКъДЕР СТэКХГЙАМ СТОМ ЕЙТУПЫТч.\n"
-"лПОЯЕъ МА ПЕЯэСЕИ ЙэПОИОР ВЯЭМОР ЛщВЯИ Г ЕЙТЩПЫСГ МА НЕЙИМчСЕИ.\n"
-"╦ЦИМЕ СЫСТэ Г ЕЙТЩПЫСГ;"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "еЙТУПЫТчР"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "хА ХщКАТЕ МА ЯУХЛъСЕТЕ щМАМ ЕЙТУПЫТч;"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4417,19 +5665,66 @@ msgstr ""
"уПэЯВОУМ ОИ АЙЭКОУХЕР ОУЯщР ЕЙТЩПЫСГР.\n"
"лПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЙИ эККЕР ч МА АККэНЕТЕ ТИР УПэЯВОУСЕР."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "еЙЙъМГСГ CUPS"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "аМэЦМЫСГ БэСГР ОДГЦЧМ CUPS"
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "тЯЭПОР СЩМДЕСГР ЕЙТУПЫТч"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "пЧР ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТчР САР;"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "тЯЭПОР СЩМДЕСГР АПОЛЕЛАЙЯУСЛщМОУ ЕЙТУПЫТч"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"лЕ ТГМ ВЯчСГ ЕНУПГЯЕТГТч CUPS, ДЕМ ВЯЕИэФЕТАИ МА ЯУХЛъСЕТЕ ЕЙТУПЫТщР \n"
+"ЕДЧ. оИ ЕЙТУПЫТщР ХА АМАЦМЫЯИСТОЩМ АУТЭЛАТА. аМ щВЕТЕ АЛЖИБОКъА, ЕПИКщНТЕ\n"
+"\"еНУПГЯЕТГТч CUPS\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "дИАЦЯАЖч ОУЯэР"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"йэХЕ ЕЙТУПЫТчР ВЯЕИэФЕТАИ щМА ЭМОЛА (ЦИА ПАЯэДЕИЦЛА lp). лПОЯОЩМ ЕПъСГР МА "
+"\n"
+"ОЯИСТОЩМ эККЕР ПАЯэЛЕТЯОИ ЭПЫР ПЕЯИЦЯАЖч ч Г ТОПОХЕСъА. тИ ЭМОЛА МА \n"
+"ОЯъСЫ ЦИ АУТЭМ ТОМ ЕЙТУПЫТч ЙАИ ПЧР ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТГР;"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "╪МОЛА ЕЙТУПЫТч"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "пЕЯИЦЯАЖч"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "тОПОХЕСъА"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4440,45 +5735,45 @@ msgstr ""
"щМА ЭМОЛА (СУВМэ lp) ЙАИ щМАМ ЙАТэКОЦО. тИ ЭМОЛА ЙАИ ЙАТэКОЦО МА \n"
"ОЯъСЫ ЦИ АУТчМ ТГМ ОУЯэ ЕЙТУПЫТч ЙАИ ПЧР ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТГР;"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "╪МОЛА ОУЯэР"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "йАТэКОЦОР"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "тЯЭПОР СЩМДЕСГР ЕЙТУПЫТч"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "дЕМ ЛПОЯЧ МА ПЯОСХщСЫ ЙАТэТЛГСГ СТО _ЛОЯЖОПОИГЛщМО_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "дЕМ ЛПОЯЧ МА АПОХГЙЕЩСЫ ТО АЯВЕъО $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "АПОТУВъА mkraid"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "АПОТУВъА mkraid (ЛчПЫР АПОУСИэФОУМ ТА raidtools;)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "дЕМ УПэЯВОУМ АЯЙЕТщР ЙАТАТЛчСЕИР ЦИА RAID ЕПИПщДОУ %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, щМА ПЯЭЦЯАЛЛА ПЕЯИОДИЙчР ЕЙТщКЕСГР ЕМТОКЧМ."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4487,7 +5782,7 @@ msgstr ""
"лПОЯЕъ ЕПъСГР МА ВЯГСИЛОПОИГХЕъ ЦИА ТО АУТЭЛАТО ЙКЕъСИЛО ТОУ СУСТчЛАТОР СЕ \n"
"ПЕЯъПТЫСГ ВАЛГКчР ЖЭЯТИСГР ТГР ЛПАТАЯъАР."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4495,7 +5790,7 @@ msgstr ""
"еЙТЕКЕъ ЕМТОКщР ПЯОЦЯАЛЛАТИСЛщМЕР АПЭ ТГМ ЕМТОКч at ЙАИ ДщСЛЕР ЕМТОКЧМ\n"
"ЭТАМ О ЖЭЯТОР ТОУ СУСТчЛАТОР ЕъМАИ АЯЙЕТэ ВАЛГКЭР."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4508,7 +5803,7 @@ msgstr ""
"ЕПИПКщОМ ДУМАТОТчТЫМ ПОУ ПЕЯИКАЛБэМОУМ ЙАКЩТЕЯГ АСЖэКЕИА ЙАИ ПИО ИСВУЯщР "
"ЯУХЛъСЕИР."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4519,7 +5814,7 @@ msgstr ""
"ЙЕИЛщМОУ ЙАИ ЕПИТЯщПЕИ КЕИТОУЯЦъЕР АПОЙОПчР ЙАИ ЕПИЙЭККГСГР ЛЕ ВЯчСГ \n"
"mouse СТГМ ЙОМСЭКА, ЙАХЧР ЙАИ УПОСТчЯИНГ АМАДУОЛщМЫМ menu."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4527,7 +5822,7 @@ msgstr ""
"о Apache ЕъМАИ щМАР ЕНУПГЯЕТГТчР WWW. лПОЯЕъ МА ЕНУПГЯЕТчСЕИ АЯВЕъА\n"
"HTML ЙАИ CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4543,7 +5838,7 @@ msgstr ""
"АУТчР ТГР УПГЯЕСъАР АПЕМЕЯЦОПОИЕъ ЕПъСГР ЙАИ ТИР УПГЯЕСъЕР ЦИА ТИР ОПОъЕР\n"
"ЕъМАИ УПЕЩХУМГ."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4553,7 +5848,7 @@ msgstr ""
"ЕПИКЕЦЕъ СТО /etc/sysconfig/keyboard. аУТЭ ЛПОЯЕъ МА ЯУХЛИСТЕъ ЛЕ ТГМ \n"
"ВЯчСГ ТОУ ЕЯЦАКЕъОУ kbdconfig. пЯщПЕИ СВЕДЭМ ПэМТА МА ЕъМАИ ЕМЕЯЦОПОИГЛщМО."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4562,7 +5857,7 @@ msgstr ""
"Г ЕМТОКч lpd. еъМАИ БАСИЙэ щМАР ЕНУПГЯЕТГТчР ПОУ ПЯОЫХЕъ ТА АЯВЕъА \n"
"СТОУР ЕЙТУПЫТщР."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4570,7 +5865,7 @@ msgstr ""
"о named (BIND) ЕъМАИ щМАР Domain Name Server (DNS) ПОУ ВЯГСИЛОПОИЕъТАИ\n"
"ЦИА МА ЛЕТАТЯщПЕИ ОМЭЛАТА СЕ ДИЕУХЩМСЕИР IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4578,7 +5873,7 @@ msgstr ""
"сУМДщЕИ ЙАИ АПОСУМДщЕИ ЭКА ТА ДИЙТУАЙэ СУСТчЛАТА АЯВЕъЫМ (NFS, \n"
"SMB ЙАИ NCP (Netware))."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4586,7 +5881,7 @@ msgstr ""
"еМЕЯЦОПОИЕъ/АПЕМЕЯЦОПОИЕъ ЭКА ТА УПОСУСТчЛАТА ДИЙТЩОУ ПОУ щВОУМ \n"
"ЯУХЛИСТЕъ МА НЕЙИМОЩМ ЙАТэ ТГМ ЕЙЙъМГСГ."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4596,7 +5891,7 @@ msgstr ""
"ДъЙТУА TCP/IP. аУТч Г УПГЯЕСъА ПЯОСЖщЯЕИ КЕИТОУЯЦъЕР ЕНУПГЯЕТГТч, О \n"
"ОПОъОР ЯУХЛъФЕТАИ АПЭ ТО АЯВЕъО /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4604,7 +5899,7 @@ msgstr ""
"тО NFS ЕъМАИ щМА ДГЛОЖИКщР ПЯЫТЭЙОКО ЦИА ТОМ ДИАЛОИЯАСЛЭ АЯВЕъЫМ СЕ \n"
"ДъЙТУА TCP/IP. аУТч Г УПГЯЕСъА ПЯОСЖщЯЕИ КЕИТОУЯЦъЕР ЙКЕИДЧЛАТОР АЯВЕъЫМ."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4617,7 +5912,7 @@ msgstr ""
"ВЯчСТГ, ОПЭТЕ ЕъМАИ АСЖАКщР МА ЕЦЙАТАСТАХЕъ СЕ СУСТчЛАТА ПОУ ДЕМ ТО "
"ВЯЕИэФОМТАИ."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4628,7 +5923,7 @@ msgstr ""
"АПЭ ПЯОТЭЙОКА ЭПЫР ТО NFS ЙАИ ТО NIS. пЯщПЕИ МА ЕъМАИ ЕМЕЯЦОПОИГЛщМО СЕ \n"
"СУСТчЛАТА ПОУ ДЯОУМ ЫР ЕНУПГЯЕТГТщР ТщТОИЫМ ПЯОТОЙЭКЫМ."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4637,7 +5932,7 @@ msgstr ""
"ПЯЭЦЯАЛЛА ПОУ ЖЯОМТъФЕИ ЦИА ТГМ ЛЕТАЖОЯэ АККГКОЦЯАЖъАР АПЭ ТО \n"
"щМА СЩСТГЛА СТО эККО."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4645,7 +5940,7 @@ msgstr ""
"аПОХГЙЕЩЕИ ЙАИ ЕПАМАЖщЯЕИ ТГМ ПГЦч ЕМТЯОПъАР ТОУ СУСТчЛАТОР ЦИА \n"
"ТГМ ДГЛИОУЯЦъА ЙАКЩТЕЯГР ПОИЭТГТАР ТУВАъЫМ АЯИХЛЧМ."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4656,7 +5951,7 @@ msgstr ""
"\n"
"ЛИЙЯэ ДъЙТУА, ЛЕЦАКЩТЕЯА ДъЙТУА АПАИТОЩМ ПЕЯИПКОЙЭТЕЯА ПЯОТЭЙОКА."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4665,7 +5960,7 @@ msgstr ""
"СУККОЦч ЛЕТЯчСЕЫМ ЕПИДЭСЕЫМ ЦИА ОПОИОДчПОТЕ СЩСТГЛА СЕ АУТЭ \n"
"ТО ДъЙТУО."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4673,7 +5968,7 @@ msgstr ""
"тО ПЯЫТЭЙОКО rusers ЕПИТЯщПЕИ СТОУР ВЯчСТЕР ЕМЭР ДИЙТЩОУ МА \n"
"ПЯОСДИОЯъСОУМ ТОУР СУМДЕДЕЛщМОУР ВЯчСТЕР эККЫМ СУСТГЛэТЫМ."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4681,7 +5976,7 @@ msgstr ""
"тО ПЯЫТЭЙОКО rwho ЕПИТЯщПЕИ СЕ АПОЛЕЛАЙЯУСЛщМОУР ВЯчСТЕР МА ДОУМ щМАМ \n"
"ЙАТэКОЦО ТЫМ ВЯГСТЧМ ТОУ СУСТчЛАТОР (ПАЯЭЛОИО ЛЕ ТО finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4690,54 +5985,228 @@ msgstr ""
"ЦИА МА ЙэМОУМ ЕЦЦЯАЖщР СТА АЯВЕъА ПАЯАЙОКОЩХГСГР СУСТчЛАТОР (log files)\n"
"сУМъСТАТАИ Г СУМЕВчР КЕИТОУЯЦъА АУТчР ТГР УПГЯЕСъАР."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "аУТч Г ДщСЛГ ЕМТОКЧМ ПЯОСПАХЕъ МА ЖОЯТЧСЕИ ТОУР ОДГЦОЩР ЦИА usb mouse."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "нЕЙИМэЕИ ЙАИ СТАЛАТэЕИ ТГМ УПГЯЕСъА ЕНУПГЯЕТГТч ЦЯАЛЛАТОСЕИЯЧМ."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "еПИКщНТЕ ПОИщР УПГЯЕСъЕР ХА НЕЙИМОЩМ АУТЭЛАТА ЙАТэ ТГМ ЕЙЙъМГСГ"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS SILO!\n"
-"\n"
-"GIA NA DEITE TIS DIATHESIMES EPILOGES, PATHSTE <TAB>.\n"
-"\n"
-"GIA NA EPILEXETE MIA APO AUTES PLHKTROLOGHSTE TO ONOMA THS KAI \n"
-"PATHSTE <ENTER>, H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH \n"
-"EPILOGH.\n"
-"\n"
+"дЕМ ЛПОЯЧ МА ДИАБэСЫ ТОМ ПъМАЙА ЙАТАТЛчСЕЫМ, ЕъМАИ ПОКЩ ЙАТЕСТЯАЛщМОР :(\n"
+"хА ПЯОСПАХчСЫ МА СУМЕВъСЫ АЖАИЯЧМТАР ТИР КАМХАСЛщМЕР ЙАТАТЛчСЕИР"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "яЩХЛИСГ LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "дГЛИОУЯЦъА ДИСЙщТТАР ЕЙЙъМГСГР"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "лОЯЖОПОъГСГ ДИСЙщТТАР"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "еПИКОЦч"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "г ЕЦЙАТэСТАСГ ТОУ LILO АПщТУВЕ. пЯОЙКчХГЙЕ ТО АЙЭКОУХО СЖэКЛА:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "еПИЛЕЯИСЛЭР СЩМДЕСГР Internet ЕМЕЯЦОПОИГЛщМОР"
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"г ЯЩХЛИСГ ТОУ ЕПИЛЕЯИСЛОЩ СЩМДЕСГР Internet щВЕИ чДГ ЦъМЕИ.\n"
+"аУТч ТГ СТИЦЛч ЕъМАИ ЕМЕЯЦч.\n"
+"\n"
+"тъ ХщКЕТЕ МА ЙэМЕТЕ;"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "пъМАЙАР"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr "эЙУЯО"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+msgid "reconfigure"
+msgstr "ЕПАМАЯЩХЛИСГ"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "еПИЛЕЯИСЛЭР СЩМДЕСГР Internet АПЕМЕЯЦОПОИГЛщМОР"
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"г ЯЩХЛИСГ ТОУ ЕПИЛЕЯИСЛОЩ СЩМДЕСГР Internet щВЕИ чДГ ЦъМЕИ.\n"
+"аУТч ТГ СТИЦЛч ЕъМАИ АМЕМЕЯЦЭР.\n"
+"\n"
+"тъ ХщКЕТЕ МА ЙэМЕТЕ;"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr "ЕМЕЯЦОПОъГСГ"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "тА ПЕЯИЕВЭЛЕМА ТОУ АЯВЕъОУ ЯУХЛъСЕЫМ ДЕМ ЛПОЯОЩМ МА ЛЕТАЖЯАСТОЩМ"
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "еПИЛЕЯИСЛЭР СЩМДЕСГР Internet"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"о УПОКОЦИСТчР САР ЛПОЯЕъ МА ЯУХЛИСТЕъ щТСИ ЧСТЕ МА ЛОИЯэФЕТАИ \n"
+"ТГМ СЩМДЕСГ ЛЕ ТО ДИАДъЙТУО ЛЕ эККОУР УПОКОЦИСТщР.\n"
+"\n"
+"сГЛЕъЫСГ: вЯЕИэФЕСТЕ щМАМ ПЯОСАЯЛОЦщА ДИЙТЩОУ щТСИ ЧСТЕ МА ДГЛИОУЯЦчСЕТЕ щМА "
+"ТОПИЙЭ ДъЙТУО (LAN).\n"
+"\n"
+"хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ЙОИМч ВЯчСГ ТГР СЩМДЕСГР Internet;"
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr "ВЯчСГ АЯХЯЧЛАТОР"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "дЕМ БЯщХГЙЕ ПЯОСАЯЛОЦщАР ДИЙТЩОУ СТО СЩСТГЛэ САР!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"дЕМ БЯщХГЙЕ ПЯОСАЯЛОЦщАР ДИЙТЩОУ Ethernet СТО СЩСТГЛэ САР. пАЯАЙАКЧ "
+"ВЯГСИЛОПОИЕъСТЕ ТО ПЯЭЦЯАЛЛА ЯЩХЛИСГР УКИЙОЩ."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"уПэЯВЕИ ЛЭМО щМАР ЯУХЛИСЛщМОР ПЯОСАЯЛОЦщАР ДИЙТЩОУ СТО СЩСТГЛэ САР:\n"
+"\n"
+"$interface\n"
+"\n"
+"хщКЕТЕ МА ЯУХЛъСЕТЕ ТО ТОПИЙЭ САР ДИЙТУО ВЯГСИЛОПОИЭМТАР АУТЭМ ТОМ "
+"ПЯОСАЯЛОЦщА;"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"пАЯАЙАКЧ ЕПИКщНТЕ ТИ ПЯОСАЯЛОЦщАР ДИЙТЩОУ ХА СУМДЕХЕъ\n"
+"СТО ТОПИЙЭ САР ДъЙТУО."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"пЯОСОВч, О ПЯОСАЯЛОЦщАР ДИЙТЩОУ ЕъМАИ чДГ ЯУХЛИСЛщМОР. хщКЕТЕ \n"
+"МА ТОМ ЕПАМАЯУХЛъСЕТЕ;"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+"пИХАМч ЕПАМАВЯГСИЛОПОъГСГ ТГР ДИЕЩХУМСГР LAN СТГМ ТЯщВОУСА ЯЩХЛИСГ ТОУ $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "аМИВМЕЩТГЙЕ ЯЩХЛИСГ firewall!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"пЯОСОВч! аМИВМЕЩТГЙЕ УПэЯВОУСА ЯЩХЛИСГ firewall. ╨СЫР ВЯЕИАСТОЩМ "
+"ОЯИСЛщМЕР\"ВЕИЯОЙъМГТЕР\" ЯУХЛъСЕИР ЛЕТэ ТГМ ЕЦЙАТэСТАСГ. мА СУМЕВъСЫ;"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "яЩХЛИСГ, ЕЦЙАТэСТАСГ КОЦИСЛИЙОЩ, ЕЙЙъМГСГ ЕНУПГЯЕТГТЧМ..."
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring..."
+msgstr "яЩХЛИСГ..."
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "дЕМ ЛПОЯЧ МА ЕЦЙАТАСТчСЫ ТО ipchains RPM ЛЕ ТО urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "дЕМ ЛПОЯЧ МА ЕЦЙАТАСТчСЫ ТО dhcp RPM ЛЕ ТО urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "дЕМ ЛПОЯЧ МА ЕЦЙАТАСТчСЫ ТО linuxconf RPM ЛЕ ТО urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "дЕМ ЛПОЯЧ МА ЕЦЙАТАСТчСЫ ТО bind RPM ЛЕ ТО urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "дЕМ ЛПОЯЧ МА ЕЦЙАТАСТчСЫ ТО caching-nameserver RPM ЛЕ ТО urpmi."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "сУЦВАЯГТчЯИА!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+"'оКА щВОУМ ЯУХЛИСТЕъ.\n"
+"лПОЯЕъТЕ ТЧЯА МА ЛОИЯэФЕСТЕ ТГМ СЩМДЕСч САР СТО дИАДъЙТУО ЛЕ эККОУР "
+"УПОКОЦИСТщР СТО ТОПИЙЭ САР ДъЙТУО, ЛЕ ТГМ ВЯчСГ АУТЭЛАТГР ЯЩХЛИСГР ДИЙТЩОУ "
+"(DHCP)."
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4800,23 +6269,31 @@ msgstr "яЩХЛИСГ ЕПИПщДОУ АСЖАКЕъАР"
msgid "Choose the tool you want to use"
msgstr "еПИКщНТЕ ТО ЕЯЦАКЕъО ПОУ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "тИ ДИАЯЩХЛИСГ ПКГЙТЯОКОЦъОУ щВЕТЕ;"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "аККАЦч Cd-Rom"
+
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"пАЯАЙАКЧ ЕИСэЦЕТЕ ТО CD ЕЦЙАТэСТАСГР СТОМ ОДГЦЭ САР ЙАИ ПАТчСТЕ оЙ.\n"
+"еэМ ДЕМ ТО щВЕТЕ, ПАТчСТЕ аЙЩЯЫСГ ЦИА АПОЖУЦч ДИЙТУАЙчР АМАБэХЛИСГР."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "тИ ТЩПО ПОМТИЙИОЩ щВЕТЕ;"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "ДЕМ БЯщХГЙЕ serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "еНОЛОъЫСГ ТЯъТОУ ПКчЙТЯОУ;"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "сЕ ПОИэ СЕИЯИАЙч ХЩЯА ЕъМАИ СУМДЕДЕЛщМО ТО ПОМТъЙИ САР;"
@@ -5029,15 +6506,879 @@ msgstr "еЩЯЕСГ ЖЩККЫМ"
msgid "Finding leaves takes some time"
msgstr "г ЕЩЯЕСГ ЖЩККЫМ ВЯЕИэФЕТАИ ЙэПОИО ВЯЭМО"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "пЕЯИССЭТЕЯА ЦЯАЖИЙэ ПЕЯИБэККОМТА (Gnome, IceWM)"
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "тО ПЕЯИБэККОМ ЦЯАЖЕъОУ KDE ЛЕ ЛИА СУККОЦч СУМОДЕУТИЙЧМ ЕЯЦАКЕъЫМ"
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr "дИАВЕъЯГСГ ПЯОСЫПИЙЧМ ДЕДОЛщМЫМ"
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr "еЯЦАКЕъА ЦИА ДГЛИОУЯЦъА ЙАИ ЕЦЦЯАЖч CD"
+
+msgid "Internet Tools"
+msgstr "еЯЦАКЕъА дИАДИЙТЩОУ"
+
+msgid "Internet"
+msgstr "иМТЕЯМЕТ"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr "дИАВЕъЯГСГ ПЯОСЫПИЙЧМ ОИЙОМОЛИЙЧМ ДЕДОЛщМЫМ"
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ЙКП"
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr "пЯОЦЯэЛЛАТА ЦЯАЖИЙЧМ ЭПЫР ТО Gimp"
+
+msgid "Office"
+msgstr "цЯАЖЕъО"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr "бэСЕИР ДЕДОЛщМЫМ (mysql ЙАИ postgresql)"
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "еЯЦАКЕъА ЦИА Palm Pilot ч Visor"
+
+msgid "Multimedia - Graphics"
+msgstr "пОКУЛщСА - цЯАЖИЙэ"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr "пЯОЦЯэЛЛАТА АМАПАЯАЦЫЦчР ЙАИ ДИАВЕъЯГСГР video"
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "дИАСЙщДАСГ (ПАИВМъДИА)"
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr "еЯЦАКЕъА ЦЯАЖЕъОУ: еПЕНЕЯЦАСТщР ЙЕИЛщМОУ, КОЦИСТИЙэ ЖЩККА ЙКП"
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"еЯЦАКЕъА ЦИА АПОСТОКч ЙАИ КчЬГ АККГКОЦЯАЖъАР ЙАИ news (pine, mutt, tin...) "
+"ЙАИ Web Browsers"
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "еЯЦАКЕъА чВОУ: mp3 ч midi players, ЛъЙТЕР ЙКП"
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+"еЯЦАКЕъА ФЫМТАМчР СУМОЛИКъАР ЭПЫР xchat, licq, gaim ЙАИ ЛЕТАЖОЯэР АЯВЕъЫМ"
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "бИБКъА ЙАИ ОДГЦОъ ЦИА ТО Linux ЙАИ ТО ЕКЕЩХЕЯО КОЦИСЛИЙЭ"
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ЙКП"
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr "цЯАЖИЙЭ ПЕЯИБэККОМ ЛЕ ЖИКИЙэ ЕЯЦАКЕъА ЙАИ ЕЖАЯЛОЦщР"
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "еЯЦАКЕъА ЦИА АККГКОЦЯАЖъА, МщА, web, ЛЕТАЖОЯэ АЯВЕъЫМ ЙАИ СУМОЛИКъА"
+
+msgid "Multimedia - Video"
+msgstr "пОКУЛщСА - Video"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr "пЯОЦЯэЛЛАТА АМАПАЯАЦЫЦчР ЙАИ ДИАВЕъЯГСГР video ЙАИ чВОУ"
+
+msgid "Multimedia"
+msgstr "пОКУЛщСА"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr "╤ККА ЦЯАЖИЙэ ПЕЯИБэККОМТА"
+
+msgid "Multimedia - Sound"
+msgstr "пОКУЛщСА - ╧ВОР"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "тЕЙЛГЯъЫСГ"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "пЯОЦЯэЛЛАТА ОИЙОМОЛИЙчР ДИАВЕъЯГСГР, ЭПЫР ТО gnucash"
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr "дИАВЕъЯГСГ ЦЯАЖИЙЧМ"
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr "пАИВМъДИА"
+
+msgid "Multimedia - CD Burning"
+msgstr "пОКУЛщСА - еЦЦЯАЖч CD"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr "еЯЦАКЕъА ЕПИЙОИМЫМИЧМ"
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr "бэСЕИР ДЕДОЛщМЫМ"
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "еПИКщНТЕ ТО ЛщЦЕХОР ПОУ ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
+
+#~ msgid "Total size: "
+#~ msgstr "сУМОКИЙЭ ЛщЦЕХОР: "
+
+#~ msgid "АПЕМЕЯЦОПОъГСГ"
+#~ msgstr "пъМАЙАР"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "о уПОКОЦИСТчР САР ЛПОЯЕъ МА ЯУХЛИСТЕъ щТСИ ЧСТЕ МА ЛОИЯэФЕТАИ ТГМ \n"
+#~ "СЩМДЕСч ТОУ ЛЕ ТО Internet ЛЕ эККОУР УПОКОЦИСТщР\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "яУХЛъСТГЙАМ ЭКА!\n"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "вЯЭМОР (СЕ ДЕУТЕЯЭКЕПТА) щККЕИЬГР ДЯАСТГЯИЭТГТАР ЦИА\n"
+#~ "АУТЭЛАТО ЙКЕъСИЛО ЦЯАЛЛчР (АЖчСТЕ ТО ЙЕМЭ ЦИА АПЕМЕЯЦОПОъГСГ)"
+
+#~ msgid "Germany"
+#~ msgstr "цЕЯЛАМъА"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "цЕЯЛАМъА (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "тИ ХщКЕТЕ МА ЙэМЕТЕ;"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "еЦЙАТэСТАСГ/дИэСЫСГ"
+
+#~ msgid "Rescue"
+#~ msgstr "дИэСЫСГ"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "тИ ТЩПО ЙАТэТЛГСГР ХщКЕТЕ;"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "еПИКщНТЕ \"еЦЙАТэСТАСГ\" ЕэМ ДЕМ УПэЯВЕИ ПАКАИЭТЕЯГ ЕЦЙАТэСТАСГ GNU/Linux\n"
+#~ "СТО СЩСТГЛэ САР, ч ЕэМ ХщКЕТЕ МА ПЯАЦЛАТОПОИчСЕТЕ ПОККАПКщР ЕЦЙАТАСТэСЕИР.\n"
+#~ "\n"
+#~ "еПИКщНТЕ \"дИэСЫСГ\" ЕэМ ХщКЕТЕ МА ДИАСЧСЕТЕ ЛИА УПэЯВОУСА\n"
+#~ "ЕЦЙАТэСТАСГ ТОУ Mandrake Linux.\n"
+#~ "\n"
+#~ "\n"
+#~ "еПИКщНТЕ:\n"
+#~ "\n"
+#~ " - сУМИСТЧЛЕМГ: еэМ АУТч ЕъМАИ Г ПЯЧТГ ЖОЯэ ПОУ ЕЦЙАХИСТэТЕ GNU/Linux.\n"
+#~ "\n"
+#~ " - пЯОСАЯЛОСЛщМГ: еэМ ЕъСТЕ ЕНОИЙЕИЫЛщМОР ЛЕ ТО GNU/Linux, ХА ЛПОЯщСЕТЕ МА "
+#~ "\n"
+#~ " ЕПИКщНЕТЕ ТГ БАСИЙч ВЯчСГ ТОУ СУСТчЛАТЭР САР (ДЕР ПАЯАЙэТЫ ЦИА "
+#~ "КЕПТОЛщЯЕИЕР)\n"
+#~ "\n"
+#~ " - еНЕИДИЙЕУЛщМГ: еэМ ЕъСТЕ ПОКЩ ЕНОИЙЕИЫЛщМОР ЛЕ СУСТчЛАТА GNU/Linux ЙАИ\n"
+#~ " ХщКЕТЕ МА ПЯАЦЛАТОПОИчСЕТЕ ЛИА ЕНАИЯЕТИЙэ ПЯОСАЯЛОСЛщМГ ЕЦЙАТэСТАСГ, "
+#~ "ТЭТЕ\n"
+#~ " АУТч Г ЕПИКОЦч ЕъМАИ ЦИА САР. хА ЛПОЯщСЕТЕ МА ЕПИКщНЕТЕ ТЩПО "
+#~ "ЕЦЙАТэСТАСГР\n"
+#~ " ЭПЫР ЙАИ СТГМ ПАЯАПэМЫ (\"пЯОСАЯЛОСЛщМГ\") ЕПИКОЦч.\n"
+#~ " пяосовг: лГ ВЯГСИЛОПОИчСЕТЕ АУТчМ ТГМ ЕПИКОЦч, ЕЙТЭР ЙИ АМ НщЯЕТЕ поку "
+#~ "йака ТИ ЙэМЕТЕ!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "сЕ АУТЭ ТО СГЛЕъО, ЛПОЯЕъТЕ МА ЕПИКщНЕТЕ ПОИщР ЙАТАТЛчСЕИР ХА "
+#~ "ВЯГСИЛОПОИчСЕТЕ\n"
+#~ "ЦИА ТГМ ЕЦЙАТэСТАСГ ТОУ Linux-Mandrake, АМ АУТщР щВОУМ чДГ ОЯИСТЕъ (АПЭ\n"
+#~ "ПАКАИЭТЕЯГ ЕЦЙАТАСТАСГ GNU/Linux ч АПЭ ЙэПОИО ЕЯЦАКЕъО ЙАТАТЛчСЕЫМ). "
+#~ "дИАЖОЯЕТИЙэ,\n"
+#~ "ХА ПЯщПЕИ МА ОЯъСЕТЕ ЙАТАТЛчСЕИР. аУТч Г ДИАДИЙАСъА СУМъСТАТАИ СТОМ \n"
+#~ "КОЦИЙЭ ДИАВЫЯИСЛЭ ТОУ ВЧЯОУ ТОУ СЙКГЯОЩ САР ДъСЙОУ СЕ ПЕЯИОВщР.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ ПЯщПЕИ МА ДГЛИОУЯЦчСЕТЕ МщЕР ЙАТАТЛчСЕИР, ЕПИКщНТЕ \"аУТЭЛАТГ\n"
+#~ "ЙАТАМОЛч\" ЦИА АУТЭЛАТГ ДГЛИОУЯЦъА ТЫМ ЙАТэККГКЫМ ЙАТАТЛчСЕЫМ.\n"
+#~ "лПОЯЕъТЕ МА ЕПИКщНЕТЕ СЕ ПОИЭМ СЙКГЯЭ ДъСЙО ХА ДГЛИОУЯЦГХОЩМ ОИ\n"
+#~ "ЙАТАТЛчСЕИР ЙэМОМТАР ЙКИЙ СТО \"hda\" ЦИА ТОМ ПЯЧТО IDE ДъСЙО, \n"
+#~ "СТО \"hdb\" ЦИА ТОМ ДЕЩТЕЯО IDE ДъСЙО, СТО \"sda\" ЦИА ТОМ ПЯЫТО\n"
+#~ "SCSI ДъСЙО ЙКП.\n"
+#~ "\n"
+#~ "\n"
+#~ "дЩО СУМГХИСЛщМЕР ЙАТАТЛчСЕИР ЕъМАИ: г ЙЩЯИА ЙАТэТЛГСГ (/), Г ОПОъА\n"
+#~ "ЕъМАИ ТО АЯВИЙЭ СГЛЕъО ТГР ИЕЯАЯВъАР ТОУ СУСТчЛАТОР АЯВЕъЫМ ЙАИ Г\n"
+#~ "/boot, Г ОПОъА ПЕЯИщВЕИ ТА АПАЯАъТГТА ЦИА ТГМ ЕЙЙъМГСГ ТОУ СУСТчЛАТОР\n"
+#~ "АЯВЕъА.\n"
+#~ "\n"
+#~ "\n"
+#~ "еПЕИДч ТА АПОТЕКщСЛАТА ТГР ДИАДИЙАСъАР ЙАТэТЛГСГР ЕъМАИ СУМчХЫР ЛГ\n"
+#~ "АМАСТЯщЬИЛА, Г ДИАДИЙАСъА АУТч ЛПОЯЕъ МА ЕъМАИ ДЩСЙОКГ ЦИА щМАМ\n"
+#~ "эПЕИЯО ВЯчСТГ. тО DiskDrake ТГМ АПКОПОИЕъ ЭСО ЕъМАИ ДУМАТЭМ.\n"
+#~ "сУЛБОУКЕУТЕъТЕ ТГМ ТЕЙЛГЯъЫСГ ЙАИ ЛГМ БИАСТЕъТЕ СТИР ЙИМчСЕИР САР.\n"
+#~ "\n"
+#~ "\n"
+#~ "лПОЯЕъТЕ МА ЕЙТЕКщСЕТЕ ТИР ЕЯЦАСъЕР ВЯГСИЛОПОИЧМТАР ТО ПКГЙТЯОКЭЦИО: \n"
+#~ "ЛЕТАЙИМГХЕъТЕ ВЯГСИЛОПОИЧМТАР ТО ПКчЙТЯО Tab ЙАИ ТА ПэМЫ ЙАИ ЙэТЫ БщКГ.\n"
+#~ "╪ТАМ ЛъА ЙАТэТЛГСГ щВЕИ ЕПИКЕЦЕъ, ЛПОЯЕъТЕ МА ПАТчСЕТЕ:\n"
+#~ "\n"
+#~ "- Ctrl-C ЦИА ДГЛИОУЯЦъА МщАР ЙАТэТЛГСГР (СЕ эДЕИО ВЧЯО)\n"
+#~ "\n"
+#~ "- Ctrl-d ЦИА ДИАЦЯАЖч ЙАТэТЛГСГР\n"
+#~ "\n"
+#~ "- Ctrl-m ЦИА ОЯИСЛЭ СГЛЕъОУ СЩМДЕСГР\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "╪КЕР ОИ МщЕР ЙАТАТЛчСЕИР ПЯщПЕИ МА ЛОЯЖОПОИГХОЩМ ПЯЫТОЩ \n"
+#~ "ВЯГСИЛОПОИГХОЩМ (ЛОЯЖОПОъГСГ ЕъМАИ Г ДГЛИОУЯЦъА СУСТчЛАТОР\n"
+#~ "АЯВЕъЫМ). сЕ АУТЭ ТО СГЛЕъО, ъСЫР ХЕКчСЕТЕ МА ЛОЯЖОПОИчСЕТЕ\n"
+#~ "НАМэ ЙАИ ЙэПОИЕР УПэЯВОУСЕР ЙАТАТЛчСЕИР ЦИА МА СБчСЕТЕ эВЯГСТА\n"
+#~ "ДЕДОЛщМА ПОУ ъСЫР ПЕЯИщВОУМ. сГЛЕъЫСГ: дЕМ ЕъМАИ АПАЯАъТГТО МА \n"
+#~ "ЕПАМАЛОЯЖОПОИчСЕТЕ УПэЯВОУСЕР ЙАТАТЛчСЕИР, ЕИДИЙэ АМ ПЕЯИщВОУМ\n"
+#~ "АЯВЕъА ЙАИ ДЕДОЛщМА ТА ОПОъА ХА ХщКАТЕ МА ЙЯАТчСЕТЕ. сУМчХЫР \n"
+#~ "ДИАТГЯОЩМТАИ ОИ ЙАТАТЛчСЕИР /home ЙАИ /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "тА ПАЙщТА ПОУ ЕПИКщНАТЕ ХА ЕЦЙАТАСТАХОЩМ ТЧЯА. аУТч Г ДИАДИЙАСъА\n"
+#~ "ХА ДИАЯЙщСЕИ ЛЕЯИЙэ КЕПТэ, ЕЙТЭР ЕэМ щВЕТЕ ЕПИКщНЕИ МА АМАБАХЛъСЕТЕ\n"
+#~ "ЛИА УПэЯВОУСА ЕЦЙАТэСТАСГ, ОПЭТЕ ХА ДИАЯЙщСЕИ ПЕЯИССЭТЕЯО АЙЭЛА ЙАИ\n"
+#~ "ПЯИМ АЯВъСЕИ Г АМАБэХЛИСГ."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "еэМ ТО DrakX АПщТУВЕ МА ПЯОСДИОЯъСЕИ ТОМ ТЩПО ПОМТИЙИОЩ ПОУ\n"
+#~ "ВЯГСИЛОПОИЕъТЕ, ч ЕэМ ХщКЕТЕ МА ДЕъТЕ ТИ АЙЯИБЧР щЙАМЕ, ХА САР\n"
+#~ "ПАЯОУСИАСТЕъ О ПАЯАПэМЫ ЙАТэКОЦОР.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ СУЛЖЫМЕъТЕ ЛЕ ТИР ЕПИКОЦщР ТОУ DrakX, АПКэ ПАТчСТЕ 'Ok'\n"
+#~ "аККИЧР, ЕПИКщНТЕ щМАМ ТЩПО ПОМТИЙИОЩ ПОУ ПИСТЕЩЕТЕ\n"
+#~ "ЭТИ ЕъМАИ ПКГСИщСТЕЯОР СТОМ ДИЙЭ САР.\n"
+#~ "\n"
+#~ "\n"
+#~ "сТГМ ПЕЯъПТЫСГ СЕИЯИАЙОЩ ПОМТИЙИОЩ, ХА ПЯщПЕИ ЕПъСГР МА ПЕъТЕ СТО\n"
+#~ "DrakX СЕ ПОИэ ХЩЯА ЕъМАИ СУМДЕДЕЛщМО ТО ПОМТъЙИ САР."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "аУТЭ ТО СГЛЕъО АЖОЯэ ТГМ ЯЩХЛИСГ ТОПИЙОЩ ДИЙТЩОУ (LAN) ч ТОУ\n"
+#~ "modem.\n"
+#~ "\n"
+#~ "еПИКщНТЕ \"тОПИЙЭ дъЙТУО\" ЙАИ ТО DrakX ХА ПЯОСПАХчСЕИ МА \n"
+#~ "ЕМТОПИСЕИ ЛИА ЙэЯТА ДИЙТЩОУ Ethernet СТО СУСТГЛэ САР. оИ ЙэЯТЕР\n"
+#~ "PCI ХА ЕМТОПИСТОЩМ ЙАИ ХА ЕЦЙАТАСТАХОЩМ АУТЭЛАТА. \n"
+#~ "аМ ЭЛЫР Г ЙэЯТА САР ЕъМАИ ТЩПОУ ISA, О АУТЭЛАТОР ЕМТОПИСЛЭР ДЕМ \n"
+#~ "ХА КЕИТОУЯЦчСЕИ ЙАИ ХА ПЯщПЕИ МА ЕПИКщНЕТЕ щМАМ ОДГЦЭ АПЭ ТОМ \n"
+#~ "ЙАТэКОЦО ПОУ ХА ЕЛЖАМИСТЕъ АЛщСЫР ЛЕТэ.\n"
+#~ "\n"
+#~ "\n"
+#~ "╪СО АЖОЯэ ТИР ЙэЯТЕР SCSI, ЛПОЯЕъТЕ МА АЖчСЕТЕ ТОМ ОДГЦЭ МА ЕМТОПъСЕИ\n"
+#~ "ТОМ ПЯОСАЯЛОЦщА (ЙАЯТА) ТГМ ПЯЧТГ ЖОЯэ, АККИЧР ХА ПЯщПЕИ МА ДЧСЕТЕ\n"
+#~ "ЕСЕъР ТИР СВЕТИЙщР ПАЯАЛщТЯОУР, ТИР ОПОъЕР ХА ЕМТОПъСЕТЕ АПЭ ТГМ\n"
+#~ "ТЕЙЛГЯъЫСГ ТОУ УКИЙОЩ САР.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ ЕЦЙАХИСТэТЕ ТО Linux-Mandrake ЫР ЛщЯОР ЕМЭР чДГ УПэЯВОМТОР ДИЙТЩОУ,\n"
+#~ "О ДИАВЕИЯИСТчР ТОУ ДИЙТЩОУ САР ХА САР щВЕИ чДГ ДЧСЕИ ТИР АПАЯАъТГТЕР \n"
+#~ "ПКГЯОЖОЯъЕР (ДИЕЩХУМСГ IP, ЭМОЛА, ЛэСЙА ДИЙТЩОУ). еэМ ЕТОИЛэФЕТЕ щМА\n"
+#~ "МщО ДъЙТУО, ЦИА ПАЯэДЕИЦЛА СТО СПъТИ, ХА ПЯщПЕИ МА АПОЖАСъСЕТЕ ЛЭМОР\n"
+#~ "САР ЦИА ТИР ДИЕУХЩМСЕИР.\n"
+#~ "\n"
+#~ "\n"
+#~ "еПИКщНТЕ \"вЯчСГ modem\" ЦИА МА ЯУХЛъСЕТЕ ТГМ СЩМДЕСГ ЛЕ ТО дИАДъЙТУО\n"
+#~ "ЛщСЫ modem. тО DrakX ХА ПЯОСПАХчСЕИ МА ЕМТОПъСЕИ ТО modem САР. еэМ\n"
+#~ "АПОТЩВЕИ, ХА ПЯщПЕИ МА ЕПИКщНЕТЕ ТГМ СЕИЯИАЙч ХЩЯА СТГМ ОПОъА ЕъМАИ\n"
+#~ "СУМДЕДЕЛщМО ТО modem САР."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "тО GNU/Linux ЛПОЯЕъ МА СУМЕЯЦАСТЕъ ЛЕ ПОККОЩР ТЩПОУР ЕЙТУПЫТЧМ. о\n"
+#~ "ЙАХщМАР АПЭ АУТОЩР АПАИТЕъ ДИАЖОЯЕТИЙщР ЯУХЛъСЕИР. сГЛЕИЧСТЕ ЭТИ\n"
+#~ "ТО ПЯЭЦЯАЛЛА ЕЙТЩПЫСГР ВЯГСИЛОПОИЕъ ТО 'lp' ЫР ЕН' ОЯИСЛОЩ ЭМОЛА\n"
+#~ "ЕЙТУПЫТч, ОПЭТЕ ПЯщПЕИ МА щВЕТЕ ОПЫСДчПОТЕ щМАМ ЕЙТУПЫТч ЛЕ АУТЭ\n"
+#~ "ТО ЭМОЛА. лПОЯЕъТЕ ЭЛЫР МА ДЧСЕТЕ ПЕЯИССЭТЕЯА ТОУ ЕМЭР ОМЭЛАТА СЕ\n"
+#~ "щМАМ ЕЙТУПЫТч, ДИАВЫЯъФОМТэР ТА ЛЕ '|'. оПЭТЕ, ЕэМ ПЯОТИЛэТЕ щМА ПИО\n"
+#~ "ЕЩЙОКО ЭМОЛА, ПЯщПЕИ МА ТО ДЧСЕТЕ ПЯЧТО, П.В. \"My Printer|lp\".\n"
+#~ "о ЕЙТУПЫТчР ПОУ ОМОЛэФЕТАИ (ЙАИ) \"lp\" ХА ЕъМАИ О ЕН' ОЯИСЛОЩ ЕЙТУПЫТчР.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ О ЕЙТУПЫТчР САР ЕъМАИ АП' ЕУХЕъАР СУМДЕДЕЛщМОР СТОМ УПОКОЦИСТч\n"
+#~ "САР, ЕПИКщНТЕ \"тОПИЙЭР ЕЙТУПЫТчР\". хА ПЯщПЕИ ТЭТЕ МА ОЯъСЕТЕ \n"
+#~ "СЕ ПОИэ ХЩЯА ЕъМАИ СУМДЕДЕЛщМОР О ЕЙТУПЫТчР САР ЙАИ МА ЕПИКщНЕТЕ\n"
+#~ "ТО ЙАТэККГКО ЖъКТЯО (ОДГЦЭ).\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ щМАМ ЕЙТУПЫТч СУМДЕДЕЛщМО СЕ ЙэПОИО\n"
+#~ "АПОЛЕЛАЙЯУСЛщМО Unix СЩСТГЛА, ЕПИКщНТЕ \"аПОЛЕЛАЙЯУСЛщМОР lpd\".\n"
+#~ "дЕМ ВЯЕИэФЕТАИ МА ДЧСЕТЕ ЙЫДИЙЭ ВЯчСТГ ЙАИ ЙКЕИДъ, АККэ ПЯщПЕИ МА НщЯЕТЕ\n"
+#~ "ТО ЭМОЛА ТГР ОУЯэР ТОУ ЕЙТУПЫТч ПОУ ХА ВЯГСИЛОПОИчСЕТЕ.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ ХщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ щМАМ ЕЙТУПЫТч SMB (ДГКАДч щМАМ ЕЙТУПЫТч\n"
+#~ "СУМДЕДЕЛщМО СЕ ЙэПОИО СЩСТГЛА Windows 9x/NT), ХА ПЯщПЕИ МА ДЫСЕТЕ\n"
+#~ "ТО ЭМОЛА SMB (ТО ОПОъО ДЕМ ЕъМАИ ЭМОЛА TCP/IP) ЙАИ ПИХАМЧР ЙАИ ТГМ\n"
+#~ "ДИЕЩХУМСГ IP, ЙАХЧР ЕПъСГР ЙАИ ЙЫДИЙЭ ВЯчСТГ, КщНГ ЙКЕИДъ ЙАИ \n"
+#~ "ЭМОЛА ТОЛщА Г ОЛэДАР ЕЯЦАСъАР ЙАИ ЖУСИЙэ ТО ЭМОЛА ТОУ ЕЙТУПЫТч.\n"
+#~ "тА ъДИА ИСВЩОУМ ЙАИ ЦИА ЕЙТУПЫТщР NetWare, ЛЕ ТГМ ДИАЖОЯэ ЭТИ \n"
+#~ "ДЕМ АПАИТЕъТАИ ЭМОЛА ТОЛщА ч ОЛэДАР ЕЯЦАСъАР."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "еДЧ СУМъСТАТАИ МА АПАМТчСЕТЕ \"мАИ\"! еэМ ЙэМЕТЕ АЯЦЭТЕЯА\n"
+#~ "ЕЦЙАТэСТАСГ ТЫМ Windows, ХА АККэНЕИ ТОМ ТОЛщА ЕЙЙъМГСГР\n"
+#~ "(boot sector) ТОУ СУСТчЛАТОР. дЕМ ХА ЛПОЯЕъТЕ МА ЕЙЙИМчСЕТЕ\n"
+#~ "ТО Linux, ЕЙТЭР ЙАИ АМ щВЕТЕ ДГЛИОУЯЦчСЕИ ДИСЙщТТА ЕЙЙъМГСГР\n"
+#~ "ЭПЫР ПЯОТЕъМЕТАИ ЕДЧ!"
+
+#~ msgid "Move your wheel!"
+#~ msgstr "йИМчСТЕ ТО ЯОДэЙИ!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "аЙЩЯЫСГ АККАЦЧМ;"
+
+#~ msgid "Host name:"
+#~ msgstr "╪МОЛА СУСТчЛАТОР:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "тИ ТЩПО ПОМТИЙИОЩ щВЕТЕ;"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "аУТЭЛАТГ ЕПИКОЦч АМАКЩСЕЫМ"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "хА ДОЙИЛэСЫ ДИэЖОЯЕР АМАКЩСЕИР ЦИА МА ЕМТОПъСЫ ПОИщР ЕъМАИ ДИАХщСИЛЕР.\n"
+#~ "г ОХЭМГ САР ХА АЯВъСЕИ МА АМАБОСБчМЕИ...\n"
+#~ "лПОЯЕъТЕ АМ ХщКЕТЕ МА ТГМ ЙКЕъСЕТЕ, ХА АЙОЩСЕТЕ щМА ЛПИП ЛЕ ТГМ\n"
+#~ "ОКОЙКчЯЫСГ ТГР ДИАДИЙАСъАР."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "лПОЯЧ МА ДОЙИЛэСЫ МА БЯЧ ТИР ДИАХщСИЛЕР АМАКЩСЕИР (ПВ 800В600).\n"
+#~ "аУТЭ ЭЛЫР ъСЫР ПЯОЙАКщСЕИ ЙЭККГЛА ТОУ СУСТчЛАТОР.\n"
+#~ "хщКЕТЕ МА ДОЙИЛэСЕТЕ;"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "дЕМ БЯщХГЙАМ щЦЙУЯОИ СУМДУАСЛОъ КЕИТОУЯЦъАР\n"
+#~ "дОЙИЛэСТЕ ДИАЖОЯЕТИЙч ЙэЯТА ЦЯАЖИЙЧМ ч ОХЭМГ"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "аУТЭЛАТГ ЕЩЯЕСГ АМАКЩСЕЫМ"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB Mouse"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB Mouse (2 ПКчЙТЯА)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB Mouse"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB Mouse (2 ПКчЙТЯА)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "цЕМИЙОЩ ТЩПОУ"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB Mouse"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Mouse (3 ч ПЕЯИССЭТЕЯА ПКчЙТЯА)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ч МЕЧТЕЯО (СЕИЯИАЙЭ)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (СЕИЯИАЙЭ)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (СЕИЯИАЙЭ)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (СЕИЯИАЙЭ)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "цЕМИЙОЩ ТЩПОУ (СЕИЯИАЙЭ)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft СУЛБАТЭ (СЕИЯИАЙЭ)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "цЕМИЙОЩ ТЩПОУ ЛЕ 3 ПКчЙТЯА (СЕИЯИАЙЭ)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (СЕИЯИАЙЭ)"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "СЩМДЕСГ nfs АПщТУВЕ"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "тО DrakX ХА ДГЛИОУЯЦчСЕИ АЯВЕъА ЯУХЛъСЕЫМ ЦИА XFree 3.3 ЙАИ XFree 4.0.\n"
+#~ "еН ОЯИСЛОЩ, ВЯГСИЛОПОИЕъТЕИ Г щЙДОСГ 4.0 ЕЙТЭР ЕэМ ДЕМ УПОСТГЯъФЕТАИ Г ЙэЯТА "
+#~ "САР.\n"
+#~ "\n"
+#~ "хщКЕТЕ МА ВЯГСИЛОПОИчСЕТЕ ТО XFree 3.3;"
+
+#~ msgid "Cryptographic"
+#~ msgstr "йЯУПТОЦЯАЖъА"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "лГМ ЯУХЛъСЕИР ТО ДъЙТУО"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ТОПИЙч (LAN) ДИЙТЩЫСГ ТОУ СУСТчЛАТЭР САР;"
+
+#~ msgid "Show less"
+#~ msgstr "еЛЖэМИСГ КИЦЭТЕЯЫМ"
+
+#~ msgid "Show more"
+#~ msgstr "еЛЖэМИСГ ПЕЯИССЭТЕЯЫМ"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "пКчЯГР ЙАТэКГЬГ ТОУ ДъСЙОУ"
+
+#~ msgid "curly"
+#~ msgstr "ЙАТСАЯЭ"
+
+#~ msgid "default"
+#~ msgstr "ЕПИКОЦч ЕН' ОЯИСЛОЩ"
+
+#~ msgid "tie"
+#~ msgstr "ЦЯАБэТА"
+
+#~ msgid "brunette"
+#~ msgstr "ЙАСТАМч"
+
+#~ msgid "girl"
+#~ msgstr "ЙОЯъТСИ"
+
+#~ msgid "woman-blond"
+#~ msgstr "НАМХИэ ЦУМАъЙА"
+
+#~ msgid "automagic"
+#~ msgstr "АУТОЛАЦИЙЭ"
+
+#~ msgid "Normal"
+#~ msgstr "йАМОМИЙЭ"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "сАР щВОУМ ПЯОЛГХЕЩСЕИ ЭМОЛА ЙЭЛБОУ (hostname);"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "пЯОСДИОЯИСЛЭР ТОПИЙОЩ ДИЙТЩОУ"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "лПОЯЕъТЕ МА ЕПИКщНЕТЕ ПОИЭ ДъЙТУО ТэНГР C ХА ВЯГСИЛОПОИчСЕТЕ\n"
+
+#~ msgid "Network:"
+#~ msgstr "дъЙТУО:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "еПИЛЕЯИСЛЭР СЩМДЕСГР Internet - ЯЩХЛИСГ ТОУ $device"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "пЯЭЙЕИТАИ МА ЯУХЛИСТЕъ Г ПАЯАЙэТЫ СУСЙЕУч:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "яУХЛъСТГЙАМ ЭКА!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "тИ ДИАЯЩХЛИСГ ПКГЙТЯОКОЦъОУ щВЕТЕ;"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "мА ДОЙИЛАСЫ МА ЕМТОПъСЫ ЙэЯТЕР PCMCIA"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "мА ДОЙИЛэСЫ АУТЭЛАТО ЕМТОПИСЛЭ СУСЙЕУЧМ %s;"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "лИЙЯЭ(%dMB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "яЩХЛИСГ modem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ДИЙТЩЫСГ ТОУ СУСТчЛАТЭР САР ЛщСЫ modem;"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "хщКЕТЕ МА ЯУХЛъСЕТЕ ТГМ ISDN ДИЙТЩЫСГ ТОУ СУСТчЛАТЭР САР;"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "мА ДОЙИЛэСЫ АУТЭЛАТО ЕМТОПИСЛЭ СУСЙЕУЧМ PCI;"
+
+#~ msgid "Searching root partition."
+#~ msgstr "ьэНИЛО ЦИА root partition."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: аУТч ДЕМ ЕъМАИ root partition, ПАЯАЙАКЧ ЕПИКщНТЕ ЛИА эККГ."
+
+#~ msgid "No root partition found"
+#~ msgstr "дЕМ БЯщХГЙЕ root partition"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "дЕМ ЛПОЯЧ МА ВЯГСИЛОПОИчСЫ broadcast ВЫЯъР NIS domain"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "пОИэ ЙАТэТЛГСГ ХА ВЯГСИЛОПОИчСЕТЕ ЫР ЙЩЯИА (/);"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "дЕМ УПэЯВЕИ ЙАЛъА ЙАТэТЛГСГ windows!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "дЕМ щВЕТЕ АЯЙЕТЭ ВЧЯО ЦИА ТО Lnx4win!"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "аУТЭЛАТО"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS LILO!\n"
+#~ "\n"
+#~ "GIA NA DEITE TIS DIATHESIMES EPILOGES, PATHSTE <TAB>.\n"
+#~ "\n"
+#~ "GIA NA EPILEXETE MIA APO AUTES PLHKTROLOGHSTE TO ONOMA THS KAI \n"
+#~ "PATHSTE <ENTER>, H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH \n"
+#~ "EPILOGH.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "KALOS HRTHATE STON EPILOGEA LEITOURGIKOU SYSTHMATOS SILO!\n"
+#~ "\n"
+#~ "GIA NA DEITE TIS DIATHESIMES EPILOGES, PATHSTE <TAB>.\n"
+#~ "\n"
+#~ "GIA NA EPILEXETE MIA APO AUTES PLHKTROLOGHSTE TO ONOMA THS KAI \n"
+#~ "PATHSTE <ENTER>, H PERIMENETE %d DEUTEROLEPTA GIA THN AYTOMATH \n"
+#~ "EPILOGH.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "бАСИЙщР ЕПИКОЦщР SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "уПэЯВОУМ ОИ АЙЭКОУХЕР ЕПИКОЦщР СТО SILO.\n"
+#~ "лПОЯЕъТЕ МА ПЯОСХщСЕТЕ ЙИ эККЕР ч МА АККэНЕТЕ ТИР УПэЯВОУСЕР."
+
+#~ msgid "This label is already in use"
+#~ msgstr "аУТч Г ЕТИЙЕТТА УПэЯВЕИ чДГ"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "г ЕЦЙАТэСТАСГ ТОУ SILO АПщТУВЕ. пЯОЙКчХГЙЕ ТО АЙЭКОУХО СЖэКЛА:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "тО DrakX ХА ПЯОСПАХчСЕИ ЙАТ' АЯВчМ МА ЕМТОПъСЕИ щМАМ ч ПЕЯИССЭТЕЯОУР\n"
+#~ "PCI ПЯОСАЯЛОЦЕъР SCSI. еэМ ЕМТОПъСЕИ ЙэПОИОМ ч ЙэПОИОУР ЙАИ НщЯЕИ\n"
+#~ "ПОИОЩР ОДГЦОЩР МА ВЯГСИЛОПОИчСЕИ, ХА ТО ЙэМЕИ АУТЭЛАТА.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ О SCSI ПЯОСАЯЛОЦщАР САР ЕъМАИ ISA ч ЙэПОИОР PCI ПОУ ДЕМ ЕъМАИ\n"
+#~ "ЦМЫСТЭР СТО DrakX, ч ЕэМ ДЕМ щВЕТЕ ЕЦЙАТЕСТГЛщМО ПЯОСАЯЛОЦщА SCSI,\n"
+#~ "ХА ЕЯЫТГХЕъТЕ ЕэМ щВЕТЕ ЙэПОИОМ ПЯОСАЯЛОЦщА. еэМ ДЕМ щВЕТЕ, АПАМТчСТЕ\n"
+#~ "\"╪ВИ\". еэМ щВЕТЕ, АПАМТчСТЕ \"мАИ\". хА ЕЛЖАМИСТЕъ щМАР ЙАТэКОЦОР\n"
+#~ "ЛЕ ОДГЦОЩР, АПЭ ТОМ ОПОъОМ ХА ПЯщПЕИ МА ЕПИКщНЕТЕ ТОМ ЙАТэККГКО.\n"
+#~ "\n"
+#~ "\n"
+#~ "лЕТэ ТГМ ЕПИКОЦч ОДГЦОЩ, ТО DraЙв ХА САР ЯЫТчСЕИ ЕэМ ХщКЕТЕ МА ОЯъСЕТЕ\n"
+#~ "ЯУХЛъСЕИР ЦИА ТОМ ОДГЦЭ. йАТ' АЯВчМ, АЖчСТЕ ТОМ ОДГЦЭ МА ПЯОСДИОЯъСЕИ\n"
+#~ "ЛЭМОР ТОУ ТИР ЙАТэККГКЕР ЯУХЛъСЕИР. аУТЭ СУМчХЫР щВЕИ ТО ЕПИХУЛГТЭ\n"
+#~ "АПОТщКЕСЛА.\n"
+#~ "\n"
+#~ "\n"
+#~ "еэМ АУТЭ ДЕМ ИСВЩЕИ, ВЯГСИЛОПОИчСТЕ ТИР ЯУХЛъСЕИР ПОУ АМАЖщЯОМТАИ\n"
+#~ "СТГМ ТЕЙЛГЯъЫСГ ТОУ УКИЙОЩ САР ч АУТщР ПОУ ИСВЩОУМ СТА Windows \n"
+#~ "(ЕэМ АУТэ ЕИМАИ ЕЦЙАТЕСТГЛщМА СТОМ УПОКОЦИСТч САР), ЭПЫР АМАЖщЯЕТАИ\n"
+#~ "СТОМ ОДГЦЭ ЕЦЙАТэСТАСГР."
+
+#~ msgid "Shutting down"
+#~ msgstr "йКщИСИЛО"
+
#~ msgid "useless"
#~ msgstr "эВЯГСТО"
#~ msgid "garbage"
#~ msgstr "СЙОУПъДИ"
-#~ msgid "Recommended"
-#~ msgstr "сУМИСТЧЛЕМО"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5197,18 +7538,12 @@ msgstr "г ЕЩЯЕСГ ЖЩККЫМ ВЯЕИэФЕТАИ ЙэПОИО ВЯЭМО"
#~ msgid "Hurt me plenty"
#~ msgstr "вТЩПА ЛЕ АКЩПГТА"
-#~ msgid "Which usage do you want?"
-#~ msgstr "тИ ЕъДОУР ВЯчСГ ПЯОТИЛэТЕ;"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "пОИэ ПАЙщТА ХщКЕТЕ МА ЕЦЙАТАСТчСЕТЕ"
#~ msgid "Local LAN"
#~ msgstr "тОПИЙЭ ДъЙТУО"
-#~ msgid "Dialup with modem"
-#~ msgstr "вЯчСГ modem"
-
#~ msgid "Going to install %d MB. You can choose to install more programs"
#~ msgstr ""
#~ "хА ЕЦЙАТАСТчСЫ %d MB. лПОЯЕъТЕ МА ЕЦЙАТАСТчСЕТЕ ПЕЯИССЭТЕЯА ПЯОЦЯэЛЛАТА"
@@ -5243,9 +7578,6 @@ msgstr "г ЕЩЯЕСГ ЖЩККЫМ ВЯЕИэФЕТАИ ЙэПОИО ВЯЭМО"
#~ msgid "Password:"
#~ msgstr "кщНГ ЙКЕИДъ:"
-#~ msgid "Local Printer Options"
-#~ msgstr "еПИКОЦщР ТОПИЙОЩ ЕЙТУПЫТч"
-
#~ msgid "server"
#~ msgstr "ЕНУПГЯЕТГТчР"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 5f0cd7bf4..b3c1e8971 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -1,51 +1,109 @@
+#
+# MESAьOJ DE DrakX
+# D. Dale Gulledge <dsplat@rochester.rr.com>, 2000
+#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-15 22:18-0500\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-09-25 22:18-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-3\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Genera"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Grafika karto"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Elektu grafikan karton"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Elektu X servilon"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X servilo"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kiun konfiguron de XFree vi deziras havi?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Vi povas havi 3D aparatan akceladan subtenon kun XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s kun 3D aparata akcelado"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE фI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN "
+"KOMPUTILON.\n"
+"XFree %s subtenas vian karton kiu eble havas pli bonan subtenon en 2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Via karto povas havi 3D aparatan akceladon, sed nur kun XFree %s.\n"
+"NOTU KE фI TIO ESTAS EKSPERIMENTA SUBTENO KAJ EBLE SVENIGOS VIAN KOMPUTILON."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree Konfigurado"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Elektu opciojn por servilo"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Ekrano"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -67,39 +125,39 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Vertikala refreЧigrapido (vertical refresh rate)"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Grafika karto ne jam konfigurita"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Vi ne jam elektas distingivojn"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "фu vi deziras provi la konfigura╪on?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "Averto: provado estas danЬera je Фi tiu grafika karto"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Averto: provado de Фi tiu grafika karto eble svenigos vian komputilon"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Provu konfigura╪on"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -107,185 +165,173 @@ msgstr ""
"\n"
"penu ЧanЬi iom da parametroj"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Eraro okazis:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Mi eliros post %d sekundoj"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "фu tio Фi pravas?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Eraro okazis, penu ЧanЬi iom da parametroj"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "AЩtomataj distingivoj"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Por trovi haveblajn distingivojn, mi provos diversajn.\n"
-"Via ekrano flagros...\n"
-"Vi povas malЧalti Ьin se vi deziras; vi aЩdos pepon kiam Ьi finiЬos."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Distingivo"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 servilo: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Montru tuton"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Distingivoj"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Mi povas provi trovi la haveblajn distingivojn (ekz-e, 800x600).\n"
-"Tamen, iam tio eble svenos la komputilon.\n"
-"фu vi deziras provi?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Neniuj validaj distingivoj trovataj.\n"
-"Provu kun alia grafika karto aЩ ekrano."
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavara aranЬo: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Speco de muso: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Musaparato: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Ekrano: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekrana vertikala refreЧigrapido (vertical refresh rate): %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafika karto: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Graifka memoro: %s KB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Kolorprofuneco: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Distingivo: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 servilo: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 pelilo: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Preparas X-Fenestran konfigura╪on"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "чanЬu Ekranon"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "чanЬu Grafika karto"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "чanЬu Servilajn opciojn"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "чanЬu distingivon"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "AЩtomata serФo por distingivoj"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Montru informon"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Provu denove"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "фesu"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Kion vi deziras fari?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "фu mi devus forgesi la ЧanЬojn?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"фu vi deziras teni la ЧanЬojn?\n"
+"Nuna konfiguro estas:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la ЧanЬojn."
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Bonvole adiaЩu kaj sekve uzu Kontrol-Alt-RetropaЧo (Ctrl-Alt-Backspace)."
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X Fenestro Фe komenco"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -293,229 +339,224 @@ msgstr ""
"Mi povas konfiguri vian komputilon tiel ke Ьi aЩtomate lanФos X kiam Ьi\n"
"ekfunkcias. фu vi deziras ke X aЩtomate lanФos?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "AЩtomata-enregistrado"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Mi povas konfiguri vian komputilon por aЩtomate enregistri unu uzulon kiam\n"
+"Ьi startas. Se vi ne deziras uzi Фi tion, alklaku la `Nuligu' butonon."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Elektu la defaЩltan uzulon:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Elektu la fenestro-administrilon por lanФi:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 koloroj (8 bitoj)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mil koloroj (15 bitoj)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mil koloroj (16 bitoj)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milionoj koloroj (24 bitoj)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 KB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 KB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB aЩ pli"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Normala VGA, 640x480 Фe 60 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Supera VGA, 800x600 Фe 56 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr ""
"8514 kongrua karto, 1024x768 Фe 87 hercoj (Hz) interplektita (neniu 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr ""
"Supera VGA, 1024x768 Фe 87 hercoj (Hz) interplektita, 800x600 Фe 56 hercoj"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Etendita Supera VGA, 800x600 Фe 60 hercoj (Hz), 640x480 Фe 72 hercoj"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr ""
"Neinterplektita Supera VGA, 1024x768 Фe 60 hercoj (Hz), 640x480 Фe 72 hercoj"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Altfrekvenca Supera VGA, 1024x768 Фe 70 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Plurfrekvenca kiu povas fari 1024x768 Фe 60 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Plurfrekvenca kiu povas fari 1280x1024 Фe 74 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Plurfrekvenca kiu povas fari 1280x1024 Фe 76 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Ekrano kiu povas fari 1600x1200 Фe 70 hercoj (Hz)"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Ekrano kiu povas fari 1600x1200 Фe 76 hercoj (Hz)"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "bukla"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "defaЩlta"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "ligo"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunharulo"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "knabino"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "virino-blondhara"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "aЩtomagia"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Unua sektoro de starta subdisko"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (фefStartRikordo)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub Instalado"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO Instalado"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startЧargilon?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub Instalado"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Neniu"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Kiu(j)n startЧargilo(j)n vi deziras uzi?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "StartЧargila instalado"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Kompakta"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Prokrastoperiodo antaЩ starti defaЩltan sistemon"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Grafika reЬimo"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Prokrastoperiodo antaЩ starti defaЩltan sistemon"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "limigu"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "StartЧargilo Фefaj opcioj"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcio ``Limigu komandliniajn opciojn'' ne estas utila sen pasvorto"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -523,167 +564,342 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aЩ ЧanЬi la ekzistantajn."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Kiun specon de enskribo vi deziras aldoni"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Alia Mastruma Sistemo (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Kiun specon de enskribo vi deziras aldoni"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "DanЬera"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "DefaЩlta"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Jeso"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Forigu enskribon"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "фi tiu etikedo estas jam uzata"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Trovis %s %s interfacojn"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "фu vi havas alian?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "фu vi havas iun %s interfacon?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ne"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Jes"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Vidu hardvaran informon"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalas pelilon por %s karto %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modulo %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Kiun %s pelilon devus mi provi?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Iuokaze, la %s pelilo bezonas havi aldonan informon por Ьuste funkcii,\n"
+"kvankam Ьi normale funkcias bone sen la informo. фu vi deziras specifi\n"
+"aldonajn opciojn por Ьi aЩ permesi al la pelilo esplori vian komputilon\n"
+"por la informo Ьi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
+"Ьi ne devus kaЩzi difekton."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "AЩtomate esploru"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Specifu opciojn"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Nun vi povas provizi Ьiajn opciojn al modulo %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Nun vi povas provizi Ьiajn opciojn al modulo %s.\n"
+"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
+"Ekzemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Modulaj opcioj:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"чargado de modulo %s malsukcesis.\n"
+"фu vi deziras trovi denove kun aliaj parametroj?"
+
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Bonvenon al %s, la mastruma sistema elektilo!\n"
+"\n"
+"Por listigi la eblajn elektajxojn, premu <Tabo>.\n"
+"\n"
+"Por sxargi unu el ili, tajpu gxian nomon kaj premu <Enigu> aux atendu\n"
+"dum %d sekundoj por defauxlta sistemo.\n"
+"\n"
+
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
+"redakti la"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "ordonoj antaux startado, aux 'c' por uzi komandan linion."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "La emfazata enskribo startos auxtomate post %d sekundoj."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "mankas sufiФe da spaco en /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start Menu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minutoj"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minuto"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekundoj"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Forigu"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Surmetingo"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Skribu /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "чanЬu al Spertula reЬimo"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "чanЬu al Normala reЬimo"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "RestaЩru de dosiero"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Konservu en dosiero"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "SorФisto"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "RestaЩru de disketo"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "ForviЧu Фion"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formatu Фion"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "AЩtomate disponigu"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "фiuj el la subdiskoj estas uzata"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -691,59 +907,63 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "ReЧargu"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "retrokonekta"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Malplena"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "Dosierlokigtabelo (FAT)"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Alia"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "InterЧanЬa"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Malplena"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Alia"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detaloj"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -751,21 +971,21 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Vi havas unu grandan FAT subdiskon.\n"
-"(Ьenerale uzata de MicroSoft DOS/Windows).\n"
+"(Ьenerale uzata de MicroSoft DOS/Vindozo).\n"
"Mi sugestas ke vi unue regrandecigi tiun subdiskon\n"
"(klaku sur Ьin, kaj poste klaku sur \"Regrandecigu\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaЩe"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Legu zorge"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -775,77 +995,77 @@ msgstr ""
"sufiФas)\n"
"Фe la komenco de la disko"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: Фi tiu operacio estas danЬera."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Eraro"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Grandeco: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -853,79 +1073,79 @@ msgstr ""
"Subdisko startata defaЩlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Grandeco: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "Фe buso %d identiga╪o %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktiva"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "чanЬu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Elektu agon"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -937,7 +1157,7 @@ msgstr ""
"AЩ vi uzos LILO kaj Ьi ne funkcios, aЩ vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -949,26 +1169,26 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Vi elektis softvaran RAID-an subdiskon por la radika dosiersistemo (/).\n"
"Neniu startЧargilo povas trakti tiun sen /boot subdisko.\n"
-"Do zorgu aldoni /boot subdiskon se vi deziras uzi \"LILO\" aЩ \"grub\"."
+"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstataЩe"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaЩe"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -977,41 +1197,42 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "фu mi devus daЩri malgraЩe?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "фu eliru sen konservi"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "фu eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "чanЬu subdiskspecon"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Kiun subdiskspecon deziras vi?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1019,142 +1240,147 @@ msgstr ""
"Ne povas malfiksi surmetingon Фar Фi tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, Фiuj datenoj en Фi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Post formatado de Фiuj subdisko,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "Фiuj datenoj sur tiuj subdisko estos perdata"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaЩ ol la ЧanЬo povas efektiviЬi"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Kiun subdiskon vi deziras regrandecigi?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "фiuj datenoj en Фi tiu subdisko devus esti rezervata"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, Фiuj datenoj en Фi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi Фi tiun subdiskon por retrokonektado"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. фu vi deziras uzi Ьin?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1162,11 +1388,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"фu daЩras tamen?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1174,79 +1400,79 @@ msgstr ""
"EnЧovu disketon en drajvo\n"
"фiuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "aparato"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nova"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne scias kiel formati %s kiel speco %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "Muntado de NFS (retdosiersistemo) malsukcesis"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "muntado malsukcesis: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaЩa /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo Фe %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "фi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1255,75 +1481,81 @@ msgstr ""
"novajn dosiersistemojn. Bonvolu kontroli vian ekipa╪on por la kaЩzo de Фi "
"tiu problemo."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Vi ne havas iujn ajn subdiskojn!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Elektu preferatan lingvon por instalado kaj sistema uzado."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Elektu la aranЬon de via klavaro el la listo supre"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Elektu la aranЬon de via klavaro el la listo supre"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
+"\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Elektu \"Instalu\" se vi ne havas antaЩan version de Linukso instalita,\n"
-"aЩ se vi deziras uzi plurajn distribua╪ojn aЩ versiojn.\n"
"\n"
-"Elektu \"Promociu\" se vi deziras Ьisdatigi antaЩan version de Mandrejka\n"
-"Linukso: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 aЩ 7.0 (Air).\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-"Elektu:\n"
"\n"
-" - AЩtomaciata (rekomendata): Se vi ne jam instalis Linukson elektu Фi "
-"tion.\n"
-" RIMARKU: retumado ne konfiguros dum instalado, uzu LinuxConf por "
-"konfiguri\n"
-" Ьin post kiam la instalado finiЬos.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Akomodata: Se vi sufiФe konas GNU/Linukson, vi povas elektu la Фefan\n"
-" uzadon por via komputilo. Vidu malantaЩe por detaloj.\n"
"\n"
-" - Spertulo: фi tio supoza ke vi flue konas GNU/Linukson kaj deziras fari\n"
-" treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, vi "
-"povos\n"
-" elekti la uzado por via komputilo.\n"
-" Sed bonvolege, NE ELEKTU фI TION KROM SE VI SCIAS KION VI FARAS!\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1331,55 +1563,49 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Elektu:\n"
"\n"
-" - AЩtomaciata (rekomendata): Se vi ne jam instalis Linukson elektu Фi "
-"tion.\n"
-" RIMARKU: retumado ne konfiguros dum instalado, uzu LinuxConf por "
-"konfiguri\n"
-" Ьin post kiam la instalado finiЬos.\n"
-"\n"
" - Akomodata: Se vi sufiФe konas GNU/Linukson, vi povas elektu la Фefan\n"
" uzadon por via komputilo. Vidu malantaЩe por detaloj.\n"
"\n"
+"\n"
" - Spertulo: фi tio supoza ke vi flue konas GNU/Linukson kaj deziras fari\n"
" treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, vi "
"povos\n"
" elekti la uzado por via komputilo.\n"
-" Sed bonvolege, NE ELEKTU фI TION KROM SE VI SCIAS KION VI FARAS!\n"
+" Sed bonvolege, NE ELEKTU фI TION KROM SE VI SCIAS KION VI FARAS!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"Vi povas elekti la uzadon por via komputilo se vi elektis aЩ \"Akomodata\" "
"aЩ\n"
@@ -1401,162 +1627,368 @@ msgstr ""
" (NIS), aЩ datumbaza servilo, ktp. Kiel tia, ne atendu umojn (KDE,\n"
" GNOME...).\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
+msgid ""
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
+msgstr ""
+"DrakX provos serФi PCI-a(j)n SCSI-a(j)n adaptilo(j)n\n"
+"Se DrakX trovas SCSI-an adaptilon kaj scias kiun pelilon Ьi devas uzi\n"
+"Ьi aЩtomate instalos Ьin (aЩ ilin).\n"
+"\n"
+"Se vi havas neniom da SCSI-aj adaptiloj, ISA-an SCSI-an adapilon, aЩ\n"
+"PCI-an SCSI-an adaptilon kiun DrakX ne rekonas DrakX demandos al vi\n"
+"se vi havas SCSI-an adaptilon sur via komputilo. Se vi ne havas adaptilon\n"
+"vi povas nur klaki 'Ne'. Se vi klakos 'Jes', DrakX montros al vi liston de\n"
+"peliloj. Vi povos elekti vian specifan pelilon de la listo.\n"
+"\n"
+"\n"
+"Se vi devas permane elekti vian adaptilon, DrakX demandos\n"
+"Фu vi deziras specifi opciojn por Ьi. Vi devus permesi al DrakX\n"
+"esplori la aparaton por la opcioj. фi tiu kutime bone funkcias.\n"
+"\n"
+"Se ne, vi bezonos provizi opciojn al la pelilo.\n"
+"Reviziu la Instalgvidlibron por sugestoj pri ekstrakado de Фi tiu\n"
+"informo de Vindozo (se vi havas Ьin sur via komputilo),\n"
+"de dokumenta╪o de aparato, aЩ de la TTT-ejo de la fabrikanto\n"
+"(se vi havas atingon al la reto)."
+
+#: ../../help.pm_.c:108
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"DrakX unue provos serФi unu aЩ pli PCI-a SCSI-a adaptilo(j)n. Se Ьi trovas\n"
-"Ьin (aЩ ilin) kaj scias kiu(j)n pelilo(j)n uzi, Ьi enЧovos Ьin (ilin)\n"
-"aЩtomate.\n"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
"\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
-"Se via SCSI-a adaptilo estas ISA-a karto, aЩ Ьi estas PCI-a karto sed DrakX\n"
-"ne scias kiun pelilon uzi por tiu karto, aЩ se vi havas neniujn SCSI-ajn\n"
-"adaptilojn, DrakX instigos vin Фu vi havas unu. Se mankas al vi, respondu\n"
-"\"Ne\". Se vi havas unu aЩ pli, respondu \"Jes\". Sekve DrakX montros "
-"liston de\n"
-"peliloj, de kiu vi devas elekti unu.\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
"\n"
-"Post vi elektos la pelilon, DrakX demandos al vi se vi deziras elekti "
-"opciojn\n"
-"por Ьi. Unue, provu lasi la pelilon esplori por la karton: tio Фi kutime\n"
-"sukcesas.\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
"\n"
-"Se ne, ne forgesu la informon pri via aparataro kiu vi povus trovi en la\n"
-"dokumentaro aЩ de Vindozo (se vi havas Ьin Фe via komputilo), kiel "
-"sugestata\n"
-"de la instalgvidlibro. фi tiuj estas opcioj vi bezonos doni al la pelilo."
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:218
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"фi tiam, vi povas elekti kiu(j)n subdisko(j)n vi deziras uzi por instali\n"
-"vian Linuks-Mandrejkan sistemon se ili estas jam difinita (de antaЩa\n"
-"instalado de Linukso aЩ de alia dispartigilo). Aliokaze, vi devus difini\n"
-"drajvajn subdiskojn. фi tiu operacio konsistas el logike dispartigi la\n"
-"drajvon de la komputilo je apartaj lokoj por uzado.\n"
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Se vi devus krei novajn subdiskojn, uzu \"AЩtodisponigu\" por aЩtomate krei\n"
-"subdiskojn por Linukso. Vi povas elekti la drajvon por dispartigado per\n"
-"klaki sur \"hda\" por la unua IDE drajvo, \"hdb\" por la dua aЩ \"sda\" por "
-"la\n"
-"unua SCSI drajvo ktp.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"Du oftaj subdiskoj estas: la radika subdisko (/), kiu estas la "
-"komencopunkto\n"
-"de la dosierujhierarkio de la dosiersistemo, kaj /boot, kiu enhavas Фiujn\n"
-"dosierojn bezonatajn por starti la mastruman sistemon kiam vi unue Чaltas\n"
-"la komputilon.\n"
"\n"
-"фar la efikoj de Фi tiu procezo estas kutime neinversigeblaj, dispartigado\n"
-"povas esti timiga kaj stresiga por la nesperta uzulo. DiskDrake simpligas\n"
-"la procezon por ke Ьi ne devu esti. Konsultu la dokumentaron kaj malrapidu\n"
-"antaЩ vi antaЩeniras.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Vi povas atingi Фiun ajn opcion per uzi la klavaron: navigu tra la "
-"subdiskoj\n"
-"per Tab kaj la Supren/Suben sagoj. Kiam subdisko estas elektata, vi povas\n"
-"uzi:\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c por krei novan subdiskon (kiam malplena subdisko estas elektata)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d por forstreki subdiskon\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m por fiksi surmetingon\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Iuj subdiskoj kiuj estas lastatempe kreita devas esti formatata por uzi\n"
-"(formatado estas la kreado de dosiersistemo Фe la subdisko). Nune, vi eble\n"
-"deziras reformati iom da subdiskojn kiuj jam ekzistas por forviЧi la "
-"datenojn\n"
-"kiujn ili enhavas. Notu: ne estas necesa reformati antaЩekzistitajn\n"
-"subdiskojn, precipe se ili enhavas dosierojn aЩ datenojn kiuj vi deziras\n"
-"konservi. Kutime konservata estas ╠ome kaj /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Nun vi povas elekti la paka╪aron kiun vi deziras instali aЩ promocii.\n"
"\n"
@@ -1567,137 +1999,155 @@ msgstr ""
"povas elekti la opcion \"Elektado de apartaj paka╪oj\"; Фiokaze vi devus\n"
"foliumi tra pli ol 1000 paka╪oj..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Se vi havas Фiujn de la KDROM-oj en la listo sube, klaku \"Jes\".\n"
"Se vi havas neniujn de Фi tiuj KDROM-oj, klaku \"Nuligu\".\n"
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
"\"Jes\"."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"La elektitaj paka╪oj nun estas instalata. фi tiu operacio devus daЩri\n"
-"kelkajn minutojn krom se vi elektis promocii ekzistan sistemon. Tiuokaze\n"
-"Ьi eble daЩras pli da tempo antaЩ la promocio komencos."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Se DrakX malsukcesis trovi vian muson, aЩ se vi deziras kontroli kion Ьi\n"
-"faris, liston de musospecoj prezentos al vi supre.\n"
-"\n"
-"\n"
-"Se vi konsentas kun la opcioj ke DrakX elektis, simple saltu al la sekcio\n"
-"vi deziras per klaki sur Ьin en la menuo Фe la maldekstra. Aliokaze, "
-"elektu\n"
-"specon de muso el la menuo kiun vi pensas estas la plej proksima egala╪o\n"
-"de via muso.\n"
-"\n"
-"\n"
-"Okaze de seria muso, vi ankaЩ devas diri al DrakX al kiu seria pordo Ьi\n"
-"estas konektata."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Bonvolu elekti la Ьustan pordon. Ekzemple, la COM1-a pordo sub MS Vindozo\n"
-"estas nomata ttyS0 sub Linukso."
+"estas nomata ttyS0 sub GNU/Linukso."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"фi tiu sekcio estas dediФita al la konfigurado de loka reto aЩ modemo.\n"
-"\n"
-"Elektu \"Loka Reto\" kaj DrakX provos trovi Eterretan adaptilon Фe via\n"
-"komputilo. PCI-aj adaptiloj devus esti trovataj kaj initataj aЩtomate.\n"
-"Tamen, se via periferio estas ISA-a, aЩtomata detektado ne funckios, kaj\n"
-"vi devos elekti pelilon el la listo kiu aperos tiam.\n"
-"\n"
-"\n"
-"Por SCSI-aj adaptiloj, vi povas lasi ke la pelilo esploros por la adaptilo\n"
-"unuafoje, aliokaze vi devas difini la opciojn al la pelilo kiuj vi havigas "
-"de\n"
-"la dokumentaro de via adaptilo.\n"
-"\n"
-"\n"
-"Se vi instalas Linuks-Mandrejkan sistemon kiu estas parto de jam ekzistanta\n"
-"reto, la retadministranto estos donintan al vi Фiuj el la necesa informo\n"
-"(IP-adreso, reta submasko aЩ retmasko mallonge, kaj poЧtejo). Se vi "
-"establas\n"
-"privatan reton hejme ekzemple, vi devus elekti adresojn.\n"
-"\n"
-"\n"
-"Elektu \"Telefona konekto kun modemo\" kaj la Interreta konekto kun modemo\n"
-"estos konfigurata. DrakX provos trovi vian modemon. Se Ьi malsukcesas vi\n"
-"devos elekti la Ьustan serian pordon kie via modemo estas konektata."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Nun vi povas enigi telefon-konektajn opciojn. Se vi ne estas certa kio "
+"enigi,\n"
+"vi povas havigi la Ьustan informon de via interretprovizanto."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Enigu:\n"
"\n"
@@ -1705,14 +2155,30 @@ msgstr ""
"\n"
"\n"
" - Retmaskon: \"255.255.255.0\" Ьenerale estas bona elekta╪o. Se vi ne\n"
-"estas certa, demandu al via retadministranto.\n"
+"estas certa, demandu al via retadministranto aЩ interretprovizanto.\n"
"\n"
"\n"
-" - AЩtomata IP-adreson: Se via reto uzas bootp-an aЩ dhcp-an protokolon,\n"
+" - AЩtomata IP-adreson: Se via reto uzas BOOTP-an aЩ DHCP-an protokolon,\n"
"elektu Фi tiun opcion. Se elektita, neniu valoro estas bezonata en\n"
-"\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto.\n"
+"\"IP-adreson\". Se vi ne estas certa, demandu al via retadministranto\n"
+"aЩ interretprovizanto.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al via\n"
+"retadministranto."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1721,7 +2187,7 @@ msgstr ""
"enigi,\n"
"vi povas havigi la Ьustan informon de via interretprovizanto."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1730,13 +2196,15 @@ msgstr ""
"scias Фu vi uzos prokurajn servilojn, demandu al via retadministranto aЩ\n"
"interretprovizanto."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1749,109 +2217,204 @@ msgstr ""
"leЬdonoj\n"
"de via lando."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Nun vi povas elekti vian horzonon laЩ kie vi loЬas.\n"
"\n"
"\n"
-"Linukso administras tempon en GMT aЩ \"GrenviФa Meza Tempo\" kaj tradukas "
-"Ьin\n"
+"GNU/Linukso administras tempon en GMT aЩ \"GrenviФa Meza Tempo\" kaj "
+"tradukas Ьin\n"
"en lokan tempon laЩ la horzono vi elektis."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-"Nun vi povas elekti la servojn kiujn vi deziras starti kiam vi startas\n"
+"Nun vi povas elekti kiujn servojn vi deziras starti kiam vi startas\n"
"vian komputilon. Kiam via muso estas supre de ero, malgranda balono\n"
-"ekaperas por helpi vin. ьi priskribas la rolo de la servo.\n"
+"ekaperas por helpi vin. ьi priskribas la rolon de la servo.\n"
"\n"
"Zorgegu en Фi tiu paЧo se vi intencas uzi vian komputilon kiel servilo:\n"
"ne startu servojn kiujn vi ne deziras uzi."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linukso povas pritrakti multajn specojn de printiloj. фiu el tiuj specoj\n"
-"bezonas malsaman aranЬon. Notu tamen ke la printvicilo uzas 'lp' kiel\n"
-"la defaЩlta printilonomo; do vi devas havi unu printilon nomatan 'lp';\n"
-"sed vi povas doni multajn nomojn, apartigataj per '|' signoj, al printilo.\n"
-"Do, se vi preferas havi pli signifoplenan nomon, vi simple devas meti\n"
-"Ьin antaЩe, ekz-e: \"My Printer|lp\".\n"
-"La printilo kiu havas \"lp\" en Ьia(j) nomo(j) estos la defaЩlta printilo.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"Se via printilo estas rekte konektita al via komputilo, elektu \"Loka\n"
-"printilo\". Tiam vi devos elekti la pordon al kiu via printilo estas\n"
-"konektita, kaj taЩgan filtrilon.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
-"Se vi deziras atingi printilon Фe fora Uniksa komputilo, vi devos elekti\n"
-"\"Fora lpd\". Por funkciigi Ьin, uzulnomo kaj pasvorto ne estas "
-"postulataj,\n"
-"sed vi devos scii la printviconomon Фe Фi tiu servilo.\n"
"\n"
-"Se vi deziras atingi SMB-an printilon (kiu signifas, printilo Фe fora\n"
-"Vindoza 9x/NT kompuilo), vi devos specifi Ьian SMB-an nomon (kiu ne estas\n"
-"Ьia TCP/IP nomo), kaj eble Ьian IP adreson, kaj la uzulnomon, laborgrupon\n"
-"kaj pasvorton bezonatajn por atingi la printilon, kaj kompreneble la nomo\n"
-"de la printilo. NetWare printilo samas, krom vi ne bezonas laborgrupan\n"
-"informon."
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Nun vi povas enigi la \"root\" (radiko) pasvorto por via Linuks-Mandrejka\n"
"sistemo. Vi devas enigi la pasvorton dufoje por konfirmi ke ambaЩ fojoj\n"
@@ -1868,15 +2431,15 @@ msgstr ""
"longan aЩ komplikan pasvorton: vi devas povi memori Ьin sen tro multe da\n"
"peno."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"Por ebligi pli sekuran sistemon, vi devus elekti \"\" kaj\n"
+"Por ebligi pli sekuran sistemon, vi devus elekti \"ombran dosieron\" kaj\n"
"\"Uzu MD5-ajn pasvortojn\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1884,7 +2447,7 @@ msgstr ""
"Se via reto uzas NIS, elektu \"Uzu NIS\". Se vi ne scias, demandu al via\n"
"retadministranto."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1924,34 +2487,30 @@ msgstr ""
"Tial, vi devus konekti al la sistemo per ordinara uzanto vi kreos Фi tie,\n"
"kaj saluti kiel \"root\" nur por administraj kaj flegadaj kialoj."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Bonvolege respondu \"Jes\" Фi tie! Se via instalos Vindozon estontece,\n"
-"Ьi superskribos la startigan sektoron. Krom se vi faris startigan diskon\n"
-"kiel sugestata, vi ne plu eblas starti Linukson!"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Vi bezonas indiki kie vi deziras meti la informon postulata\n"
-"por starti Linukson.\n"
+"por starti GNU/Linukson.\n"
"\n"
"\n"
"Krom se vi scias precize kion vi faras, elektu \"Unua sektoro de\n"
"drajvo (MBR)\""
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1959,10 +2518,10 @@ msgstr ""
"Krom se vi scias precize alie, la kutima elekto estas \"/dev/hda\"\n"
" (unua Фefa IDE-a disko) aЩ \"/dev/sda\" (unua SCSI-a disko)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1973,7 +2532,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (la Linuksa чargilo) kaj Grub estas startЧargiloj: ili povas starti\n"
-"aЩ Linukson aЩ iun ajn mastruman sistemon Фeestanta Фe via komputilo.\n"
+"aЩ GNU/Linukson aЩ iun ajn mastruman sistemon Фeestanta Фe via komputilo.\n"
"Normale, Фi tiuj aliaj mastrumaj sistemoj estas Ьuste detektata kaj\n"
"instalada. Se tiel ne estas, vi povas aldoni enskribon mane per Фi tiu\n"
"ekrano. Zorgu elekti la Ьustajn parametrojn.\n"
@@ -1983,7 +2542,8 @@ msgstr ""
"al iu ajn. фiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
"Фiokaze, vi bezonos startdiskon por starti ilin!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2000,7 +2560,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO kaj Grub Фefaj opcioj estas:\n"
@@ -2022,10 +2584,60 @@ msgstr ""
" * normala: elektu normalan 80 per 25 tekstan reЬimon.\n"
" * <numero>: uzu la respondan tekstan reЬimon."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO estas startЧargilo por Sparc: Ьi povas starti aЩ Linukson aЩ iun ajn\n"
+"mastruman sistemon Фeestanta Фe via komputilo. Normale, Фi tiuj aliaj\n"
+"mastrumaj sistemoj estas Ьuste detektata kaj instalada. Se tiel ne estas,\n"
+"vi povas aldoni enskribon mane per Фi tiu ekrano. Zorgu elekti la Ьustajn\n"
+"parametrojn.\n"
+"\n"
+"\n"
+"Eble vi ankaЩ ne deziras doni atingon al Фi tiuj aliaj mastrumaj sistemoj\n"
+"al iu ajn. фiokaze vi povas forstreki la respondajn enskribojn. Sed\n"
+"Фiokaze, vi bezonos startdiskon por starti ilin!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILO Фefaj opcioj estas:\n"
+" - Instalado de StartЧargilo: Indiki kie vi deziras meti la informon\n"
+"bezonata por start GNU/Linukso. Krom se vi scias specife kion vi faras,\n"
+"elektu \"Unua sektoro de drajvo (MBR)\".\n"
+"\n"
+"\n"
+" - Prokrastoperiodo antaЩ starti defaЩltan sistemon: Elektas la nombron\n"
+"da dekonoj de sekundo ke la startЧargilo devus atendi antaЩ starti la\n"
+"unuan sistemon. фi tiu utilas Фe sistemoj kiuj tuj startas de la\n"
+"fiksdisko malantaЩ ili ebligas la klavaron. La startЧargilo ne atendas se\n"
+"\"delay\" (prokrastoperiodo) estas ellasita aЩ estas fiksita al nul."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2037,7 +2649,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Nun estas tempo por konfiguri la X Fenestra Sistemo, kiu estas la kerno\n"
-"de la Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
+"de la GNU/Linuksa GUI (Grafika UzulInterfaco). Por tiu celo, vi devas\n"
"konfiguri vian grafikan karton kaj ekranon. La plejparto de Фi tiuj paЧoj\n"
"estas aЩtomatitaj, tamen, do via laboro eble konsistos en konfirmi kion\n"
"estis farata kaj akcepti la aranЬojn. :)\n"
@@ -2048,7 +2660,7 @@ msgstr ""
"taЩgas por vi. Se ne, vi povas reveni kaj ЧanЬi ilin, tiom da tempoj kiom\n"
"estas necesa."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2056,7 +2668,7 @@ msgstr ""
"Se iu misas en la X-a konfigura╪o, uzu Фi tiujn opciojn por Ьuste konfiguri\n"
"la X Fenestran Sistemon."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2064,65 +2676,67 @@ msgstr ""
"Se vi preferas uzi grafikan saluton, elektu \"Jes\". Aliokaze, elektu "
"\"Ne\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Nun vi povas elekti kelkajn diversajn opciojn por via sistemo.\n"
"\n"
" - Uzu drajvajn optimumiga╪ojn: Фi tiu opcio povas plibonigi la rapidecon\n"
" de la drajvo, sed Ьi estas nur por spertaj uzuloj: iuj difektaj Фiparoj\n"
" povas detrui viajn datenojn, do zorgu. Notu ke la kerno havas\n"
-" enkonstruitan nigran liston de drajvoj kaj Фoparoj, sed se via deziras\n"
+" enkonstruitan nigran liston de drajvoj kaj Фiparoj, sed se via deziras\n"
" eviti malbonajn surprizojn, lasu Фi tiun opcion ne elektatan\n"
"\n"
" - Elektu sekurnivelon: vi povas elekti sekurnivelon por via sistemo.\n"
" Bonvole konsultu la gvidlibron por plena informo. Baze: se vi ne "
"scias,\n"
-" elektu \"Paranoja\", sed zorgu: JE фI TIU NIVELO, SALUTADO KIEL \"ROOT\" "
-"фE\n"
-" LA KONZOLO ESTAS MALPERMESATA! Se vi deziras esti \"root\", vi devas\n"
-" saluti kiel uzulo kaj poste uzu \"su\". Pli Ьenerale, ne anticipu uzi\n"
-" vian komputilon por io ajn escepte de servilo. Ni avertis vin.\n"
+" elektu \"Meza\".\n"
"\n"
" - Preciza kvanto de memoro se bezonata: bedaЩrinde, en la hodiaЩa persona\n"
" komputila mondo, ne estas normala metodo por demandi de la BIOS pri\n"
" la kvanto da memoro estanta en via komputilo. Konsekvence de tio,\n"
-" Linukso eble malsukcesas detekti vian kvanton da memoro Ьuste. Se tiel\n"
-" estas, vi povas specifi la Ьustan kvanton da memoro Фi tie. Notu ke\n"
+" GNU/Linukso eble malsukcesas detekti vian kvanton da memoro Ьuste. Se\n"
+" tiel estas, vi povas specifi la Ьustan kvanton da memoro Фi tie. Notu "
+"ke\n"
" diferenco je 2 aЩ 4 MB estas normala.\n"
"\n"
" - AЩtomata muntado de demetebla medio: se vi preferus ne mane munti\n"
@@ -2133,7 +2747,7 @@ msgstr ""
" post startado, elektu Фi tiun opcion (Notu: NumLock eble funkcias aЩ\n"
" ne funkcias sub X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2148,96 +2762,119 @@ msgstr ""
"deziras starti en alian ekzistanta mastruman sistemon, bonvole legu la\n"
"pluan instrukcion."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Elektu vian lingvon"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Elektu instalklason"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Detektado de fiksdisko(j)"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Konfiguru muson"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Elektu vian klavaron"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Diversaj"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Dosiersistemo konfiguro"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatu subdiskojn"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Elektu paka╪ojn"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalu sistemon"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Konfiguru retumon"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kripografia"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Konfiguru horzonon"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Konfiguru servojn"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Konfiguru printilon"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Aldonu uzulon"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Kreu praЧargdisketon"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Instalu restart-Чargilon"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Konfiguru X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "AЩtoinstala disketo"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Eliru instalprogramon"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Eraro dum legi dosiero $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Bonvole, provu la muson"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Bonvole, provu la muson"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Iuj aparatoj sur via komputilo bezonas \"proprietajn\" pelilojn por "
+"funkcii.\n"
+"Vi povas trovi iun informon pri ili Фe: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2247,234 +2884,254 @@ msgstr ""
"Por Фi tiu, kreu subdiskon (aЩ klaku estantan).\n"
"Sekve elektu la agon \"Surmetingo\" kaj faru Ьin '/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Mi ne povas legi vian subdisktabelon, Ьi estas tro difektita por mi :(\n"
-"Mi penos daЩri per blankigi difektitajn subdiskojn"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Vi devas havi interЧanЬan subdiskon"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake malsukcesis Ьuste legi la subdisktabelon.\n"
-"DaЩri je via propra risko!"
+"Vi ne havas interЧanЬan subdiskon\n"
+"\n"
+"фu vi deziras daЩri tamen?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "SerФas la radikan subdiskon."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Uzu liberan spacon"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informo"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Mankas sufiФan da libera spaco por disponigi novajn subdiskojn"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: фi tiu ne estas radika subdisko, bonvole elektu alian."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Uzu ekzistantajn subdiskojn"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Ne trovis radikosubdiskon"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Ne ekzistas subdiskojn por uzi"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ne povas uzi dissendadon sen NIS-a domajno"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Uzu la Vindoza subdiskon por retrokonektado"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Eraro dum legi dosiero $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Eraro okazis, sed mi ne scias kiel trakti Ьin bone.\n"
-"DaЩri je via propra risko."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Elektu la grandecojn"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Duobla surmetingo %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Radikosubdiska grandeco en MB: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"Iuj gravaj paka╪oj ne estis taЩge instalata.\n"
-"AЩ via KDROM drajvo aЩ via KDROM disko estas difektita.\n"
-"Kontrolu la KDROM sur instalata komputilo per\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "InterЧanЬa subdiska grandeco en MB: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bonvenon al %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Neniu disketilo havebla"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
+
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Eniras paЧon `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"La regrandecigilo por la FAT (Dosiero-Atingo-Tablo) ne povas trakti\n"
+"vian subdiskon, la sekvanta eraro okazis: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Vi devas havi interЧanЬan subdiskon"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"Via Vindoza subdisko estas tro fragmentigata, bonvole uzu ``defrag'' antaЩe"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Vi ne havas interЧanЬan subdiskon\n"
+"AVERTO!\n"
"\n"
-"фu vi deziras daЩri tamen?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Elektu la grandecon kiu vi deziras instali"
+"DrakX nun regrandecigas vian Vindozan subdiskon. Zorgu: Фi tiu operacio "
+"estas\n"
+"danЬera. Se vi ne jam faris Ьin, vi devus antaЩe eliru el la instalado, "
+"uzi\n"
+"\"scandisk\" sub Vindozo (kaj laЩvole \"defrag\"), kaj sekve relanФu la\n"
+"instaladon. AnkaЩ vi devus fari rezervan kopion de via dateno.\n"
+"Kiam vi estas certa, klaku \"Jeso\"."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Tuta grandeco: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Kiun grandecon vi deziras teni por Vindozo?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Versio: %s\n"
+msgid "partition %s"
+msgstr "subdisko: %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Grandeco: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "RegrandeciЬo de FAT malsukcesis: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Elektu la paka╪ojn kiuj vi deziras instali"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ne ekzistas FAT-ajn (Dosiero-Atingo-Tablo) subdiskojn por regrandecigi\n"
+"aЩ uzi kiel retrokonektaj subdiskoj (aЩ ne estas sufiФa da spaco)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Informo"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "ForviЧu la tutan diskon"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalu"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Forigu Vindozon"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instalanta"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Vi havas pli ol unu fiksdisko, sur kiu vi deziras instali Linukson?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Bonvolu atendi"
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"фiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Tempo restanta "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Spertula modalo"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Tuta tempo "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Uzu diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Preparas instaladon"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Uzu fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Instalanta paka╪o %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Nun vi povas dispartigi %s.\n"
+"Kiam vi finiЬos, ne forgesu savi kun `w'."
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "фu vi deziras daЩri tamen?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Uzu la liberan spacon sur la Vindoza subdisko"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Estis eraro ordigi paka╪ojn:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "La DispartigsorФilo de DrakX trovis Фi tiujn solvojn:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Dispartigado malsukcesis: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Vi ne havas iujn ajn Vindozajn subdiskojn!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Startado de la reto"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Vi ne havas sufiФe da spaco por Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Haltas de la reto"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"AVERTO!\n"
-"\n"
-"DrakX nun bezonas regrandecigi vian Vindozan subdiskon. Zorgu: Фi tiu\n"
-"operacio estas danЬera. Se vi ne jam faris Ьin, vi devus antaЩe uzi\n"
-"\"scandisk\" (kaj laЩvole \"defrag\") kontraЩ Фi tiu subdisko kaj fari "
-"rezervan\n"
-"kopion de via dateno.\n"
-"Kiam vi estas certa, klaku \"Jeso\"."
+"Eraro okazis, sed mi ne scias kiel trakti Ьin bone.\n"
+"DaЩri je via propra risko."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "AЩtomata regrandeciЬo malsukcesis"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Duobla surmetingo %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Kiun subdiskon vi deziras uzi por meti Linux4Win?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Iuj gravaj paka╪oj ne estis taЩge instalata.\n"
+"AЩ via KDROM drajvo aЩ via KDROM disko estas difektita.\n"
+"Kontrolu la KDROM sur instalata komputilo per\n"
+"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Elektu la grandecojn"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Bonvenon al %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Radikosubdiska grandeco en MB: "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Neniu disketilo havebla"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "InterЧanЬa subdiska grandeco en MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Eniras paЧon `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Via sistemo havas malmulte da risurcoj. Eble vi havos problemojn pri\n"
+"instali Linuks-Mandrejkon. Se tio okazos, vi povos anstataЩ provi tekstan\n"
+"instaladon. Por Фi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
+"tajpu `text'."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Bonvole, elektu unu el la sekvantaj specoj de instalado:"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "La totala grandeco de la grupoj vi elektis estas proksimume %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2488,7 +3145,7 @@ msgstr ""
"Malalta procento instalos nur la plej gravajn paka╪ojn;\n"
"100%% instalos Фiujn paka╪ojn."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2504,58 +3161,100 @@ msgstr ""
"Malalta procento instalos nur la plej gravajn paka╪ojn;\n"
"%d%% instalos tiom paka╪ojn kiom eblajn."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Vi povos elekti ilin pli precize en la sekvanta paЧo."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Procento da paka╪oj por instali"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Elektu la paka╪ojn kiuj vi deziras instali"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Informo"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalu"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "AЩtomaciataj dependa╪oj"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Etendu Arbon"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Maletendu Arbon"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "чanЬu inter ebena kaj ordigita je grupoj"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Malbona paka╪o"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versio: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Grandeco: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Vi ne povas elekti Фi tiun paka╪on Фar ne estas sufiФe da spaco por instali\n"
+"Ьin."
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "La sekvaj paka╪oj estos instalataj"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "La sekvaj paka╪oj estos malinstalataj"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Vi ne povas elektu/malelektu Фi tiun paka╪on"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "фi tiu estas deviga paka╪o, vi ne povas malelekti Ьin"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti Фi tiun paka╪on. ьi estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2563,46 +3262,88 @@ msgstr ""
"фi tiu paka╪o devus esti promociata.\n"
"фu vi certas ke vi deziras malelekti Ьin?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti Фi tiun paka╪on. ьi devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Vi ne povas elekti Фi tiun paka╪on Фar ne estas sufiФe da spaco por instali\n"
-"Ьin."
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "La sekvaj paka╪oj estos instalataj/malinstalataj"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Vi ne povas elektu/malelektu Фi tiun paka╪on"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Bonvolu atendi"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tempo restanta "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Tuta tempo "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Nuligu"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Preparas instaladon"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paka╪oj"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalanta paka╪o %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2618,182 +3359,387 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas Ьin, klaku \"Nuligu\" por eviti la instaladon de Фi tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Malakceptu"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "фu vi deziras daЩri tamen?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Estis eraro ordigi paka╪ojn:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de paka╪oj:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Eraro okazis"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Klavaro"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranЬon."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaЩ la instalado"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Radikosubdisko"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Kiu estas la radikosubdisko (/) Фe via sistemo?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "фiuj"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Instalklaso"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Kiun instalklaso deziras vi?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "Instalu/Promociu"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
+msgstr "Instalu"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "фu tiu Фi estas instalado aЩ promociado?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "фu tiu Фi estas instalado aЩ savado?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "AЩtomaciata"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Rekomendata"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Akomodata"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Spertulo"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"фu vi certas ke vi estas spertulo?\n"
-"фi tio permesos al vi fari potencajn sed danЬerajn agojn."
+"фi tio permesos al vi fari potencajn sed danЬerajn agojn.\n"
+"\n"
+"Mi demandos demandojn kiel: ``фu vi deziras `Uzi ombran dosieron por\n"
+"pasvortoj?'', Фu vi pretas respondi al tiu speco de demando?\""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "Promociu"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normala"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Laborstacio"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Programisto"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Servilo"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
msgstr "Por kio vi uzos vian komputilon?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfiguras PCMCIA kartojn..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Konfiguras IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Bonvole, elekti subdiskon por uzi kiel via radika subdisko."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Mi ne povas legi vian subdisktabelon, Ьi estas tro difektita por mi :(\n"
+"Mi povas peni daЩri per blankigi difektitajn subdiskojn (фIOM DA DATUMO\n"
+"pereos!). La alia solvo estas malpermesi al DrakX ЧanЬi la subdisktabelon.\n"
+"(la eraro estas %s)\n"
+"\n"
+"фu vi konsentas perdi Фiujn subdiskojn?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake malsukcesis Ьuste legi la subdisktabelon.\n"
+"DaЩri je via propra risko!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Radikosubdisko"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Kiu estas la radikosubdisko (/) Фe via sistemo?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la ЧanЬoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "фu kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "NesufiФa interЧanЬospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "SerФas haveblajn paka╪ojn"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Trovadas paka╪ojn por promocii"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "Via komputilo ne havas sufiФe da spaco por instalado aЩ promocio."
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"Via komputilo ne havas sufiФe da spaco por instalado aЩ promocio (%d > %d)."
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Kompleta (%dMB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimuma (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Rekomendata (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Akomodata"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Elektu la grandecon kiu vi deziras instali"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Elektado de Paka╪aj Grupoj"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Elektado de individuaj paka╪oj"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2804,12 +3750,12 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku "
"\"Jes\"."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2817,175 +3763,11 @@ msgstr ""
"Instalas paka╪o %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Retenu la nunan IP-an konfigura╪on"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Rekonfiguru reton nun"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ne konfiguru reton"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Reta Konfigura╪o"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Loka Reto jam estas konfigurita. фu vi deziras:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "фu vi deziras konfiguri lokan reton por via komputilo?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "Neniu retkarto trovita"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modemo Konfigura╪o"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"фu vi volas konfiguri konekton per komputebla lineo uzada la modemo\n"
-"de via komputilo?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguras retan aparaton %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Bonvole enigu la IP-an konfigurБjon por Фi tiu komputilo.\n"
-"фiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
-"(ekzemple, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "AЩtomata IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-adreso:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Retmasko:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Konfiguras reto"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Bonvole enigu vian poЧtejon.\n"
-"Via poЧtejo devus esti plene specifita poЧtejo,\n"
-"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
-"Vi ankaЩ povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNA servilo:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Prokura kluzaparato:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Kluzo:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "PoЧtejo:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Provu trovi modemon?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Telefon-konektaj opcioj"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nomo de konekto"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefonnumero"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Salutnomo"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AЩtentikigado"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP (Postula Manprema AЩtentikigada Protokolo)"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP (Pasvorta AЩtentikigada Protokolo)"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Programeto-bazata"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Finaparato-bazata"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domajna nomo"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Unu DNA-a Servilo"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Dua DNA Servilo"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3052,89 +3834,93 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la paka╪ojn"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Kontaktu la spegulon por havigi la liston de havebla paka╪oj"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Bonvole, elektu la paka╪ojn kiujn vi deziras instali."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Kiu horzono estas via?"
+msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "фu via hardvara horloЬo estas Ьustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Kiun printsistemo vi deziras uzi?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Uzu ombran dosieron"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "ombro"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Uzu MD5-ajn pasvortojn"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Uzu NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "flavaj paЬoj"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"фi tiu pasvorto ests tro simpla (Ьi devas esti almenaЩ %d signoj longa)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "AЩtentikigado NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3144,60 +3930,88 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Vera nomo"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Salutnomo"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "чelo"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Piktogramo"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "фi tiu pasvorto estas tro simpla"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "фi tiu salutnomo estas jam aldonita"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Akomodita startdisketo provizas manieron de starti via Linuksa sistemo\n"
+"sendepende de la normala startЧargilo. фi tiu estas utila se vi ne deziras\n"
+"instali SILO sur via sistemo, aЩ alia mastruma sistemo forigas SILO,\n"
+"aЩ SILO ne funkcias kun via aparato-konfigura╪o. Akomodita startdisketo "
+"ankaЩ\n"
+"povas esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniЬi de\n"
+"severaj sistemaj paneoj.\n"
+"\n"
+"Se vi deziras krei startdisketon por via sistemo, enЧovu disketon en la\n"
+"unua drajvo kaj klaku \"JES\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3218,64 +4032,32 @@ msgstr ""
"esti uzata kun la Mandrejka savdisko, kiu plifaciligas resaniЬi de severaj\n"
"sistemaj paneoj. фu vi deziras krei startdisketo por via sistemo?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "BedaЩrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elektu la disketdrajvo vi deziras uzi por krei la startdisketon"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "EnЧovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalado de LILO malsukcesis. La sekvanta eraro okazis:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "фu vi deziras uzi SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO Фefaj opcioj"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Jen la sekvantaj enskriboj en SILO.\n"
-"Vi povas aldoni pli aЩ ЧanЬi la ekzistantajn."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Subdisko"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "фi tiu etikedo estas jam uzata"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalado de SILO malsukcesis. La sekvanta eraro okazis:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Preparas startЧargilon"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
-msgstr "фu vi deziras uzi aboot?"
+msgstr "фu vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3283,136 +4065,128 @@ msgstr ""
"Eraro daЩre mi instalis \"aboot\",\n"
"фu mi devus provi perforte instali eФ se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Konfigurado de prokuraj serviloj"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP prokura servilo"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP prokura servilo"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalado de startЧargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Prokura servilo devus esti http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Prokura servilo devus esti ftp://..."
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Malbona"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Malalta"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Meza"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Alta"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Diversaj demandoj"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(eble kaЩzos koruptadon de dateno)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Uzu drajvajn optimumiga╪ojn?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Elektu sekurnivelon?"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "AЩtomata muntado de demetebla medio"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum Фiuj startadoj"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Ebligu multoblajn profilojn"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Ebligu la \"Num Lock\"-an klavon je startado"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Donu kvanton de memoro en MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Ne povas uzi \"supermount\" en alta sekurnivelo"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX generos konfigurdosierojn por kaj XFree 3.3 kaj XFree 4.0.\n"
-"DefaЩlte, ni uzos la 3.3 servilon Фar Ьi funkcias kun pli da grafikaj "
-"kartoj.\n"
-"\n"
-"фu vi volas provi XFree 4.0?"
+"Zorgu: EN фI TIU SEKURNIVELO, LA \"ROOT\" SALUTNOMO ESTAS MALPERMESATA фE "
+"LA\n"
+"KONZOLO! Se vi deziras esti \"root\", vi devas saluti kiel alia uzulo kaj\n"
+"sekve uzi \"su\". Pli Ьenerale, ne ekspektu uzi vian komputilon por iu ajn\n"
+"escepte de servilo.\n"
+"Vi estas avertita."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Zorgu, kapabligi \"NumLock\" kaЩzas multe da klavopremoj produkti ciferojn\n"
+"anstataЩ normaj literoj (ekzemple: premi `p' produktas `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Provu trovi PCI-ajn drajvojn?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Uzu ekzistantan konfiguron de X11 (X-fenestroj)?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "фu vi deziras krei aЩtoinstalan disketon por replikado de Linukso?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "EnЧovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Kreas aЩtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Iuj paЧoj ne estas finitaj.\n"
-"\n"
-"фu vi vere deziras eliri nun?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3424,161 +4198,18 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Gratulojn, instalado estas finita.\n"
-"Forigu la startdisketon kaj premu la Eniga klavo por restarti.\n"
-"\n"
-"Por informo pri riparoj kiuj estas havebla por Фi tiu versio de Linuks-\n"
-"Mandrejko, konsultu la erar-listo havebla de //www.linux-mandrake.com/.\n"
-"\n"
-"Informo pri konfiguri vian sistemon estas havebla en la post-instalada\n"
-"Фapitro de la Oficiala Linuks-Mandrejka Uzanta Gvidlibro."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Haltas"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalas pelilon por %s karto %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modulo %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kiun %s pelilon devus mi provi?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Iuokaze, la %s pelilo bezonas havi aldonan informon por Ьuste funkcii,\n"
-"kvankam Ьi normale funkcias bone sen la informo. фu vi deziras specifi\n"
-"aldonajn opciojn por Ьi aЩ permesi al la pelilo esplori vian komputilon\n"
-"por la informo Ьi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
-"Ьi ne devus kaЩzi difekton."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "AЩtomate esploru"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Specifu opciojn"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Nun vi povas provizi Ьiajn opciojn al modulo %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nun vi povas provizi Ьiajn opciojn al modulo %s.\n"
-"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
-"Ekzemple, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Modulaj opcioj:"
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"чargado de modulo %s malsukcesis.\n"
-"фu vi deziras trovi denove kun aliaj parametroj?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "фu vi deziras provi trovi PCMCIA kartojn?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguras PCMCIA kartojn..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Provu trovi %s aparatojn?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Trovis %s %s interfacojn"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "фu vi havas alian?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "фu vi havas iun %s interfacon?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ne"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Jes"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Vidu hardvaran informon"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Startado de la reto"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Haltas de la reto"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linuks-Mandrejka Instalado %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tabo>/<Alt-Tabo> inter eroj | <Spaco> elektas | <F12> sekva ekrano "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Nun vi povas dispartigi vian %s durdrajvon.\n"
-"Kiam vi finiЬos, ne forgesu savi kun `w'."
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Bonvole atendu"
@@ -3588,7 +4219,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Ambigueco (%s), esti pli preciza\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Malbona elekta╪o, provu denove\n"
@@ -3602,437 +4233,961 @@ msgstr " ? (defaЩlto estas %s) "
msgid "Your choice? (default %s) "
msgstr "Via elekta╪o? (defaЩlo estas %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Via elekta╪o (defaЩlto estas %s enigu `neniu' por elekti neniu) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "фe╤a"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UnuiЬinta Regna klavaro"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armena (skribmaЧina)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AzerbajЬana (latina)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AzerbajЬana (cirila)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazila"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Svisa (germana aranЬo)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Svisa (franca aranЬo)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak-a (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak-a (Norvega)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" aranЬo)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" aranЬo)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Irana"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japana 106 klavoj"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty aranЬo)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz aranЬo)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovaka"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vjetnama \"numero-vica\" QWERTY-a"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslava (Latina aranЬo)"
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Muso"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "LaЩnorma"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "LoЬiteka MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Mikrosofta IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Genera"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Rado"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seria"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Nespecifa 2 Butona Muso"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Nespecifa 3 Butona Muso"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "LoЬiteka MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "LoЬiteka CC serio"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "LoЬiteka MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Serio"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "LoЬiteka Muso (seria, malnova C7 speco)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Neniu Muso"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 butonoj"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 butonoj"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "neniu"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Neniu Muso"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "Sekvanta ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "фu tio Фi pravas?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Interreta Konfigurado"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "фu vi deziras provi konekti al la interreto nun?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Konfiguru interretan konekta╪on"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN-a Konfigura╪on"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Elektu vian interretprovizanton.\n"
+" Se Ьin ne estas en la listo, elektu NelistiЬitan"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Konfigurado de Konekto"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Bonvole plenigu aЩ marku la suban kampon"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ de Karto"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Memoro de Karto (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "I/O (Eneligo) de Karto"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "I/O 0 (Eneligo 0) de Karto"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "I/O 1 (Eneligo 1) de Karto"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Via persona telefonnumero"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Telefonnumero de interretprovizanto"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Provizanto DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Provizanto DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Diskuma modalo"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Konta Salutnomo (uzula nomo)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Konta Pasvorto"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Konfirmu Pasvorton"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "EЩropo"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "EЩropo (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "La cetero de la mondo"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "La cetero de la mondo - neniom da D-Kanelo (lukontraktataj lineoj)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Kiun protokolon vi deziras uzi?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Mi ne scias"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Kiun specon de karto vi havas?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "фu mi devus daЩri?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "фesigu"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+"\n"
+"Se via havas ISA-an karton, la valoro sur la sekvanta ekrano devus esti "
+"Ьusta.\n"
"\n"
+"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
+"por via karto.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Kiu estas via ISDN-a karto?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Mi trovis ISDN-an Karton:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Mi detektis ISDN-an PCI-an Karton, sed mi ne scias la specon. Bonvole "
+"elektu\n"
+"unu el la PCI-aj kartojn sur la sekvanta ekrano."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-"Bonvenon al LILO, la mastruma sistema elektilo!\n"
+"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
+"sur\n"
+"la sekvanta ekrano."
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanФu la\n"
+"aparatokonfigurilon."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Elektu la retan interfacon"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Bonvole elektu kiun retadaptilon vi deziras uzi por konekti al la interreto"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "Reta interfaco"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"Por listigi la eblajn elektajxojn, premu <Tabo>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "фu vi deziras provi la konfigura╪on?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL Konfigura╪o"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "фu vi deziras starti vian konekta╪on je startado de la sistemo?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Provu trovi modemon?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Telefon-konektaj opcioj"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nomo de konekto"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefonnumero"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Salutnomo"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AЩtentikigado"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP (Pasvorta AЩtentikigada Protokolo)"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Programeto-bazata"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Finaparato-bazata"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domajna nomo"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Unu DNA-a Servilo"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Dua DNA Servilo"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Por sxargi unu el ili, tajpu gxian nomon kaj premu <Enigu> aux atendu\n"
-"dum %d sekundoj por defauxlta sistemo.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
+"You can reconfigure your connection."
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bonvenon al GRUB la elektilo por mastrumaj sistemoj!"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Uzu la %c kaj %c klavoj por elekti kiun enskribon estas emfazata."
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Kiel vi deziras konekti al la Interreto?"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Konekti al la interreto"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Malkonekti el la interreto"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Konfiguru interretan konekta╪on"
+
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Interreta konekta╪o kaj konfiguro"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-"Premu la enenklavon por starti la elektatan mastruman sistemon, 'e' por\n"
-"redakti la"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "ordonoj antaЩ startado, aЩ 'c' por uzi komandan linion."
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "La emfazata enskribo startos aЩtomate post %d sekundoj."
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "mankas sufiФe da spaco en /boot"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Interna ISDN-karto"
-# MS-Windows doesn't exist in Esperanto; so use English
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Interna ISDN-karto"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start Menu"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Konektu al la Interreto"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Muso"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Kia estas via ISDN-a konekta╪o?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB Muso"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB Muso (2 butonoj)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Francujo"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB Muso (3 butonoj aЩ pli)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Aliaj landoj"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB Muso"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "En kiu lando vi estas?"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB Muso (2 butonoj)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modemo"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB Muso (3 butonoj aЩ pli)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modemo"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Nespecifa Mouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"Se via ADSL modemo estas Alcatel-a, elektu \"Alcatel\". Aliokaze, elektu "
+"\"ECI\"."
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "LoЬiteka MouseMan/FirstMouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "uzu pppoe"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Nespecifa 3 Butona Muso (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "ne uzu pppoe"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"La plej ofte uzata maniero por konekti kun ADSL estas dhcp + pppoe.\n"
+"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
+"Se vi ne scias, elektu 'uzu pppoe'"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "LoЬiteka MouseMan+/FirstMouse+ (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Kiun dhcp-an klienton vi deziras uzi?\n"
+"La defaЩlto estas dhcpd"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "Askia MieMouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Konfiguru interretan konekta╪on"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Konfiguru lokan reton"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ISDN-a Konfigura╪on"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "фu vi deziras provi la konfigura╪on?"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Mikrosofta IntelliMouse (PS/2-a interfaco)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "Malkapabligu retumon"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Busa Muso"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Mikrosofta Busa Muso"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"Loka Reto jam estas konfigurita.\n"
+"фu vi deziras:"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "LoЬiteka Busa Muso"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Muso"
+#: ../../netconnect.pm_.c:858
+#, fuzzy
+msgid "Network Configuration"
+msgstr "ISDN-a Konfigura╪on"
+
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Nun kiam via Interreta konekto estas konfigurata,\n"
+"vi povas konfiguri vian komputilon por disdividi Ьian Interretan konekton.\n"
+"Notu: vi bezonas dediФan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
+"\n"
+"фu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Muso (3 butonoj aЩ pli)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "neniu retkarto trovita"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Neniu Muso"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Konfiguras reto"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Mikrosofta Versia 2.1A aЩ pli alta (seria)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Bonvole enigu vian poЧtejon se vi scias Ьin.\n"
+"Iuj DHCP-aj serviloj bezonas poЧtejon por funkcii.\n"
+"Via poЧtejo devus esti plene specifita poЧtejo,\n"
+"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "LoЬiteka CC serio (seria)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "PoЧtejo"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "LoЬiteka MouseMan+/FirstMouse+ (seria)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"AVERTO: фi tiu aparato estis antaЩe konfigurata por konekti al la "
+"Interreto.\n"
+"Simple klaki JES por teni la konfiguron de Фi tiu aparato.\n"
+"Se vi modifos la subajn kampojn, vi ЧanЬos Фi tiun konfiguron."
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "Askia MieMouse (seria)"
+#: ../../network.pm_.c:302
+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 ""
+"Bonvole enigu la IP-an konfigurБjon por Фi tiu komputilo.\n"
+"фiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
+"(ekzemple, 1.2.3.4)."
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seria)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfiguras retan aparaton %s"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Mikrosofta IntelliMouse (seria)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "AЩtomata IP"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Serio (seria)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP-adreso"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seria)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Retmasko"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "LoЬiteka Muso (seria, malnova C7 speco)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "LoЬiteka MouseMan/FirstMouse (seria)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Nespecifa Muso (seria)"
+#: ../../network.pm_.c:341
+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 ""
+"Bonvole enigu vian poЧtejon.\n"
+"Via poЧtejo devus esti plene specifita poЧtejo,\n"
+"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''.\n"
+"Vi ankaЩ povas enigi la IP-adreson de la prokura kluzo se via havas unu."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Mikrosoft-kongrua (seria)"
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNA servilo"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Nespecifa 3 Butona Muso (seria)"
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Kluzo"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seria)"
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Prokura kluzaparato"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "фu tio Фi pravas?"
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Konfigurado de prokuraj serviloj"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP prokura servilo"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP prokura servilo"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Prokura servilo devus esti http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Prokura servilo devus esti ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "фi tiu platformo ne subtenas etendatajn subdiskojn"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4042,21 +5197,21 @@ msgstr ""
"La sola solvo estas movi viajn Фefajn subdiskojn por situigi la truon\n"
"apud la etendataj subdiskoj."
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "RestaЩris el dosiero %s malsukcesis: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Malbona rezerva dosiero"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
@@ -4090,42 +5245,51 @@ msgstr "interesa(j)"
msgid "maybe"
msgstr "elbe"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (grava(j))"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (tre agrabla(j))"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (agrabla(j))"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Montru malpli"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Montru pli"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "Malproksima lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Malproksima printilo"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Malproksima CUPS-a servilo"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Malproksimaj lpd servilo"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Reta Printilo (ingo)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Printila Aparato URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
@@ -4139,11 +5303,11 @@ msgstr "Provu pordojn"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Printilo, tipo \"%s\", estas detektita Фe "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Loka Printila Aparato"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4151,15 +5315,15 @@ msgstr ""
"Al kiu aparato estas via printilo konektata\n"
"(notu ke /dev/lp0 egalas LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Printila Aparato"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4169,19 +5333,19 @@ msgstr ""
"printservilo kaj la printviconomon Фe tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Malproksima poЧtejo"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Malproksima printvico"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4196,27 +5360,27 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"taЩgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "PoЧtejo de SMB servilo"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4228,131 +5392,155 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn taЩgan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Ing-Printilaj Opcioj"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Por printi al inga printilo, vi bezonas provizi la\n"
+"poЧtejon de la printilo kaj opcie la pordnumeron."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Printilaj PoЧtejo"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Pordo"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "Vi povas specifi rekte la URI por atingi la printilon per CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Kiun specon de printilo vi havas?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "фu vi deziras provi printado?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Printas provpaЬo(j)n..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"ProvpaЬo(j)n estis sendataj al la printila demono.\n"
+"фi tiu eble postulas iom da tempo antaЩ ol la printilo komencas.\n"
+"Printada stato:\n"
+"%s\n"
+"\n"
+"фu Ьi Ьuste funkcias?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"ProvpaЬo(j)n estis sendataj al la printila demono.\n"
+"фi tiu eble postulas iom da tempo antaЩ ol la printilo komencas.\n"
+"фu Ьi Ьuste funkcias?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Jes, printu Askian provpaЬon"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Jes, printu PostSkriban provpaЬon"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Jes, printu ambaЩ de la provpaЬojn"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Kiun specon de printilo vi havas?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Papergrandeco"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "El╪etu paЬon post tasko?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint-aj pelilaj opcioj"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Kolorprofunecaj opcioj"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Printu tekston kiel PostScripto?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Inversigu ordon de paЬoj"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Riparu Чtuparan tekston?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Nombro de paЬoj en eliga paЬo"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
"Dekstra/Maldrekstra marЬenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Supra/Malsupra marЬenoj en punktoj (1/72 de colo, proksimume 1/3 mm)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Aldonaj GhostScript-aj opcioj"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Aldonaj Tekstaj opcioj"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "фu vi deziras provi printado?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Printas provpaЬo(j)n..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"ProvpaЬo(j)n estis sendataj al la printila demono.\n"
-"фi tiu eble postulas iom da tempo antaЩ ol la printilo komencas.\n"
-"Printada stato:\n"
-"%s\n"
-"\n"
-"фu Ьi Ьuste funkcias?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"ProvpaЬo(j)n estis sendataj al la printila demono.\n"
-"фi tiu eble postulas iom da tempo antaЩ ol la printilo komencas.\n"
-"фu Ьi Ьuste funkcias?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "фu vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4360,19 +5548,66 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aЩ ЧanЬi la ekzistantajn."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS startas"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Kiel estas la printilo konektata?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Elektu Malproksiman Printilan Konekton"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Kun malproksima CUPS servilo, vi ne devas konfiguri iun printilon\n"
+"Фi tie; printiloj estos aЩtomate dektektataj. Se vi havas dubojn,\n"
+"elektu \"Malproksima CUPS servilo\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Malinstalu printvicon"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"фiuj printilo bezonas nomon (ekzemple lp).\n"
+"Aliaj parametroj, ekzemple la priskribon de la printilo aЩ Ьian lokon\n"
+"vi povas difini. Kiu nomo devus uzata por Фi tiu printilo kaj kiel\n"
+"Ьi estas konektata?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Nomo de printilo"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Priskribo"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Loko"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4383,45 +5618,45 @@ msgstr ""
"(ofte lp) kaj fonan eneligan dosierujon asociata kun Ьi. Kiu nomo kaj\n"
"dosierujo devus uzata por Фi tiu printvico?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nomo de printvico"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Fona eneliga dosierujo"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Printilan Konekton"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne povas aldoni subdiskon al _formatita_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Ne povas skribi dosieron $file."
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid malsukcesis"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid malsukcesis (eble raidtools mankas)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufiФaj subdiskoj por RAID nivelo %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, perioda ordonvicigilo."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4430,7 +5665,7 @@ msgstr ""
"sistemlogdosiero (syslog). Vi ankaЩ povas uzi Ьin por halti la komputilon\n"
"kiam la baterioЧargo estas malgranda."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4439,7 +5674,7 @@ msgstr ""
"'at' estis uzata, kaj lanФas baФajn ordonojn kiam la Чargmezo estas\n"
"sufiФe malgranda."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4451,7 +5686,7 @@ msgstr ""
"baza Uniksa cron, inkluzive de pli bona sekureco kaj pli fortaj\n"
"konfiguraj opcioj."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4462,7 +5697,7 @@ msgstr ""
"la 'Midnight Commander' (Meznokta Estro). AnkaЩ Ьi permesas uzi la muson\n"
"por transpoЧigi Фe la konzolo (Sen X Fenestroj)."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4470,7 +5705,7 @@ msgstr ""
"Apache estas Tut-Tera Teksa╪a servilo. ьi liveras HTML-ajn dosierojn\n"
"kaj CGI (komuna\tkluza interfaco)."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4484,7 +5719,7 @@ msgstr ""
"servoj, inkluzive de telnet, ftp, rsh, kaj rlogin. Se vi malЧaltas inetd,\n"
"ve malЧaltas Фiujn el la servoj por kiuj Ьi respondas."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4494,7 +5729,7 @@ msgstr ""
"Vi povas elekti Фi tion per la kbdconfig utilprogramo. Vi lasus Фi tion\n"
"ebligatan por la plejmulto da sistemoj."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4502,7 +5737,7 @@ msgstr ""
"lpd estas la printvica dajmono bezonata por lpr taЩge funkcii. ьi estas\n"
"baze servilo kiu arbitracias printajn taskojn al printilo(j)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4510,7 +5745,7 @@ msgstr ""
"'named' (BIND) estas Domajna NomServilo (DNS) kiun vi uzas por trovi\n"
"poЧtejojn de IP adresoj."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4518,7 +5753,7 @@ msgstr ""
"Muntas kaj malmuntas Фiujn RetDosierSistemajn (NFS), SMB (Lan\n"
"Manager/Vindozaj), kaj NCP (NetWare) surmetingojn."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4526,7 +5761,7 @@ msgstr ""
"чaltas/MalЧaltas Фiujn retajn interfacojn konfiguratajn por lanФi\n"
"dum sistemstartado."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4536,7 +5771,7 @@ msgstr ""
"фi tiu servo provizas NFS dosierЧlosado, kiun vi konfiguras per la\n"
"/etc/exports dosiero."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4544,7 +5779,7 @@ msgstr ""
"NFS estas populara protokolo por dosierdistribuado tra TCP/IP retoj.\n"
"фi tiu servo provizas NFS dosierЧlosado."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4555,7 +5790,7 @@ msgstr ""
"tekkomputiloj. ьi ne estos lanФata krom se vi konfiguras Ьi por ke Ьi\n"
"estu sendanЬera Фe komputiloj kiuj ne bezonas Ьin."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4567,7 +5802,7 @@ msgstr ""
"La pordmapservilo devas esti uzata Фe komputiloj kiuj agas kiel serviloj\n"
"por protokoloj kiuj uzas la RPC mekanismon."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4575,7 +5810,7 @@ msgstr ""
"\"Postfix\" estas PoЧtTransportPerilo, kiu estas la programo kiu movas\n"
"retpoЧton de unu komputilo al alia."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4583,7 +5818,7 @@ msgstr ""
"Savas kaj restaЩras sisteman entropikomuna╪on por pli altkvalita\n"
"generado de aleatoraj nombroj."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4593,7 +5828,7 @@ msgstr ""
"per la RIP protokolo. Kvankam RIP estas vaste uzata je malgrandaj retoj,\n"
"pli malsimplaj enkursigaj protokoloj estas bezonataj por malsimplaj retoj."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4601,7 +5836,7 @@ msgstr ""
"La rstat protokolo permesas al uzuloj sur reto ekstrakti metrikojn\n"
"pri la rapideco de iu ajn komputilo sur tiu reto."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4609,7 +5844,7 @@ msgstr ""
"La ruser protokolo permesas al uzuloj sur reto identigi kiujn estas\n"
"konektataj Фe aliaj respondantaj komputiloj."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4617,7 +5852,7 @@ msgstr ""
"La rwho protokolo permesas al uzuloj havigi liston de Фiuj el la uzuloj\n"
"konektataj Фe komputilo kiu estas uzanta la rwho dajmono (simila al finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4626,55 +5861,226 @@ msgstr ""
"mesaЬojn al diversaj sistemlogdosieroj. ьi estas bona ideo Фiam uzi\n"
"syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
"фi tiu starta komandodosiero provas Чargi viajn modulojn por via USB muso."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"Startas kaj Фesigas la X Tiparan Servilon je starttempo kaj Фesiga tempo."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Elektu kiujn servojn devus aЩtomate startata Фe starta tempo"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Bonvenon al SILO, la mastruma sistema elektilo!\n"
-"\n"
-"Por listigi la eblajn elektajxojn, premu <Tabo>.\n"
-"\n"
-"Por sxargi unu el ili, tajpu gxian nomon kaj premu <Enigu> aux atendu\n"
-"dum %d sekundoj por defauxlta sistemo.\n"
-"\n"
+"Mi ne povas legi vian subdisktabelon, Ьi estas tro difektita por mi :(\n"
+"Mi penos daЩri per blankigi difektitajn subdiskojn"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Konfiguru LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Kreu praЧargdisketon"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formatu disketon"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Elekto"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalado de LILO malsukcesis. La sekvanta eraro okazis:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabelo"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Konfiguru X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabelo"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "Mi ne povas kompreni la enhavon de la konfigurodosiero."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Disdividado de Interreta Konekto"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Nun kiam via Interreta konekto estas konfigurata,\n"
+"vi povas konfiguri vian komputilon por disdividi Ьian Interretan konekton.\n"
+"Notu: vi bezonas dediФan Retadaptilon por konfiguri Lokan Reton (LAN).\n"
+"\n"
+"фu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Diskuma modalo"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Via komputilo ne havas retadaptilon!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanФu la\n"
+"aparatokonfigurilon."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Ekzitas nur unu konfigurita retadaptilo sur via sistemo:\n"
+"\n"
+"$interface\n"
+"\n"
+"фu vi deziras konfiguri vian Lokan Reton (LAN) kun Фi tiu adaptilo?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Averto, la retadaptilo estas jam konfigurata.\n"
+"фu vi deziras rekonfiguri Ьin?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Konfigura╪o de barilo detektata!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Averto. Ekzistanta konfigura╪o de barilo detektata. Vi eble devas permane\n"
+"fiksi Ьin poste de la instalado. фu vi deziras antaЩeniri?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Konfiguras IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Mi ne povis instali ipchains-an (IP Фenan) RPM dosieron per urpmi-o."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Mi ne povis instali dhcp-an RPM dosieron per urpmi-o."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Mi ne povis instali linuxconf-an RPM dosieron per urpmi-o."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Mi ne povis instali bind-an RPM dosieron per urpmi-o."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+"Mi ne povis instali caching-nameserver-an (kaЧanta-nomservilan) RPM "
+"dosieron\n"
+"per urpmi-o."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Gratulojn!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4736,23 +6142,37 @@ msgstr "Elektas sekurnivelon"
msgid "Choose the tool you want to use"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Kiu estas via klavara aranЬo?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "чanЬu distingivon"
+
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"чanЬu vian KDROM!\n"
+"\n"
+"Bonvole, enЧovu la KDROM-on etikedatan \"%s\" en via drajvo kaj klaku "
+"\"Jes\"\n"
+"kiam vi finos.\n"
+"Se vi ne havas Ьin, klaku \"Nuligu\" por eviti la instaladon de Фi tiu KDROM."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Kiun speco de muso havas vi?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "neniu serial_usb (seria USB) trovita\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "фu vi deziras emuli trian musbutonon?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Al kiu seria pordo estas via muso konektata?"
@@ -4964,3 +6384,556 @@ msgstr "Trovas foliojn"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "Trovi foliojn bezonas iom da tempo"
+
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Interreto"
+
+msgid "Internet"
+msgstr "Interreto"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Oficejo"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Plurmedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Plurmedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Plurmedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Plurmedia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentaro"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Plurmedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Elektu la grandecon kiu vi deziras instali"
+
+#~ msgid "Total size: "
+#~ msgstr "Tuta grandeco: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Rekonfiguru lokan reton"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Vi povas konfiguri vian komputilon por disdividi Ьian Interretan Konekton.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "фiuj estas konfigurita.\n"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Konektu al la interreto per normala modemo"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Konektu al la interreto per ISDN"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Konektu al la interreto per DSL (aЩ ADSL)"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Konektu al la interreto per kAblomodemo"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "Tempo (sekundoj) de neaktiveco post kiu Ьi\n"
+#~ "malkonektos (lasu blankan por malkapabligi Ьin)."
+
+#~ msgid "Germany"
+#~ msgstr "Germana"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Germana (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "Kion vi deziras fari?"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Iuj subdiskoj kiuj estas lastatempe kreita devas esti formatata por uzi\n"
+#~ "(formatado estas la kreado de dosiersistemo Фe la subdisko). Nune, vi eble\n"
+#~ "deziras reformati iom da subdiskojn kiuj jam ekzistas por forviЧi la "
+#~ "datenojn\n"
+#~ "kiujn ili enhavas. Notu: ne estas necesa reformati antaЩekzistitajn\n"
+#~ "subdiskojn, precipe se ili enhavas dosierojn aЩ datenojn kiuj vi deziras\n"
+#~ "konservi. Kutime konservata estas ╠ome kaj /usr/local."
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "фi tiam, vi povas elekti kiu(j)n subdisko(j)n vi deziras uzi por instali\n"
+#~ "vian Linuks-Mandrejkan sistemon se ili estas jam difinita (de antaЩa\n"
+#~ "instalado de Linukso aЩ de alia dispartigilo). Aliokaze, vi devus difini\n"
+#~ "drajvajn subdiskojn. фi tiu operacio konsistas el logike dispartigi la\n"
+#~ "drajvon de la komputilo je apartaj lokoj por uzado.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vi devus krei novajn subdiskojn, uzu \"AЩtodisponigu\" por aЩtomate krei\n"
+#~ "subdiskojn por GNU/Linukso. Vi povas elekti la drajvon por dispartigado "
+#~ "per\n"
+#~ "klaki sur \"hda\" por la unua IDE drajvo, \"hdb\" por la dua aЩ \"sda\" por "
+#~ "la\n"
+#~ "unua SCSI drajvo ktp.\n"
+#~ "\n"
+#~ "\n"
+#~ "Du oftaj subdiskoj estas: la radika subdisko (/), kiu estas la "
+#~ "komencopunkto\n"
+#~ "de la dosierujhierarkio de la dosiersistemo, kaj /boot, kiu enhavas Фiujn\n"
+#~ "dosierojn bezonatajn por starti la mastruman sistemon kiam vi unue Чaltas\n"
+#~ "la komputilon.\n"
+#~ "\n"
+#~ "фar la efikoj de Фi tiu procezo estas kutime neinversigeblaj, dispartigado\n"
+#~ "povas esti timiga kaj stresiga por la nesperta uzulo. DiskDrake simpligas\n"
+#~ "la procezon por ke Ьi ne devu esti. Konsultu la dokumentaron kaj malrapidu\n"
+#~ "antaЩ vi antaЩeniras.\n"
+#~ "\n"
+#~ "\n"
+#~ "Vi povas atingi Фiun ajn opcion per uzi la klavaron: navigu tra la "
+#~ "subdiskoj\n"
+#~ "per Tab kaj la Supren/Suben sagoj. Kiam subdisko estas elektata, vi povas\n"
+#~ "uzi:\n"
+#~ "\n"
+#~ "- Ctrl-c por krei novan subdiskon (kiam malplena subdisko estas elektata)\n"
+#~ "\n"
+#~ "- Ctrl-d por forstreki subdiskon\n"
+#~ "\n"
+#~ "- Ctrl-m por fiksi surmetingon\n"
+
+#~ msgid "Cable connection"
+#~ msgstr "Kablomodema Konekton"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Elektu \"Instalu\" se vi ne havas antaЩan version de GNU/Linukso instalita,\n"
+#~ "aЩ se vi deziras uzi plurajn distribua╪ojn aЩ versiojn.\n"
+#~ "\n"
+#~ "Elektu \"Savu\" se vi deziras savi antaЩan version de Mandrejka Linukso.\n"
+#~ "\n"
+#~ "\n"
+#~ "Elektu:\n"
+#~ "\n"
+#~ " - Rekomendata: Se vi ne jam instalis Linukson elektu Фi tion.\n"
+#~ "\n"
+#~ " - Akomodata: Se vi sufiФe konas GNU/Linukson, vi povas elektu la Фefan\n"
+#~ " uzadon por via komputilo. Vidu malantaЩe por detaloj.\n"
+#~ "\n"
+#~ " - Spertulo: фi tio supozas ke vi flue konas GNU/Linukson kaj deziras fari\n"
+#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, vi "
+#~ "povos\n"
+#~ " elekti la uzado por via komputilo.\n"
+#~ " Sed bonvolege, NE ELEKTU фI TION KROM SE VI SCIAS KION VI FARAS!\n"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "фu mi devus forgesi la ЧanЬojn?"
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linukso povas pritrakti multajn specojn de printiloj. фiu el tiuj "
+#~ "specoj\n"
+#~ "bezonas malsaman aranЬon. Notu tamen ke la printvicilo uzas 'lp' kiel\n"
+#~ "la defaЩlta printilonomo; do vi devas havi unu printilon nomatan 'lp';\n"
+#~ "sed vi povas doni multajn nomojn, apartigataj per '|' signoj, al printilo.\n"
+#~ "Do, se vi preferas havi pli signifoplenan nomon, vi simple devas meti\n"
+#~ "Ьin antaЩe, ekz-e: \"My Printer|lp\".\n"
+#~ "La printilo kiu havas \"lp\" en Ьia(j) nomo(j) estos la defaЩlta printilo.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se via printilo estas rekte konektita al via komputilo, elektu \"Loka\n"
+#~ "printilo\". Tiam vi devos elekti la pordon al kiu via printilo estas\n"
+#~ "konektita, kaj taЩgan filtrilon.\n"
+#~ "\n"
+#~ "Se vi deziras atingi printilon Фe fora Uniksa komputilo, vi devos elekti\n"
+#~ "\"Fora lpd\". Por funkciigi Ьin, uzulnomo kaj pasvorto ne estas "
+#~ "postulataj,\n"
+#~ "sed vi devos scii la printviconomon Фe Фi tiu servilo.\n"
+#~ "\n"
+#~ "Se vi deziras atingi SMB-an printilon (kiu signifas, printilo Фe fora\n"
+#~ "Vindoza 9x/NT komputilo), vi devos specifi Ьian SMB-an nomon (kiu ne estas\n"
+#~ "Ьia TCP/IP nomo), kaj eble Ьian IP adreson, kaj la uzulnomon, laborgrupon\n"
+#~ "kaj pasvorton bezonatajn por atingi la printilon, kaj kompreneble la nomo\n"
+#~ "de la printilo. NetWare printilo samas, krom vi ne bezonas laborgrupan\n"
+#~ "informon."
+
+#~ msgid "Host name:"
+#~ msgstr "PoЧtejo:"
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Se DrakX malsukcesis trovi vian muson, aЩ se vi deziras kontroli kion Ьi\n"
+#~ "faris, liston de musospecoj prezentos al vi supre.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vi konsentas kun la opcioj ke DrakX elektis, simple alklaku 'JES'.\n"
+#~ "Aliokaze, vi povas elekti la specon de muso el la menuo kiun vi pensas "
+#~ "estas\n"
+#~ "la plej proksima egala╪o de via muso.\n"
+#~ "\n"
+#~ "\n"
+#~ "Okaze de seria muso, vi ankaЩ devas diri al DrakX al kiu seria pordo Ьi\n"
+#~ "estas konektata."
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Instalu/Savu"
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Mi forte rekomendas ke vi respondas \"Jes\" Фi tie! Se vi instalos "
+#~ "Vindozon\n"
+#~ "estontece, Ьi superskribos la startigan sektoron. Krom se vi faris "
+#~ "startigan\n"
+#~ "diskon kiel sugestata, vi ne plu eblas starti GNU/Linukson."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Movu vian radon!"
+
+#~ msgid "Rescue"
+#~ msgstr "Savu"
+
+#~ msgid ""
+#~ "Select:\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Elektu:\n"
+#~ "\n"
+#~ " - AЩtomaciata (rekomendata): Se vi ne jam instalis Linukson elektu Фi "
+#~ "tion.\n"
+#~ " RIMARKU: retumado ne konfiguros dum instalado, uzu LinuxConf por "
+#~ "konfiguri\n"
+#~ " Ьin post kiam la instalado finiЬos.\n"
+#~ "\n"
+#~ " - Akomodata: Se vi sufiФe konas GNU/Linukson, vi povas elektu la Фefan\n"
+#~ " uzadon por via komputilo. Vidu malantaЩe por detaloj.\n"
+#~ "\n"
+#~ " - Spertulo: фi tio supoza ke vi flue konas GNU/Linukson kaj deziras fari\n"
+#~ " treege akomodatan instaladon. Simile kiel \"Akomodata\" instalado, vi "
+#~ "povos\n"
+#~ " elekti la uzado por via komputilo.\n"
+#~ " Sed bonvolege, NE ELEKTU фI TION KROM SE VI SCIAS KION VI FARAS!\n"
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "La elektitaj paka╪oj nun estas instalata. фi tiu operacio devus daЩri\n"
+#~ "kelkajn minutojn krom se vi elektis promocii ekzistan sistemon. Tiuokaze\n"
+#~ "Ьi eble daЩras pli da tempo antaЩ la promocio komencos."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "фi tiu sekcio estas dediФita al la konfigurado de loka reto aЩ modemo.\n"
+#~ "\n"
+#~ "Elektu \"Loka Reto\" kaj DrakX provos trovi Eterretan adaptilon Фe via\n"
+#~ "komputilo. PCI-aj adaptiloj devus esti trovataj kaj initataj aЩtomate.\n"
+#~ "Tamen, se via periferio estas ISA-a, aЩtomata detektado ne funckios, kaj\n"
+#~ "vi devos elekti pelilon el la listo kiu aperos tiam.\n"
+#~ "\n"
+#~ "\n"
+#~ "Por SCSI-aj adaptiloj, vi povas lasi ke la pelilo esploros por la adaptilo\n"
+#~ "unuafoje, aliokaze vi devas difini la opciojn al la pelilo kiuj vi havigas "
+#~ "de\n"
+#~ "la dokumentaro de via adaptilo.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vi instalas Linuks-Mandrejkan sistemon kiu estas parto de jam ekzistanta\n"
+#~ "reto, la retadministranto estos donintan al vi Фiuj el la necesa informo\n"
+#~ "(IP-adreso, reta submasko aЩ retmasko mallonge, kaj poЧtejo). Se vi "
+#~ "establas\n"
+#~ "privatan reton hejme ekzemple, vi devus elekti adresojn.\n"
+#~ "\n"
+#~ "\n"
+#~ "Elektu \"Telefona konekto kun modemo\" kaj la Interreta konekto kun modemo\n"
+#~ "estos konfigurata. DrakX provos trovi vian modemon. Se Ьi malsukcesas vi\n"
+#~ "devos elekti la Ьustan serian pordon kie via modemo estas konektata."
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Kiun speco de muso havas vi?"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Kiun subdiskspecon deziras vi?"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 0d7edb52f..33239294b 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-10-28 19:54+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -13,43 +13,96 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Tavaline"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Graafikakaart"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Valige graafikakaart"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Valige X server"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X server"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree86 %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Millist XFree konfiguratsiooni soovite?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
+"XFree %s toetab Teie videokaarti ja vУib omada paremat 2D tuge."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Teie kaardi 3D graafikakiirendi on tЖЖtab koos XFree %s-ga."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D graafikakiirendi toega"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada vaid koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VуIB OLLA EBASTABIILNE.\n"
+"Teie kaarti toetab XFree %s, millel on ehk parem 2D tugi."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
+"SEE ON AGA EKSPERIMENTAALNE JA VуIB OLLA EBASTABIILNE."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s EKSPERIMENTAALSE 3D kiirendi toega"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree sДtted"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Valige graafikamДlu suurus"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Valige X server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -69,39 +122,39 @@ msgstr ""
"suurem kui Teie monitor vУimaldab. Vastasel juhul vУib Teie monitor hДvida.\n"
"Kui kahtlete, valige pigem vДiksem vДДrtus."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor ei ole seatud"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Graafikakaart ei ole veel seatud"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Kuvatihedus ei ole veel seatud"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "Hoiatus: testimine on sellele graafikakaardile ohtlik"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Hoiatus: testimine vУib Teie arvuti peatada"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Proovime seadistusi"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -109,185 +162,173 @@ msgstr ""
"\n"
"proovige mУnd parameetrit muuta"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Tekkis mingi viga:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "JДtkub %d sekundi pДrast"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Kas see on Уige?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Tekkis mingi viga, proovige mУnd parameetrit muuta"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "VДljapakutavad kuvatihedused"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Et leida vУimalikke kuvatihedusi, testin erinevaid variante.\n"
-"Ekraan Teie ees hakkab vilkuma...\n"
-"Kui soovite, lЭlitage monitor vДlja. Kui valmis saan, kostab piiks"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Kuvatihedus"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Valige kuvatihedus ja vДrvisЭgavus"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 server: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "NДita kУike"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Kuvatihedused"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Me vУime proovida leida kuvatihedust, nДiteks 800x600.\n"
-"Siiski, vahel ajab see arvuti segadusse.\n"
-"Soovite proovida?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Sobivat olekut ei leitud\n"
-"Proovige palun muud graafikakaarti vУi monitori"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatuuriasetus: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiire tЭЭp: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiire port: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Realaotussagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekraanisagedus: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Graafikakaart: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "VideomДlu: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "VДrvisЭgavus: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Kuvatihedus: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 juhtprogramm: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Valmistume X-i seadistamiseks"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Muuda monitori"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Muuda graafikakaardi"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Muuda serveri parameetreid"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Muuda kuvatihedust"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Automaatne kuvatiheduste otsing"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "NДita lisainfot"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Proovi veel"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "VДlju"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Mida Te soovite teha?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Muutusi ei teinudki?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"SДilita muutused?\n"
+"Olemasolevad sДtted:\n"
+"\n"
+"%s"
# c-format
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks kДivitage %s uuesti"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Palun vДljuge ja vajutage siis Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X stardib nЭЭd"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -295,226 +336,221 @@ msgstr ""
"Teie arvutis on vУimalik kДivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Vaikimisi sisenemine"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
+"Kui Te seda ei soovi, valige <Katkesta>"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Valige uus vaikimisi kasutaja :"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Valige palun kДivitatav aknahaldur:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 vДrvi (8 bitti)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tuhat vДrvi (15 bitti)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tuhat vДrvi (16 bitti)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miljonit vДrvi (24 bitti)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miljardit vДrvi (32 bitti)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB vУi rohkem"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA, 640x400 sagedusel 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "SVGA, 800x600 sagedusel 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-Эhilduv, 1024x768, 87 Hz vahelejДtuga "
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "SVGA, 1024x768, 87 Hz vahelejДtuga, 800x600, 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "SVGA, 800x600 sagedusel 60 Hz, 640x480 sagedusel 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA, 1024x768 sagedusel 60 Hz, 800x600 sagedusel 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "KУrgsageduslik SVGA, 1024x768, 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Mitmesageduslik, 1280x1024 sagedusel 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Mitmesageduslik, 1280x1024 sagedusel 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Mitmesageduslik, 1280x1024 sagedusel 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Kuvatihedus saab olla 1600x1200 sagedusel 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "lokiline"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "tavaline"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "pintsaklips"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brЭnett"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "neiu"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondiin"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automaagiline"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Partitsiooni algusesse"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub paigaldamine"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO paigaldamine"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri paigaldada"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub paigaldamine"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Ei soovi"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Millist alglaadurit soovite kasutada?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Alglaaduri peasДtted"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei tЖЖta vanema BIOSi korral)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Kompaktne"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Ooteaeg alglaadimisel"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Graafikamood"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Ooteaeg alglaadimisel"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "SalasУna"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "SalasУna (uuesti)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Piira kДsurea suvandeid"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "piiratud"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Alglaaduri peasДtted"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "SДte ``Piira kДsurea suvandeid'' on ilma salasУnata mittekasutatav"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "SalasУnad ei klapi"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -522,167 +558,351 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vУite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Millisele sektorile soovite seda tУsta?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Muu OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Millisele sektorile soovite seda tУsta?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "TДhis"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Vaikimisi"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "OK"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Eemalda kirje"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "TЭhi kirjetДhis ei ole lubatud"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Selline tДhis on juba kasutusel"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Leiti %s %s liidest"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "On Teil veel kaarte?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Kas Teil on ikka mУni %s liides?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ei"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Jah"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Info riistvara kohta"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Paigaldame juhtprogrammil %s kaardile %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(moodul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Millist %s juhtprogrammi peaksime proovima?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"MУnedel juhtudel vajab %s juhtprogramm tЖЖks lisainformatsiooni\n"
+"kuigi tavaliselt saab ka ilma hakkama. Kas soovite eraldi parameetreid\n"
+"mДДratleda vУi lasta juhtprogrammil ise Teie arvutit kompida? VУib juhtuda,\n"
+"et see viib arvuti segadusse kuid ei tohiks mingit jДДvat kahju teha."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Proovida niisama"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "MДДrake parameetrid"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "NЭЭd vУite moodulile %s parameetreid mДДrata"
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"NЭЭd vУite moodulile %s parameetreid mДДrata.\n"
+"Parameetrid on vormingus \"nimi=vДДrtus nimi2=vДДrtus2 ...\".\n"
+"NДiteks: \"io=0x300 irq=7\""
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Mooduli parameetrid:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Moodule %s laadimine ei Уnnestunud.\n"
+"Kas soovite proovida parameetreid muuta?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Tere tulemast! Laadimisel aitab Teid %s!\n"
+"\n"
+"Valikud kuvab <Tab>.\n"
+"\n"
+"Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
+"vaikimisi oodake %d sekundit.\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "suvandeid enne laadimist ja 'c' veel enam."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Valik laetakse automaatselt %d sekundi jooksul"
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "/boot on liiga tДis"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "TЖЖlaud"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "StartmenЭЭ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minutit"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minut"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekundit"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "эhenda lahti"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Kustuta"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "TЭЭp"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "эhenduspunkt"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Kirjuta /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Taasta failist"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Salvesta faili"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Abimees"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Taasta flopilt"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Kustuta kУik"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Vorminda kУik"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "KУik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -690,59 +910,63 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun Эks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "PДДsta partitsioonitabel"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Laadi uuesti"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "TЭhi"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Muu"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Saaleala"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "TЭhi"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Muu"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "FailisЭsteemi tЭЭbid: "
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "эksikasjad"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -754,17 +978,17 @@ msgstr ""
"Soovitame teil esmalt selle suurust muuta\n"
"(klikkige ja siis valige \"Muuda\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lugege hoolega!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -773,77 +997,77 @@ msgstr ""
"Kui soovite kasutada aboot-i, jДtke palun ketta algusesse vДhemalt 2048 \n"
"sektorit vaba ruumi"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see vУib olla ohtlik."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Viga"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "эhenduspunkt:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettatДhis: %s (arvatavasti)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "TЭЭp: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Suurus: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "эhendatud\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -851,79 +1075,79 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "эhiku suurus %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Suurus: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tЭЭp: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "эhenda"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktiivne"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Valige tegevus"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -935,7 +1159,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tЖЖta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -946,67 +1170,67 @@ msgstr ""
"fЭЭsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Olete valinud juurpartitsiooniks (/) tarkvaralise RAID-i.\n"
"Ilma /boot partitsioonita ei ole vУimalik sellist sЭsteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"эhenda lahti\""
-# c-format
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tЭЭbi muutmisel hДvivad kУik seal olnud andmed"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "JДtkate ikkagi?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "LУpeta ilma salvestamata"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "LУpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Muuda partitsiooni tЭЭp"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Mis tЭЭpi partitsiooni soovite?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Mis keelt soovite kasutada?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s Эhendada?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s Эhendada?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1014,138 +1238,143 @@ msgstr ""
"Seda Эhenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hДvivad sellel kУik andmed"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "PДrast kУigi partitsioonide vormindamist"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "on kУik andmed neil partitsioonidel hДvivad"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda Эmber paigutada?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda Эmber paigutada?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Paigutan Эmber"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste jУustamiseks vajate alglaadimist"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failisЭsteemi piire"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Mis partitsiooni soovite muuta?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest vУiks olla tagavarakoopia"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hДvivad sellel kУik andmed"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "FailisЭsteemi tЭЭp: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mУni muu"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1153,11 +1382,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jДtkata?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1165,78 +1394,78 @@ msgstr ""
"Pange tЭhi flopi masinasse\n"
"KУik andmed sellel hДvivad"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Proovin pДДsta partitsioonitabelit"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "seade"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "tase"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "Эhiku suurus"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "uus"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaУnnestus"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tЭЭpi %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "NFS Эhendamine ebaУnnestus"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "Эhendamine ebaУnnestus: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti Эhendamisel: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "эhenduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "эhenduspunktile %s on juba Эks partitsioon mДДratud\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "RingЭhendus %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "See kataloog peab jДДma kokku juurfailisЭsteemiga"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr "See Эhenduspunkt vajab tУelist (ext2, reiserfs) failisЭsteemi\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaУnnestus: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1244,73 +1473,80 @@ msgstr ""
"Tekkis viga: failisЭsteemi loomiseks ei leitud Эhtki seadet. Palun\n"
"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Teil ei ole Эhtki partitsiooni!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Valige keel sЭsteemi paigaldamiseks ja kasutamiseks."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Valige klaviatuuripaigutus Эlaltoodud nimekirjast"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Valige klaviatuuripaigutus Эlaltoodud nimekirjast"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Valige \"Paigaldamine\" kui varem sellele masinale Linuxit ei ole pandud\n"
-"vУi soovite kasutada mitut distributsiooni\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Valige \"Uuendamine\" kui soovite uuendada mУnd eelmist Mandrake Linuxit:\n"
-"5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios),\n"
-"Gold 2000 vУi 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Valige:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Automaatne: Te pole kunagi varem Linuxit paigaldanud. MдRKUS: VУrku ei\n"
-"seadistata paigaldamise ajal. PДrast paigaldamist saate selleks kasutada\n"
-"LinuxConf-i.\n"
"\n"
-" - Isetehtud: Olete Linuxiga tuttav ja soovite sЭsteemi kohandada "
-"vastavalt\n"
-"Teie vajadustele. JДrgmisena saate teha valikud \"TЖЖjaam\", \"Arendus\"\n"
-"ja \"Server\", sУltuvalt Teie arvuti edaspidisest kasutusalast.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-"sЭsteemi, mis sobiks nagu valatult Teie tДpsete ootustega.\n"
-"Aga palun, palun: дRGE VALIGE SEDA, KUI TE TдPSELT EI TEA, MIDA TEETE!\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1318,50 +1554,49 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Valige:\n"
"\n"
" - Isetehtud: Olete Linuxiga tuttav ja soovite sЭsteemi kohandada "
"vastavalt\n"
-"Teie vajadustele. JДrgmisena saate teha valikud \"TЖЖjaam\", \"Arendus\"\n"
-"ja \"Server\", sУltuvalt Teie arvuti edaspidisest kasutusalast.\n"
+" Teie vajadustele. JДrgmisena saate teha valikud sУltuvalt Teie arvuti \n"
+" edaspidisest kasutusalast.\n"
"\n"
"\n"
" - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
-"sЭsteemi, mis sobiks nagu valatult Teie tДpsete ootustega.\n"
-"Aga palun, palun: дRGE VALIGE SEDA, KUI TE TдPSELT EI TEA, MIDA TEETE!\n"
+" sЭsteemi, mis sobiks nagu valatult Teie tДpsete ootustega.\n"
+" Aga palun, palun: дRGE VALIGE SEDA, KUI TE TдPSELT EI TEA, MIDA TEETE!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"Kui valisite paigaldusklassiks \"Isetehtud\" vУi \"Ekspert\", saate teha\n"
"veel jДrgmisi valikuid:\n"
@@ -1371,44 +1606,48 @@ msgstr ""
" juhul ei lisata Эhtki kompilaatorit ega muud arendusvahendit.\n"
"\n"
" - Arendus: nii nagu nimi Эtleb. Paigaldatakse tДiskomplekt vahendeid\n"
-" eri programmeerimiskeelte kasutamiseks, allikkoodi loomiseks,\n"
-" kompileerimiseks, silumiseks jne.\n"
-" - Server: valige see, kui vajate Linux-Mandrake serverit. Saate "
-"serveerida\n"
-" faile (NFS vУi SMB), printida (Unixi stiilis lp vУi Windowsi SMB), lisaks\n"
-" andmebaasid, veebirakendused jms. Paigaldamata jДetakse esialgu "
-"graafiline\n"
-" kasutajaliides (KDE, GNOME...).\n"
-
-#: ../../help.pm_.c:70
-msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+" eri programmeerimiskeelte kasutamiseks, allikkoodi loomiseks,\n"
+" kompileerimiseks, silumiseks jne.\n"
+" - Server: valige see, kui vajate Linux-Mandrake serverit. Saate \n"
+" serveerida faile (NFS vУi SMB), printida (Unixi stiilis lp vУi \n"
+" Windowsi SMB), lisaks andmebaasid, veebirakendused jms. Paigaldamata\n"
+" jДetakse esialgu graafiline kasutajaliides (KDE, GNOME...).\n"
+
+#: ../../help.pm_.c:84
+#, fuzzy
+msgid ""
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX proovib esmalt leida Teie sЭsteemist SCSI liideseid PCI siinil.\n"
-"Kui neid leitakse, ja vastav juhtprogramm on teada, siis laetakse\n"
-"see mДllu automaatselt.\n"
-"\n"
+"Kui neid leitakse, ja vastav(ad) juhtprogramm(id) on teada, siis laetakse\n"
+"ja paigaldatakse kУik vajalik automaatselt.\n"
"\n"
"Kui Teie SCSI liides kasutab ISA siini vУi kui DrakX ei tea,\n"
"millist juhtprogrammi kasutada vУi Teil ei ole Эldse SCSI liidest,\n"
@@ -1422,110 +1661,319 @@ msgstr ""
"ka parameetreid. Siiski, enamasti lДheb kУik kenasti ka ilma neid\n"
"sisestamata: vastavad andmed leiab juhtprogramm ise.\n"
"\n"
-"\n"
-"Kui automaatne parameetrite otsimine ei tЖЖta, pЖЖrduge palun\n"
-"oma SCSI liidese dokumentatsiooni poole. Ka samas masinas olev Windows\n"
-"oskab vahel SCSI kohta vajalikku informatsiooni anda."
+"Kui automaatne parameetrite otsimine ei tЖЖta, tutvuge palun lДhemalt\n"
+"oma SCSI liidese dokumentatsiooniga vУi kЭsige abi riistvara mЭЭjalt. \n"
+"Ka samas masinas olev Windows oskab vahel SCSI kohta kasulikku \n"
+"informatsiooni anda."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"NЭЭd peaksite valima partitsioon(id) Linux-Mandrake paigaldamiseks\n"
-"kui need on juba varem kettale defineeritud. Kui Te varem ei ole oma\n"
-"kУvaketast Linuxi jaoks partitsioneerinud, saate seda jДrgmises etapis\n"
-"teha. Partitsioneerimine tДhendab fЭЭsilise ketta jaotamist loogiliselt\n"
-"eraldatud osadeks.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"Kui ei tunne ennast sel alal kindlalt, valige \"Auto Allocate\", et\n"
-"automaatselt luua Linuxile vajalikud partitsioonid.\n"
-"Linuxi maailmas tДhendab \"hda\" esimest, \"hdb\" teist IDE ketast,\n"
-"\"sda\" esimest. \"sdb\" teist SCSI ketast jne.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Kaks tavalist partitsiooni on juurpartitsioon (/), kus asub failisЭsteemi\n"
-"hierarhia algus ja /boot, mis sisaldab arvuti alglaadimiseks vajalikke "
-"faile\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Kuna partitsioneerimine ei ole pЖЖratav protsess, vУib see tekitada\n"
-"algajas kerget kУhedust. DiskDrake on selle teinud kЭll lihtsamaks,\n"
-"aga kindlasti tuleks enne iga liigutust sЭgavalt jДrele mУtelda ja\n"
-"soovitavalt ka dokumentatsiooniga tutvuda.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"KУiki tegevusi saate teha ka ainult klaviatuuri kasutades: liikuge\n"
-"partitsioonidel <TAB> ja Эles-alla noolte abil. Partitsiooni valikul\n"
"\n"
-"- Ctrl-C loob uue partitsiooni (valige selleks vaba kettaala)\n"
-"- Ctrl-D kustutab partitsiooni\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
-"- Ctrl-M seab Эhenduspunkti\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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:257
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"KУik Teie poolt vДrskelt loodud partitsioonid tuleb kasutamiseks vormindada\n"
-"(luua failisЭsteemid). Partitsiooni vormindamisel hДvitatakse kУik andmed,\n"
-"mis seal iganes leiduvad. Pange tДhele, et varem vormindatud ja vajalikke\n"
-"andmeid sisaldavaid partitsioone, tЭЭpiliselt /home ja /usr/local, ei ole\n"
-"mУistlik Эle vormindada, vaid need vУib jДtta nii nagu on."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"NЭЭd vУite valida paketigruppe paigaldamiseks vУi uuendamiseks\n"
"\n"
@@ -1536,148 +1984,185 @@ msgstr ""
"Nimekirja lУpus saate valida \"Valik paketthaaval\"; sel juhul aga peate\n"
"lДbi sirvima Эle 1000 Эksiku paketi..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Kui Teil on olemas kУik Эlaltoodud CD-d, klikkige <OK>.\n"
"Kui Teil ei ole Эhtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mУned CD-d, mДrkige vaid olemasolevad ja siis <OK>."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"NЭЭd hakkan Teie valitud pakette paigaldama. Selleks peaks kuluma\n"
-"mУnikЭmmend minutit. SЭsteemi uuendamisel kulub aega kЭll veidi rohkem,\n"
-"sest siis tuleb enne olemasolevaid pakette analЭЭsida."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Kui DrakX ei suutnud Teie hiirt Эles leida, vУi soovite vaadata, mida\n"
-"leiti, kuvatakse Teile Эlalpool hiirte nimekiri.\n"
-"\n"
-"\n"
-"Kui olete valikuga nУus, minge lihtsalt vasakpoolses menЭЭs edasi.\n"
-"Vastasel juhul valige hiire tЭЭp, mis Teie arvates kУige paremini Teie\n"
-"hiirt iseloomustab\n"
-"\n"
-"\n"
-"Kui tegemist on seerialpordi hiirega, peate Эtlema ka, mis porti ta on\n"
-"Эhendatud."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"Palun valige Уige port. NДiteks MS Windows-i COM1 kannab Linuxis\n"
+"Palun valige Уige port. NДiteks MS Windows-i COM1 kannab GNU/Linuxis\n"
"nime ttyS0."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"See sektsioon on pЭhendatud kohtvУrgu (LAN) vУi sissehelistamisteenuse\n"
-"(DialUp) sДtete paikapanemisele.\n"
-"\n"
-"Kui vastate \"LAN\", siis proovitakse Teie arvutist leida vУrgukaarti.\n"
-"Kui Teie vУrgukaart tЖЖtab PCI siinil, peaks ta olema leitav ja kasutatav\n"
-"automaatselt. ISA kaardi puhul, vУib automaatne otsing alt vedada ja Te\n"
-"peate juhtprogrammi ise nimekirjast valima.\n"
-"\n"
-"\n"
-"SCSI kaartide puhul peab juhtprogramm esmalt leidma SCSI liidese, vastasel\n"
-"juhul peate pЖЖrduma kaardi mЭЭja poole.\n"
-"\n"
-"\n"
-"Kui paigaldate Linux-Mandrake sЭsteemi masinale, mis on osake juba "
-"tЖЖtavast\n"
-"kohtvУrgust, annab vУrgu haldaja Teile kogu vajaliku informatsiooni (IP-\n"
-"aadressi, alamvУrgu maski ja masina nime). Kui seate Эles oma privaatset\n"
-"vУrku, peaksite ise valima aadressid \n"
-"\n"
-"Kui soovite Internetti kasutada modemi ja sissehelistamisteenuse kaudu,\n"
-"valige \"DialUp\" ja DrakX proovib otsida Teie arvutist modemit. Kui\n"
-"modemit ei leita, peate sisestama seerialpordi, kuhu kavatsete modemi\n"
-"Эhendada."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"NЭЭd sisestage oma sissehelistamisteenuse pakkuja andmed. Kui ei ole "
+"kindel,\n"
+"mida kuhu sisestada, kЭsige oma ISP kДest Эle."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Sisestage:\n"
"\n"
-" - IP-aadress: kui Te seda ei teha, kЭsige oma vУrguhaldurilt.\n"
+" - IP-aadress: kui Te seda ei teha, kЭsige oma vУrguhaldurilt vУi\n"
+"internetiteenuse pakkujalt (ISP)\n"
"\n"
"\n"
" - VУrgumask: \"255.255.255.0\" on tavaliselt sobiv. Igaks juhuks vУite\n"
-"vУrguhalduri kДest Эle kЭsida.\n"
+"vУrguhalduri vУi ISP kДest Эle kЭsida.\n"
"\n"
"\n"
-" - Automaatne IP: Kui Teie kohtvУrgus on kasutusel bootp vУi dhcp.\n"
+" - Automaatne IP: Kui Teie kohtvУrgus on kasutusel BOOTP vУi DHCP.\n"
"Selle valimisel ei pea vДlja \"IP-aadress\" tДitma. Kui kahtlete\n"
-"kЭsige jДllegi oma vУrguhaldurilt.\n"
+"kЭsige jДllegi oma vУrguhaldurilt vУi ISP-lt.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Kui Teie vУrgus on kasutusel NIS, valige \"Kasuta NIS-i\". Kahtluse korral\n"
+"kЭsige vУrguhaldurilt."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1686,7 +2171,7 @@ msgstr ""
"kindel,\n"
"mida kuhu sisestada, kЭsige oma ISP kДest Эle."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1694,13 +2179,15 @@ msgstr ""
"Kui peate kasutama vahendajaid (tulemЭЭri vms), seadistage need nЭЭd. Kui\n"
"kahtlete, on abiks vУrguhaldur vУi ISP"
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1711,29 +2198,42 @@ msgstr ""
"MДrkus: krЭptopakettide valimisel peate arvesse vУtma ka vУimalikke\n"
"Уiguslikke piiranguid."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"NЭЭd valige oma ajavЖЖnd.\n"
+"NЭЭd saate valida valige oma ajavЖЖndi.\n"
"\n"
"\n"
"Linuxil on kombeks hoida sisemist kella Greenwichi (GMT) ajas ja muuta\n"
"vajadusel sЭsteemi kella vastavalt Teie valitud ajavЖЖndile."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"NЭЭd saate valida, milliseid teenused peaks sЭsteemi laadimisel kДivitama.\n"
"Abiinfo balloonis antakse lЭhike kirjeldus igaЭhe kohta neist.\n"
@@ -1741,77 +2241,159 @@ msgstr ""
"Kui kavatsete oma sЭsteemi kasutada serverina, olge eriti tДhelepanelik:\n"
"tУenДoliselt ei soovi te kДivitada mittevajalikke teenuseid."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linuxi all saate kasutada mitmesuguseid printereid. IgaЭks neist nУuab\n"
-"erinevaid sДtteid tЖЖtamiseks. Siiski tasub tДhele panna, et sЭsteem\n"
-"kasutab nime 'lp' vaikimisi printeri jaoks; seega peab Teil Эks \n"
-"selliselt tДhistatud, kuigi printeri(te)le vУib panna '|' mДrgiga "
-"eraldatult\n"
-"mitu nime. Kui eelistate \"tДhendusega\" nimesid, pange nimeks\n"
-"nДiteks \"Minu printer|lp\" ja see saab olema Teie vaikimisi printer.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
"\n"
-"Kui Teie printer on otse arvuti kЭlge Эhendatud, valige \"Kohalik "
+"If your printer is physically connected to your computer, select \"Local\n"
"printer\".\n"
-"Siis saate valida pordi kuhu see on Эhendatud ja vajaliku printfiltri\n"
"\n"
"\n"
-"Kui soovite kasutada printerit, mis on Эhendatud Un*x serveriga, peate\n"
-"Valima \"lpd vУrguprinter\". Niisugusel juhul ei vaja Te kasutajatunnust\n"
-"ega salasУna, vaid ainult serveri nime ja printimisjДrje nime serveril.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Kui soovite kasutada SMB printserverit (st. printerit, mida jagab vДlja\n"
-"Windows 9x/NT, peate Дra nДitama serveri SMB nime (mis ei pea olema sama\n"
-"TCP/IP nimega) ja kindluse mУttes ka IP-aadressi. Loomulikult on vaja teada\n"
-"ka serveri poolt jagatava printeri nime ning kasutajatunnust, salasУna ja\n"
-"tЖЖgrupi nime. Sama, vДlja arvatud tЖЖgrupp, on vaja teada ka NetWare\n"
-"printserveri kasutamise korral."
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
+#, fuzzy
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"NЭЭd peate sisestama sЭsteemi juurkasutaja (root) parooli. Et vДhendada\n"
"eksimisvУimalust, tehke seda kaks korda.\n"
@@ -1824,7 +2406,7 @@ msgstr ""
"vДhemalt 8 mДrki pikk. дrge *kunagi* kirjutage oma parooli Эles!\n"
"Samas ei peaks see olema liiga pikk ja keeruline meelde jДtmiseks."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1832,7 +2414,7 @@ msgstr ""
"Turvalisema sЭsteemi saamiseks peaksite valima \"Kasuta varjutatud \n"
"paroolifaili\" ja \"Kasuta parooli kaitsmiseks MD5 algoritmi\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1840,7 +2422,7 @@ msgstr ""
"Kui Teie vУrgus on kasutusel NIS, valige \"Kasuta NIS-i\". Kahtluse korral\n"
"kЭsige vУrguhaldurilt."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1881,33 +2463,28 @@ msgstr ""
"Juurkasutaja Уigused on ainult administreerimiseks ja hoolduseks,\n"
"kУike muud tehke palun tavakasutajana"
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"On ДДrmiselt soovitatav vastata siin \"Jah\"! NДiteks, kui paigaldate\n"
-"samasse masinasse hiljem MS Windowsi, kirjutab see Эle bootsektori.\n"
-"Ilma alglaadimisflopita ei ole Teil siis enam vУimalik Linuxit\n"
-"laadida."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"NЭЭd peate valima, milliselt kettaosalt soovite Linuxit laadida.\n"
+"NЭЭd peate valima, milliselt kettaosalt soovite GNU/Linuxit laadida.\n"
"\n"
"Valige \"KУvaketta esimene sektor (MBR)\", kui ei tea tДpselt, mida\n"
"teha."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1915,10 +2492,10 @@ msgstr ""
"Tavaline valik on \"/dev/hda\" (esimese IDE kanali master), kui Te ei\n"
"tea tДpselt, et tahate teisiti teha."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1928,13 +2505,14 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"LILO (ehk LInux LOader) ja grub on alglaadurid: nad vУimaldavad laadida\n"
-"kas Linuxit vУi mУnd muud Teie arvutis olevad operatsioonisЭsteemi.\n"
+"LILO (ehk LInux LOader) ja Grub on alglaadurid: nad vУimaldavad laadida\n"
+"kas GNU/Linuxi vУi mУne muu Teie arvutis olevad operatsioonisЭsteemi.\n"
"Tavaliselt tuvastakse teised operatsioonisЭsteemid Уigesti ja seadista-\n"
"takse ka alglaadur. Kui Teil aga ei ole Уnne, tuleb parameetrid seada\n"
"kДsitsi. Olge sel juhul hoolas valima Уiged."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1951,7 +2529,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO ja grub-i peamised suvandid on:\n"
@@ -1969,10 +2549,52 @@ msgstr ""
" * normal: tavaline 80x25 tekstimood\n"
" * <number>: numbrile vastav tekstimood."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO on alglaadur SPARC arhitektuurile: see vУimaldab laadida\n"
+"kas GNU/Linuxi vУi mУne muu Teie arvutis oleva operatsioonisЭsteemi.\n"
+"Tavaliselt tuvastakse teised operatsioonisЭsteemid Уigesti ja seadista-\n"
+"takse ka alglaadur. Kui Teil aga ei ole Уnne, tuleb parameetrid seada\n"
+"kДsitsi. Olge sel juhul hoolas valima Уiged."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILO peamised suvandid on:\n"
+" - Alglaaduri paigaldus: mДДratakse kУvaketas vУi partitsioon, kus soovite\n"
+"hoida GNU/Linuxi laadimiseks vajalikku infot. Kui Te just tДpselt ei tea,\n"
+"mida teete, valige \"KУvaketta esimene sektor (MBR)\".\n"
+"\n"
+"\n"
+" - Ooteaeg alglaadimisel: mДДratakse aeg sekundikЭmnendikes enne vaikimisi\n"
+"laadimist."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1984,7 +2606,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"On aeg konfigureerida \"X Window System\" ehk lihtsalt X. X on\n"
-"Linuxi graafilise kasutajaliidese sЭda. Sel eesmДrgil peame koos\n"
+"GNU/Linuxi graafilise kasutajaliidese sЭda. Sel eesmДrgil peame koos\n"
"seadistama Teie graafikakaardi ja monitori. Enamus sellest protsessist\n"
"on automatiseeritud ja Teie Эlesandeks on ainult DrakX-i\n"
"valikutega nУustuda (vУi mitte :))\n"
@@ -1993,7 +2615,7 @@ msgstr ""
"Kui saame seadistamisega hakkama, kДivitakse X (kui Te ei anna\n"
"eraldi kДsku mitte nii teha)."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2001,7 +2623,7 @@ msgstr ""
"Kui midagi on X-i seadistustega valesti, saab siinkohal vУimalikke vigu\n"
"parandada."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2009,48 +2631,53 @@ msgstr ""
"Kui eelistate graafilist sЭsteemi sisenemist, valige \"Jah\". Konsoolimoodi\n"
"eelistamisel valige \"Ei\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"NЭЭd saate valida mitmesuguseid sЭsteemi kДitumise vУimalusi.\n"
"\n"
" - Optimiseeri kУvaketast: selle variandi puhul saate kiirendada\n"
-" kУvaketta poole pЖЖrdumist, kuid vale kasutamise korral vУite kУvaketta\n"
-" rikkuda. Valige, kui olete endas kindel\n"
+" kУvaketta poole pЖЖrdumist, kuid teatud vigaste emaplaatide puhul \n"
+" vУite kУvaketta rikkuda. Valige, kui olete endas kindel.\n"
"\n"
"\n"
" - Valige turvatase: saate valida oma sЭsteemi turvalisuse taseme.\n"
@@ -2061,7 +2688,7 @@ msgstr ""
" JUURKASUTAJA SISSE LOGIDA! Peate kasutama kДsku 'su'. Mida turvalisem, \n"
" seda keerulisem kasutada!\n"
"\n"
-" - TДpsusta operatiivmДlu mahtu: vУib esineda olukord, kus Linux ei\n"
+" - TДpsusta operatiivmДlu mahtu: vУib esineda olukord, kus GNU/Linux ei\n"
" ole suuteline detekteerima tДpselt operatiivmДlu suurust. Kui see on\n"
" nii juhtunud, saate Жelda ette tegeliku mДluhulga\n"
"\n"
@@ -2073,7 +2700,7 @@ msgstr ""
" - VУimalda NumLock alglaadimisel: sЭsteemi laadimisel muudetakse\n"
" konsoolimoodis NumLock aktiivseks"
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2087,96 +2714,118 @@ msgstr ""
"Kui soovite laadida mУnd muud operatsioonisЭsteemi, lugege palun\n"
"lisainformatsiooni."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Valige sobiv keel"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Valige paigaldusmeetod"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "KУvaketta leidmine"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Hiire seadmine"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Klaviatuuri valik"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Muud sДtted"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "FailisЭsteemid"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Vormindamine"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Pakettide valik"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "SЭsteemi paigaldus"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "VУrgusДtted"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "KrЭpto"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "AjavЖЖtme mДДramine"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Teenuste sДtted"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Printeri sДtted"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Juurkasutaja salasУna"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Tavakasutaja"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Loo alglaadimisflopi"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Alglaaduri sДtted"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Seadista X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Kiirpaigaldusflopi"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "VДlju programmist"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Viga faili $f lugemisel"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Palun testige hiirt"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Palun testige hiirt"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Osa teie riistvarast nУuab tarnijapoolseid juhtprogramme.\n"
+"Informatsiooni nende kohta saate: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2186,230 +2835,246 @@ msgstr ""
"Selleks looge uus partitsioon (vУi valige Эks olemasolevatest).\n"
"Siis valige tegevus \"эhenduspunkt\" ja seadke see kui '/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
-"Proovin loetamatud kirjed puhastada"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Teil peab olema saaleala"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
-"JДtkate omal vastutusel!"
+"Saaleala ei ole mДДratud\n"
+"\n"
+"JДtkate ikkagi?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Otsin juurpartitsiooni.."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Kasuta vaba ruumi"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informatsioon"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: See ei ole juurpartitsioon, palun valige mУni muu."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Kasuta olemasolevat partitsiooni"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Juurpartitsiooni ei leitud"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Kasutatavat partitsiooni ei leitud"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "эldlevi kasutamine on ilma NIS domeenita vУimatu"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Kasuta Windowsi partitsiooni loopback-ina"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Viga faili $f lugemisel"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Millisele partitsioonile soovite paigaldada Lnx4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
-"JДtkake omal vastutusel."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Valige suurused"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "эhenduspunkt %s on mДДratud topelt"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Juurpartitsiooni suurus (MB): "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"MУned tДhtsad paketid ei saanud korralikult paika.\n"
-"Teie CD-lugeja vУi CD on ilmselt vigane.\n"
-"Paketifaile CD-l saate kontrollida kДsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Saaleala suurus (MB): "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "See ongi %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Flopiseade ei ole kДttesaadav"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Mis partitsiooni soovite muuta?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Arvutan Windowsi failisЭsteemi piire"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "JДrgmine samm: '%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"FAT partitsiooni suurust ei Уnnestu muuta, \n"
+"ilmnes selline viga: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Teil peab olema saaleala"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"Teie Windowsi partitsioon on fragmenteerunud, palun kasutada 'defrag'-i"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Saaleala ei ole mДДratud\n"
+"HOIATUS!\n"
"\n"
-"JДtkate ikkagi?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Valige paigalduse maht"
+"DrakX hakkab Teie Windowsi partitsiooni suurust muutma. Olge ettevaatlik:\n"
+"see operatsioon vУib olla ohtlik Teie failidele. Palun kasutage enne\n"
+"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
+"Kui olete oma otsuses kindel, vajutage OK."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Suurus kokku: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Kui palju ruumi jДtate Windowsi jaoks?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Versioon: %s\n"
+msgid "partition %s"
+msgstr "Partitsioon %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Suurus: %d kB\n"
+msgid "FAT resizing failed: %s"
+msgstr "Suuruse muutmine ebaУnnestus: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Valige paketid paigaldamiseks"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr "Sobivat FAT partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "TЭhjenda kogu ketas"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Paigaldamine"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Eemalda Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Paigaldan"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Teil on rohkem kui Эks kУvaketas, millisele neis paigaldate Linuxi?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Palun oodake, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Kettal %s hДvivad KуIK partitsioonid ja andmed"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Aega jДДnud "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Eksperdi mood"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Aega kokku "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Kasuta diskdrake-i"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Valmistun paigaldamiseks"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Kasuta fdisk-i"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Paketi %s paigaldamine"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"NЭЭd saate partitsioneerida %s kУvaketta\n"
+"Kui olete valmis, salvestage kДsuga 'w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Ikkagi edasi?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Kasuta vaba ruumi Windowsi partitsioonil"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Pakettide tellimisel tekkis viga:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Partitsioone ei saa enam lisada"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Kasutada olemasolevat X-i seadistust?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX kettajagamise abimees leidis sellised lahendused:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Palun valige Эks jДrgnevatest paigaldusklassidest"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Ketta jagamine ebaУnnestus: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Teil ei ole Эhtki Windowsi partitsiooni!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "KДivitame vУrguliidesed"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Teil ei ole piisavalt ruumi Lnx4win jaoks"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Seiskame vУrguliidesed"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"HOIATUS!\n"
-"DrakX peab Teie Windowsi partitsiooni suurust muutma. Olge ettevaatlik:\n"
-"see operatsioon vУib olla ohtlik Teie failidele. Palun kasutage enne\n"
-"scandisk-i, defrag-i ja tehke tagavarakoopia.\n"
-"Kui olete oma otsuses kindel, vajutage OK."
+"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
+"JДtkake omal vastutusel."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automaatne muutmine ebaУnnestus"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "эhenduspunkt %s on mДДratud topelt"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Millisele partitsioonile soovite paigaldada Lnx4Win?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"MУned tДhtsad paketid ei saanud korralikult paika.\n"
+"Teie CD-lugeja vУi CD on ilmselt vigane.\n"
+"Paketifaile CD-l saate kontrollida kДsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Valige suurused"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "See ongi %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Juurpartitsiooni suurus (MB): "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Flopiseade ei ole kДttesaadav"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Saaleala suurus (MB): "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "JДrgmine samm: '%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Teie sЭsteemil on ressursiprobleeme ja paigaldamine vУib ebaУnnestuda.\n"
+"Kui nii juhtub, proovige palun tekstipУhjalist paigaldust. Selleks \n"
+"vajutaga laadimisel F1 ja sisestage 'text'"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Palun valige Эks jДrgnevatest paigaldusklassidest"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Teie poolt valitud gruppide kogusuurus on umbes %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2422,7 +3087,7 @@ msgstr ""
"Madalama protsendi puhul paigaldatakse vaid kУige tДhtsamad paketid;\n"
"100%% tДhendab kУige valitud pakettide paigaldamist."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2436,58 +3101,98 @@ msgstr ""
"Kui soovite sellest vДhem, valige vДiksem protsent ja paigaldamisele\n"
"kuuluvad vaid olulisemad paketid."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "TДpsemalt saate valida jДrgmisel sammul"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Paigaldatavate pakettide protsent"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Valige paketid paigaldamiseks"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Paigaldamine"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automaatsed sУltuvused"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Ava puu"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Sule puu"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud vУi sorteerimata"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versioon: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Suurus: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "TДhtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Paigaldamiseks on valitud jДrgmised paketid"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Eemaldamiseks on valitud jДrgmised paketid"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Seda paketti ei saa (mitte) valida"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba paigaldatud"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2495,44 +3200,88 @@ msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Paigaldamiseks vУi eemaldamiseks valitud paketid"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Seda paketti ei saa (mitte) valida"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Paigaldan"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Palun oodake, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Aega jДДnud "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Aega kokku "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Katkesta"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Valmistun paigaldamiseks"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Paketi %s paigaldamine"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Sobib"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2546,181 +3295,385 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil sДherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Ei sobi"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Ikkagi edasi?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Pakettide tellimisel tekkis viga:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Pakettide paigaldamisel tekkis viga:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Tekkis mingi viga"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Klaviatuur"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Teisi keeli saab valida pДrast paigaldamist"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Juurpartitsioon"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "KУik"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Paigaldusklass"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Millist paigaldusklassi Te soovite"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Paigaldus/Uuendus"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "On see paigaldus vУi uuendus?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "On see paigaldus vУi taastamine?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automaatne"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Soovituslik"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Isetehtud"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Olete ikka kindlasti ekspert? \n"
-"Hei, ilma naljata, eksperdi valikud on laiemad kuid sellevУrra ohtlikumad."
+"Hei, ilma naljata, eksperdi valikud on laiemad kuid sellevУrra ohtlikumad.\n"
+"\n"
+"Teilt kЭsitakse kЭsimusi nДiteks 'paroolifaili varjutamise' jms kohta,\n"
+"olete Te selleks valmis?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Uuendus"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Tavakasutus"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "TЖЖjaam"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Arendus"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
msgstr "Milline on Teie sЭsteemi kasutusala?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tЭЭp"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir Эhendatud?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA kaartide seadmine..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE seadistamine"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Millist partitsiooni soovite kasutada juurkataloogi jaoks?"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Valige Эhenduspunktid"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
+"Proovin loetamatud kirjed puhastada kuid ANDMED NENDEL HдVIVAD.\n"
+"Teine vУimalus on keelata DrakX-il partitsioonitabeli muutmine.\n"
+"(Viga oli selline: %s)\n"
+"Kas olete nУus partitsioonide kaotamisega?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
+"JДtkate omal vastutusel!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Juurpartitsioon"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli sДilitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Saaleala on paigaldamiseks liiga vДike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Otsin kДttesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Otsin uuendatavaid pakette"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "Teie kУvakettal ei ole piisavalt vaba ruumi"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr "Teie kУvakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "TДielik (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimaalne (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Soovitatav (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Isetehtud"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Valige paigalduse maht"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2730,12 +3683,12 @@ msgstr ""
"Kui Teil ei ole Эhtki neist, klikkige <Katkesta>.\n"
"Kui puuduvad mУned CD-d, mДrkige vaid olemasolevad ja siis <OK>."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2743,173 +3696,11 @@ msgstr ""
"Paketi %s paigaldamine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "PaigaldusjДrgsed sДtted"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "SДilita olemasolevad IP sДtted"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Seadista vУrk uuesti"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ei taha vУrku seadistada"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "VУrgu sДtted"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "KohtvУrk on seadistatud. Kas soovite:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Kas soovite kasutada kohtvУrku?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "vУrgukaarti ei leitud"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modemi sДtted"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Kas soovite kasutada DialUp Эhendust modemi kaudu?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Seadistame vУrgukaardi %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Palun andke IP parameetrid selle masina jaoks.\n"
-"KУik read tuleb sisestada IP-aadressi kujul\n"
-"(NДiteks 12.34.56.78)"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automaatne IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-aadress"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "VУrgu mask:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "VУrguseadistused"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Palun sisestage oma masina nimi.\n"
-"Masina nimi peab olema esitatud tДiskujul,\n"
-"nagu ``minumasin.minufirma.ee''.\n"
-"Kui Teil on vaikimisi lЭЭs, siis sisestage ka selle IP-aadress"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Nimeserver:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "LЭЭsipoolne seade:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "VaikelЭЭs:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Masinanimi:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Kas otsida modemit?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Millisesse seerialporti on Teie modem Эhendatud?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "DialUp parameetrid"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "эhenduse nimi"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Sissehelistamiskeskuse number"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Kasutajakonto"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Autentimisviis"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "SkriptipУhine"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "TerminalipУhine"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domeeninimi"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Esimene nimeserver:"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Teine nimeserver:"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2977,88 +3768,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Palun valige paketid paigaldamiseks"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Millises ajavЖЖtmes elate?"
+msgstr "Millises ajavЖЖtmes asute?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Millist printimissЭsteemi soovite kasutada?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "SalasУna puudub"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Kasuta varjutatud paroolifaili"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "varjutatud"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Kasuta parooli kaitsmiseks MD5 algoritmi"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "NIS YP"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "SalasУna on liiga lihtne (peaks olema vДhemalt %d tДhemДrki)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Kasutaja Уige"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3068,60 +3863,88 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "PДrisnimi"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "KДsurida"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikoon"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "SalasУna on liiga lihtne"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult vДikesi tДhti, numbreid, - ja _"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Isetehtud alglaadimisketas annab Teile vУimaluse laadida Linux flopilt\n"
+"sУltumata tavaliselt alglaadijast. See vУib abiks olla, kui Te ei soovi\n"
+"SILO-t kУvakettale kirjutada vУi mУni muu operatsioonisЭsteem SILO\n"
+"Дra kustutab vУi ei Уnnestu SILO-t Teie riistvara peal kasutada.\n"
+"Alglaadmisflopi on kasutatav ka hДdaabikettana, kui kУvakettal oleva\n"
+"failisЭsteemiga peaks mingi Уnnetus juhtuma. Hoidke end ja Teid hoiab\n"
+"ka Jumal!\n"
+"\n"
+"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
+"\"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "JДta vahele"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3142,64 +3965,32 @@ msgstr ""
"failisЭsteemiga peaks mingi Уnnetus juhtuma. Hoidke end ja Teid hoiab\n"
"ka Jumal!"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kДttesaadav"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vali flopiseade, mida kasutad alglaadimisketta tegemiseks"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO paigaldamine ebaУnnestus. Tekkis jДrgnev viga:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Soovite SILO-t kasutada?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO peasДtted"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Praegu on SILO jaoks kirjeldatud alltoodud kirjed.\n"
-"Te vУite neid lisada ning olemasolevaid muuta."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partitsioon"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Selline tДhis on juba kasutusel"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO paigaldamine ebaУnnestus. Tekkis jДrgnev viga:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Alglaaduri sДtted"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3207,126 +3998,120 @@ msgstr ""
"Viga aboot-i paigaldamisel, \n"
"kas forseerida, riskides esimese partitsiooni hДvinguga?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Vahendajate sДtted"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP vahendaja"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP vahendaja"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Vahendaja peab olema kujul http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Vahendaja peab olema kujul ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Alglaaduri paigaldamine ebaУnnestus. Tekkis jДrgnev viga:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Tere tulemast, krДkkerid"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "VДhene"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Madal"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Keskmine"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "KУrge"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Muud kЭsimused"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(vУib tekitada andmete hДvimist)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Kas optimiseerime kУvaketast?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Valige turvatase"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Kui vaja, tДpsusta RAM suurust (leitud %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "CD/flopi/.. autoЭhendamine"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Puhasta /tmp igal laadimisel"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "VУimalda mitut profiili"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "LЭlita Num Lock kДivitamisel sisse"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Anna mДlu suurus megabaitides"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "KУrgel turvatasemel ei saa supermount-i kasutada"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX saab luua sДttefailid nii XFree 3.3 kui ka XFree 4.0. \n"
-"Vaikimisi kasutatakse versiooni 3.3, sest see toetab rohkem seadmeid ja \n"
-"on stabiilsem.\n"
-"\n"
-"Kas soovite kasutada XFree versiooni 4.0?"
+"SELLEL TURVATASEMEL EI OLE VуIMALIK SэSTEEMI SISENEDA JUURKASUTAJANA!\n"
+"Juurkasutaja Уiguste saamiseks tuleb siseneda tavakasutajana ja siis \n"
+"kasutada \"su\"-d.\n"
+"Serveri puhul on selline piirang tДiesti mУistlik.\n"
+"Teid on igal juhul hoiatatud."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Olge ettevaatlik, NumLock-i kasutamine vУib pУhjustada (eriti kantavatel\n"
+"arvutitel) probleeme."
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Kas otsida PCI seadmeid?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Kasutada olemasolevat X-i seadistust?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "Kas soovite luua kiirpaigaldusflopi (abiks korduval paigaldusel)?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tЭhi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3336,7 +4121,7 @@ msgstr ""
"\n"
"Olete kindel, et vДljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3357,151 +4142,17 @@ msgstr ""
"Abi sЭsteemi edasiseks konfigureerimiseks saab eelkУige dokumendist\n"
"\"Official Linux-Mandrake User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Sulgemine"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Paigaldame juhtprogrammil %s kaardile %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(moodul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Millist %s juhtprogrammi peaksime proovima?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"MУnedel juhtudel vajab %s juhtprogramm tЖЖks lisainformatsiooni\n"
-"kuigi tavaliselt saab ka ilma hakkama. Kas soovite eraldi parameetreid\n"
-"mДДratleda vУi lasta juhtprogrammil ise Teie arvutit kompida? VУib juhtuda,\n"
-"et see viib arvuti segadusse kuid ei tohiks mingit jДДvat kahju teha."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Proovida niisama"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "MДДrake parameetrid"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "NЭЭd vУite moodulile %s parameetreid mДДrata"
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"NЭЭd vУite moodulile %s parameetreid mДДrata.\n"
-"Parameetrid on vormingus \"nimi=vДДrtus nimi2=vДДrtus2 ...\".\n"
-"NДiteks: \"io=0x300 irq=7\""
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Mooduli parameetrid:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Moodule %s laadimine ei Уnnestunud.\n"
-"Kas soovite proovida parameetreid muuta?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Kas otsida PCMCIA kaarte?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kaartide seadmine..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Kas otsida %s seadmeid?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Leiti %s %s liidest"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "On Teil veel kaarte?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Kas Teil on ikka mУni %s liides?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ei"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Jah"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Info riistvara kohta"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "KДivitame vУrguliidesed"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Seiskame vУrguliidesed"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake paigaldamine %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> vДljade vahel | <Space> valib | <F12> jДrgmine samm "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"NЭЭd saate partitsioneerida %s kУvaketta\n"
-"Kui olete valmis, salvestage kДsuga 'w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Palun oodake"
@@ -3511,7 +4162,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Mitmeselt mУistetav (%s), palun tДpsustage\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Halb valik, proovige palun uuesti\n"
@@ -3525,446 +4176,952 @@ msgstr " ? (vaikimisi %s) "
msgid "Your choice? (default %s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Teie valik? (vaikimisi %s, `none' - ei midagi)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "T╗ehhi"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeenia (trЭkimasin)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AserbaidЧaani (ladina)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AserbaidЧaani (kirillitsa)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "пveitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "пveitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "DVORAK (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "DVORAK (Norra)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iraani"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Jaapani 106 klahviga"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovaki"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "TЭrgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "TЭrgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnami numbrireaga QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslaavia (latin)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Suni hiir"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Tavahiir"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Tavaline"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Ratas"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seerial"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Lihtsalt 2-nupuline hiir"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Lihtsalt 3-nupuline hiir"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC seeria (seerial)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech (seerial, vana C7 tЭЭpi)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Hiirt ei ole"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 nuppu"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 nuppu"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ei soovi"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Hiirt ei ole"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "JДrgmine ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Kas see on sobiv?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Interneti sДtted"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Kas soovite oma internetiЭhendust proovida?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "VУrgusДtted"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Ei taha vУrku seadistada"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Loo internetiЭhendus / Seadista kohtvУrk"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN sДtted"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Vali oma teenusepakkuja.\n"
+" Kui see ei ole nimekirjas, vali Tundmatu"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "InternetiЭhenduse sДtted"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Palun tДida allpool olev vДli"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Kaardi IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Kaardi mДlu (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Kaardi IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Kaardi IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Kaardi IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Teie telefoninumber"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Teenusepakkuja tunnus (nДiteks minuisp.ee)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Sissehelistamiskeskuse number"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Teenusepakkuja DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Teenuspakkuja DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Valimisviis"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Kasutajatunnus"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "SalasУna"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "SalasУna uuesti"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Euroopa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Euroopa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "эlejДДnud maailm"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "эlejДДnud maailm - ilma D-kanalita"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Mis protokolli soovite kasutada?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Ei tea"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Mis tЭЭpi kaart Teil on?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "JДtka"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Katkesta"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
"\n"
+"Kui Teil on ISA kaart, siis peaks jДrgmised vДДrtused olema Уiged.\n"
+"\n"
+"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
+"vДДrtusi.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Milline on Teie ISDN kaart?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Leitud ISDN kaart:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-"Tere tulemast! Laadimisel aitab Teid LILO!\n"
+"Leidsin kЭll PCI ISDN kaardi, kui selle tЭЭp on tundmatu. Palun valige Эks "
+"PCI kaart jДrgmisel sammul."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "PCI ISDN kaarti ei leitud. Palun valige Эks jДrgmisel sammul."
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"эhtki vУrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
+"riistvara sДtteseadjat."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Valige vУrguliides"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"Palun valige, millist vУrguliidest soovite internetiЭhenduse jaoks kasutada"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "VУrguliides"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"Valikud kuvab <Tab>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Kas kДivitan uued vУrguliidese sДtted?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL sДtted"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Kas soovite luua Эhenduse juba alglaadimisel?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Kas otsida modemit?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Millisesse seerialporti on Teie modem Эhendatud?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "DialUp parameetrid"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "эhenduse nimi"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Sissehelistamiskeskuse number"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Kasutajakonto"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Autentimisviis"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "SkriptipУhine"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "TerminalipУhine"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domeeninimi"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Esimene nimeserver:"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Teine nimeserver:"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
-"vaikimisi oodake %d sekundit.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Loo internetiЭhendus / Seadista kohtvУrk"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tere tulemast! Laadimisel aitab Teid GRUB!"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "VУrgusДtted"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Kasutage valiku tegemiseks %c ja %c klahve"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Ei taha vУrku seadistada"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Enter laeb Teie valiku, 'e' laseb muuta"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "suvandeid enne laadimist ja 'c' veel enam."
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Ei taha vУrku seadistada"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Valik laetakse automaatselt %d sekundi jooksul"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Loo Эhendus"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "/boot on liiga tДis"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Katkesta Эhendus"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "TЖЖlaud"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "VУrgusДtted"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "StartmenЭЭ"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "InternetiЭhenduse seadistamine"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Suni hiir"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+#, fuzzy
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Kas kДivitan uued vУrguliidese sДtted?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB hiir"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "VУrgusДtted"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB hiir (2 nuppu)"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "VУrgusДtted"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB hiir (3+ nuppu)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Sisemine ISDN kaart"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB hiir"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "VДline modem"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB hiir (2 nuppu)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Loo internetiЭhendus"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB hiir (3+ nuppu)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Millist ISDN Эhendust kasutate?"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Lihtsalt hiir (PS/2)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "VУrgusДtted"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Prantsusmaa"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Lihtsalt 3-nupuline hiir (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Muud maad"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "Millisel maal Te praegu olete ?"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Kui teil on Alcatel-i modem, valige Alcatel. Muidu aga ECI"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "kasuta pppoe-d"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "Дra kasuta pppoe-d"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"KУige tavalisem Эhendusviis ADSL jaoks on dhcp + pppoe.\n"
+"MУnel juhul aga kasutatakse ainult dhcp-d.\n"
+"Kui Te ei tea, kasutage pppoe-d"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "VУrgusДtted"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus hiir"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Mis DHCP klienti soovite kasutada?\n"
+"Vaikimisi on dhcpd"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus hiir"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "VУrgusДtted"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus hiir"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "KohtvУrgu seadistamine"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB hiir"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "VУrgu sДtted"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB hiir (3 vУi enam nuppu)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Kas soovite seadistusi proovida?"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Hiirt ei ole"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "tЭhista vУrgusДtted"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A vУi kУrgem (seerial)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Loo internetiЭhendus / Seadista kohtvУrk"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC seeria (seerial)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"KohtvУrk on juba seadistatud.\n"
+"Kas soovite:"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seerial)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Kuidas soovite luua internetiЭhendust?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seerial)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "VУrgu sДtted"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seerial)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"NЭЭd on internetiЭhendus seadistatud aga Teie arvutit\n"
+"saab panna ka seda jagama teistele arvutitele kohtvУrgus.\n"
+"MДrkus: kohtvУrgu jaoks on vajalik eraldi vУrgukaardi olemasolu\n"
+"\n"
+"Kas soovite internetiЭhendust jagada?\n"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seerial)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "vУrgukaarti ei leitud"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (seerial)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "VУrguseadistused"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seerial)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Palun sisestage oma masina nimi.\n"
+"Seda nУuavad ka mУned DHCP serverid.\n"
+"Masina nimi peab olema esitatud tДiskujul,\n"
+"nagu ``minumasin.minufirma.ee''."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech (seerial, vana C7 tЭЭpi)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Masinanimi"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seerial)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
+"Valige lihtsalt OK, et sДtteid mitte muuta."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Lihtsalt hiir (seerial)"
+#: ../../network.pm_.c:302
+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 ""
+"Palun andke IP parameetrid selle masina jaoks.\n"
+"KУik read tuleb sisestada IP-aadressi kujul\n"
+"(NДiteks 12.34.56.78)"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsofti Эhilduv (seerial)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Seadistame vУrgukaardi %s"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Lihtsalt 3-nupuline hiir (seerial)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automaatne IP"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seerial)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP-aadress"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Kas see on sobiv?"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "VУrgu mask"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Palun sisestage oma masina nimi.\n"
+"Masina nimi peab olema esitatud tДiskujul,\n"
+"nagu ``minumasin.minufirma.ee''.\n"
+"Kui Teil on vaikimisi lЭЭs, siis sisestage ka selle IP-aadress"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "Nimeserver"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "VaikelЭЭs"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "LЭЭsipoolne seade"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Vahendajate sДtted"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP vahendaja"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP vahendaja"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Vahendaja peab olema kujul http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Vahendaja peab olema kujul ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Sellel platformil ei saa laiendatud partitsiooni luua"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -3974,21 +5131,21 @@ msgstr ""
"Ainuke lahendus on nihutada primaarset partitsiooni, et auk satuks "
"laiendatud partitsioonide kУrvale"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Taastamine failist %s ebaУnnestus: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "KУlbmatu tagavarakoopia"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
@@ -4022,42 +5179,51 @@ msgstr "huvitav"
msgid "maybe"
msgstr "vУib olla"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (tДhtis)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (vДga kena)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (kena)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "NДita vДhem"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "NДita rohkem"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
msgstr "VУrguprinter"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "CUPS printserver"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "lpd printserver"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "VУrguprinter (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Printeri seadme URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Otsin printerit..."
@@ -4071,11 +5237,11 @@ msgstr "Proovin porte"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Leiti printer, nimega \"%s\" "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Otse Эhendatud printer"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4083,15 +5249,15 @@ msgstr ""
"Mis porti on Teie printer Эhendatud? \n"
"(paneme tДhele, et /dev/lp0 on sama mis LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Printeri seade"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "VУrguprinteri sДtted"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4101,19 +5267,19 @@ msgstr ""
"printserveri nime ja printimisjДrje nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "PrintimisjДrje nimi"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri sДtted"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4126,27 +5292,27 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasУna ja tЖЖgrupi"
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "TЖЖgrupp"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare printeri sДtted"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4157,133 +5323,157 @@ msgstr ""
"nime (NB! See vУib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"printimisjДrje nime serveril ning kasutajatunnuse ja salasУna"
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "PrintimisjДrje nimi:"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Pistikprinteri sДtted"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Sisestage palun printeri masinanimi ja vУimaluse\n"
+"korral pordi number"
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Printeri nimi"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "VУite anda ette ka URI, mille jДrgi CUPS printeri leiab."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Mis tЭЭpi printer see on?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Kas soovite seadistusi proovida?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "TrЭkitakse testlehekЭlg(i)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"TestlehekЭlg on saadetus trЭkideemonile.\n"
+"NЭЭd vУib minna natuke aega.\n"
+"Staatus:\n"
+"%s\n"
+"\n"
+"Kas tulemust on juba nДha?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"TestlehekЭlg on saadetud trЭkideemonile.\n"
+"NЭЭd vУib minna natuke aega.\n"
+"Staatus:\n"
+"%s\n"
+"\n"
+"Kas tulemust on juba nДha?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Jah, trЭki ASCII testlehekЭlg"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Jah, trЭki PostSript testlehekЭlg"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Jah, trЭki mУlemad testlehekЭljed"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Mis tЭЭpi printer see on?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Otse Эhendatud printeri sДtted"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Paberi suurus"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "TЖЖ lУpetamisel vДljasta kogu leht?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Kas optimiseerime kУvaketast?"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Mooduli parameetrid:"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "TrЭkkida tekst PostScriptina?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Viimane leht enne"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Paranda trepitud tekst?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "LehekЭlgi Эhel paberil"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Lehe laiuse mДrgid punktides (1/72 tollile)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Lehe kУrguse mДrgid punktides (1/72 tollile)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Lisa GhostScript parameetrid"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Lisa teksti parameetrid"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Kas soovite seadistusi proovida?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "TrЭkitakse testlehekЭlg(i)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"TestlehekЭlg on saadetus trЭkideemonile.\n"
-"NЭЭd vУib minna natuke aega.\n"
-"Staatus:\n"
-"%s\n"
-"\n"
-"Kas tulemust on juba nДha?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"TestlehekЭlg on saadetud trЭkideemonile.\n"
-"NЭЭd vУib minna natuke aega.\n"
-"Staatus:\n"
-"%s\n"
-"\n"
-"Kas tulemust on juba nДha?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4291,68 +5481,116 @@ msgstr ""
"Kirjeldatud on jДrgnevad printimisjДrjed.\n"
"Te vУite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS kДivitatakse"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Vali printeri Эhendusviis"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Kuidas on see printer Эhendatud?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Vali vУrguprinteri Эhendusviis"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Kui vУrgus on CUPS server, siis ei ole Teil vaja siin\n"
+"printereid seadistada, need leitakse automaatselt.\n"
+"Kui kahtlete, valige \"CUPS printserver\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Eemalda printimisjДrg"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Masinal vУib olla mitu printerit, millest igaЭks vajab nime\n"
+"(sageli lp) ja printkataloogi. Millist nime peaks kasutama\n"
+"kasutama selle printeri puhul ja kuidas see on Эhendatud?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Printeri nimi"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Kirjeldus"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Asukoht"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
"name and directory should be used for this queue and how is the printer "
"connected?"
msgstr ""
-"Masinal vУib olla mitu printerit, millest igaЭks vajab nime\n"
+"Masinal vУib olla mitu printimisjДrge, millest igaЭks vajab nime\n"
"(sageli lp) ja printkataloogi. Millist nime ja kataloogi peaks\n"
-"kasutama selle printeri puhul?"
+"kasutama selle printeri puhul ja kuidas see on Эhendatud?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Printkataloog"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Printeri Эhendusviis"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Juba vormindatud RAID-ile (md%d) ei saa partitsiooni lisada"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Ei saa kirjutada faili $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid ebaУnnestus"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ebaУnnestus (puudub 'raidtools'?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
-msgstr "Anacron kДivitab programme perioodiliselt."
+msgstr ""
+"Anacron kДivitab programme perioodiliselt analoogiliselt cron-ile.\n"
+"Kasutage seda juhul kui Teie arvuti ei tЖЖta 24h."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4360,7 +5598,7 @@ msgstr ""
"apmd on kasutusel pУhiliselt sЭlearvutites, akude tДituvuse jДlgimiseks.\n"
"Samuti suudab see aku tЭhjenemisel sЭsteemi viisakalt maha vУtta."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4368,7 +5606,7 @@ msgstr ""
"Laseb kДivitada Эhekordseid kДske etteantud ajal vУi ootab sЭsteemi\n"
"koormuse laskumist kДsu kДivitamiseks piisavale tasemele."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4377,9 +5615,9 @@ msgid ""
msgstr ""
"cron on UNIXi sЭsteemide standardvahend kasutaja programmide perioodiliseks\n"
"kДivitamiseks. Vixie cron sisaldab lisaks veel turvalisust ja kasutus-\n"
-"mugavust tУstvaid omadusi."
+"mugavust tУstvaid omadusi. Soovitav sЭsteemile mis tЖЖtab 24h"
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4389,13 +5627,15 @@ msgstr ""
"GPM annab vУimaluse kasutada hiirt ka tekstikonsoolil. Lisaks tavalisele\n"
"lУikamisele/kleepimisele saab kasutada ka menЭЭsЭsteeme."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
-msgstr "Apache on maailma juhtiv veebiserveri programm."
+msgstr ""
+"Apache on maailma juhtiv veebiserveri programm. TУenДoliselt\n"
+"ka vУimsaim."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4407,7 +5647,7 @@ msgstr ""
"Interneti \"superserver\", nimega inetd laseb kДivitada mitmeid vУrgu-\n"
"teenustel, nagu telnet, ftp, rsh, rlogin jne."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4416,13 +5656,13 @@ msgstr ""
"See programm laeb sЭsteemi kДivitumisel klaviatuuripaigutuse vastavalt\n"
"failis /etc/sysconfig/keyboard kirjeldatule."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr "lpd on trЭkideemon, ilma selleta ei ole vУimalik printida."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4430,7 +5670,7 @@ msgstr ""
"named (BIND) on kasutusel nimeserverites, mis teenindavad DNS\n"
"hierarhiat, tУlkimaks nimesid IP-aadressideks"
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4438,13 +5678,13 @@ msgstr ""
"эhendab ja lahutab kУiki vУrgufailisЭsteeme (nii NFS, SMB\n"
"kui ka NCP)"
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr "Aktiveerib sЭsteemi laadimisel Teile vajalikud vУrguliidesed."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4453,7 +5693,7 @@ msgstr ""
"NFS on UNIXi keskkonna standardne failijaotusprotokoll. See programm tДidab\n"
"NFS serveri funktsioone, ja konfigureeritakse failis /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4461,7 +5701,7 @@ msgstr ""
"NFS on UNIXi keskkonna standardne failijaotusprotokoll. See programm tДidab\n"
"NFS failide lukustamise funktsioone. Vajalik serveerimisel."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4471,7 +5711,7 @@ msgstr ""
"PCMCIA tugi on tavaliselt vajalik sЭlearvutitele vУrgu- ja modemiliideste\n"
"lisamiseks."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4481,7 +5721,7 @@ msgstr ""
"portmapper haldab RPC Эhendusi, mida kasutavad NFS ja NIS. Neil \n"
"serveritel on see hДdavajalik."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4489,7 +5729,7 @@ msgstr ""
"Postfix on meili transpordiagent, see tДhendab programm, mis\n"
"toimetab meili Эhest masinast teise."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4497,7 +5737,7 @@ msgstr ""
"Salvestab ja taastab juhuarvude genereerimiseks vajaliku sЭsteemse\n"
"entroopiasalve."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4506,7 +5746,7 @@ msgstr ""
"routed on RIP deemon, mis vahetab selle protokolli alusel marsruutimis-\n"
"infot. Kui Teil on RIP kasutusel, on vajalik ka routed."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4514,7 +5754,7 @@ msgstr ""
"rstat protokoll laseb Эle vУrgu saada informatsiooni sЭsteemi\n"
"tЖЖ kohta. Ettevaatust!"
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4522,7 +5762,7 @@ msgstr ""
"rusers protokoll laseb Эle vУrgu saada informatsiooni sЭsteemi\n"
"kasutajate kohta. Ettevaatust!"
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4530,63 +5770,226 @@ msgstr ""
"rwho protokoll laseb Эle vУrgu saada informatsiooni sЭsteemi\n"
"kasutajate kohta. Ettevaatust!"
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr "syslog-i kaudu toimub sЭsteemis toimiva logimine. Vajalik!"
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "See skript proovib seadistada USB hiirt"
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Stardib X fondiserveri, selleta X ei kДivitu."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Valige, millised teenused tuleks alglaadimisel kДivitada"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Tere tulemast! Laadimisel aitab Teid SILO!\n"
-"\n"
-"Valikud kuvab <Tab>.\n"
-"\n"
-"Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
-"vaikimisi oodake %d sekundit.\n"
+"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
+"Proovin loetamatud kirjed puhastada"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "LILO/GRUB seadistamine"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Loo alglaadimisflopi"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Vorminda flopi"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Valik"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO paigaldamine ebaУnnestus. Tekkis jДrgnev viga:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "InternetiЭhenduse jagamine tЖЖtab"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "InternetiЭhenduse jagamine on juba seadistatud.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Seadista X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "InternetiЭhendust ei jagata"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "InternetiЭhenduse jagamine on juba seadistatud.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "SДtete fail ei ole interpreteteeritav."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "InternetiЭhenduse jagamine"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"NЭЭd on internetiЭhendus seadistatud aga Teie arvutit\n"
+"saab panna ka seda jagama teistele arvutitele kohtvУrgus.\n"
+"MДrkus: kohtvУrgu jaoks on vajalik eraldi vУrgukaardi olemasolu\n"
+"\n"
+"Kas soovite internetiЭhendust jagada?\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Valimisviis"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Teie sЭsteemis ei ole vУrguliidest!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"эhtki vУrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
+"riistvara sДtteseadjat."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Teil on vaid Эks seadistatud vУrguliides:\n"
+"\n"
+"$interface\n"
+"\n"
+"Kas soovite siduda kohtvУrgu sДtted selle liidesega?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Palun valige millist vУrguliidest soovite kasutada kohtvУrgu\n"
+"jaoks."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Hoiatan, vУrguliides on juba seadistatud.\n"
+"Kas soovite anda uued sДtted?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "VУimalik kohtvУrgu aadressi konflikt $_ konfiguratsioonis!\n"
+
+#
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Leitud tulemЭЭri sДtted!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Hoiatus! Leiti olemasolevad tulemЭЭri sДtted. TУenДoliselt peaksite need "
+"hiljem Эle vaatame. Kas jДtkan?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "HДДlestan skriptid, paigaldan tarkvara, kДivitan serverid..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "IDE seadistamine"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Ei saa paigaldada 'ipchains' paketti urpmi abil."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Ei saa paigaldada DHCP paketti urpmi abil."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Ei saa paigaldada linuxconf-i urpmi abil."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Ei saa paigaldada 'bind' paketti urpmi abil."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Ei saa paigaldada nimeserveri vahendajat urpmi abil."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "уnnitleme!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4641,23 +6044,35 @@ msgstr "Turvataseme seadmine"
msgid "Choose the tool you want to use"
msgstr "Valige kasutatav vahend"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Milline on Teie klaviatuuriasetus"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Muuda kuvatihedust"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Mis tЭЭpi hiirt kasutate?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Vahetage CD!\n"
+"\n"
+"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
+"Kui teil sДherdust ei ole, vajutage <Katkesta>"
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "ei leitud: serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Millisesse seerialporti on Teie hiir Эhendatud?"
@@ -4871,6 +6286,942 @@ msgstr "Leian ЭlejДДgid"
msgid "Finding leaves takes some time"
msgstr "эlejДДkide leidmine vУtab veidi aega"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Interneti sДtted"
+
+#, fuzzy
+msgid "Internet"
+msgstr "huvitav"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "kena"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimeedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimeedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimeedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimeedia"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "ei soovi"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "Autentimisviis"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimeedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Valige paigalduse maht"
+
+#~ msgid "Total size: "
+#~ msgstr "Suurus kokku: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Seadista kohtvУrk uuesti"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Teie arvutit saab seadistada internetiЭhenduse jagajana.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "KУik sai seadistatud.\n"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Kasuta Interneti jaoks tavamodemit"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Kasuta Interneti jaoks ISDN modemit"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Kasuta Interneti jaoks DSL (vУi ADSL) modemit"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Kasuta Interneti jaoks DOC kaablimodemit"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "Mittekasutamise aeg, mille jooksul Эhendus\n"
+#~ "katkestatakse. (vaikimisi ei katkestata)"
+
+#~ msgid "Germany"
+#~ msgstr "Saksa"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Saksa (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "Mida Te soovite teha?"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Paigalda/Taasta"
+
+#~ msgid "Rescue"
+#~ msgstr "Taasta"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Mis tЭЭpi partitsiooni soovite?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Valige \"Paigaldamine\" kui varem sellele masinale GNU/Linuxit ei ole "
+#~ "pandud\n"
+#~ "vУi soovite kasutada mitut distributsiooni\n"
+#~ "\n"
+#~ "Valige \"Taastamine\" kui soovite taastada mУnd eelmist Mandrake Linuxit:\n"
+#~ "%s vУi %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Valige:\n"
+#~ "\n"
+#~ " - Soovitatav: Te pole kunagi varem GNU/Linuxit paigaldanud. \n"
+#~ "\n"
+#~ " - Isetehtud: Olete Linuxiga tuttav ja soovite sЭsteemi kohandada "
+#~ "vastavalt\n"
+#~ " Teie vajadustele. JДrgmisena saate teha valikud sУltuvalt Teie arvuti\n"
+#~ " edaspidisest kasutusalast.\n"
+#~ "\n"
+#~ " - Ekspert: Te tunnete end GNU/Linux keskkonnas vabalt ja soovite\n"
+#~ " sЭsteemi, mis sobiks nagu valatult Teie tДpsete ootustega.\n"
+#~ " Aga palun, palun: дRGE VALIGE SEDA, KUI TE TдPSELT EI TEA, MIDA TEETE!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "NЭЭd peaksite valima partitsioon(id) Linux-Mandrake paigaldamiseks\n"
+#~ "kui need on juba varem kettale defineeritud. Kui Te varem ei ole oma\n"
+#~ "kУvaketast Linuxi jaoks partitsioneerinud, saate seda jДrgmises etapis\n"
+#~ "teha. Partitsioneerimine tДhendab fЭЭsilise ketta jaotamist loogiliselt\n"
+#~ "eraldatud osadeks.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui ei tunne ennast sel alal kindlalt, valige \"Paiguta ise\", et\n"
+#~ "automaatselt luua Linuxile vajalikud partitsioonid.\n"
+#~ "Linuxi maailmas tДhendab \"hda\" esimest, \"hdb\" teist IDE kУvaketast,\n"
+#~ "\"sda\" esimest. \"sdb\" teist SCSI kУvaketast jne. Partitsioneerimiseks\n"
+#~ "valige kettaseade lihtsalt sellel klikkides.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kaks tavalist partitsiooni on juurpartitsioon (/), kus asub failisЭsteemi\n"
+#~ "hierarhia algus ja /boot, mis sisaldab arvuti alglaadimiseks vajalikke "
+#~ "faile, sealhulgas Linuxi kernelit.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kuna partitsioneerimine ei ole pЖЖratav protsess, vУib see tekitada\n"
+#~ "algajas kerget kУhedust. DiskDrake on selle teinud kЭll lihtsamaks,\n"
+#~ "aga kindlasti tuleks enne iga liigutust sЭgavalt jДrele mУtelda ja\n"
+#~ "soovitavalt ka dokumentatsiooniga tutvuda.\n"
+#~ "\n"
+#~ "KУiki tegevusi saate teha ka ainult klaviatuuri kasutades: liikuge\n"
+#~ "partitsioonidel <TAB> ja Эles-alla noolte abil. Partitsiooni valikul\n"
+#~ "\n"
+#~ "- Ctrl-C loob uue partitsiooni (valige selleks vaba kettaala)\n"
+#~ "- Ctrl-D kustutab partitsiooni\n"
+#~ "\n"
+#~ "- Ctrl-M seab Эhenduspunkti\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "KУik Teie poolt vДrskelt loodud partitsioonid tuleb kasutamiseks vormindada\n"
+#~ "(luua failisЭsteemid). Partitsiooni vormindamisel hДvitatakse kУik andmed,\n"
+#~ "mis seal iganes leiduvad. Pange tДhele, et varem vormindatud ja vajalikke\n"
+#~ "andmeid sisaldavaid partitsioone, tЭЭpiliselt /home ja /usr/local, ei ole\n"
+#~ "mУistlik Эle vormindada, vaid need vУib jДtta nii nagu on."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "NЭЭd hakkan Teie valitud pakette paigaldama. Selleks peaks kuluma\n"
+#~ "mУnikЭmmend minutit. SЭsteemi uuendamisel kulub aega kЭll veidi rohkem,\n"
+#~ "sest siis tuleb enne olemasolevaid pakette analЭЭsida."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Kui DrakX ei suutnud Teie hiirt tuvastada, vУi soovite vaadata, mida\n"
+#~ "leiti, kuvatakse Teile Эlalpool \"hiiretУugude\" nimekiri.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui olete valikuga nУus, minge lihtsalt vasakpoolses menЭЭs edasi.\n"
+#~ "Vastasel juhul valige hiire tЭЭp, mis Teie arvates kУige paremini Teie\n"
+#~ "hiirt iseloomustab\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui tegemist on seerialpordi hiirega, peate Эtlema ka, mis porti ta on\n"
+#~ "Эhendatud."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "See sektsioon on pЭhendatud kohtvУrgu (LAN) vУi sissehelistamisteenuse\n"
+#~ "(DialUp) sДtete paikapanemisele.\n"
+#~ "\n"
+#~ "Kui vastate \"LAN\", siis proovitakse Teie arvutist leida vУrgukaarti.\n"
+#~ "Kui Teie vУrgukaart tЖЖtab PCI siinil, peaks ta olema leitav ja kasutatav\n"
+#~ "automaatselt. ISA kaardi puhul, vУib automaatne otsing alt vedada ja Te\n"
+#~ "peate juhtprogrammi ise nimekirjast valima.\n"
+#~ "\n"
+#~ "\n"
+#~ "SCSI kaartide puhul peab juhtprogramm esmalt leidma SCSI liidese, vastasel\n"
+#~ "juhul peate pЖЖrduma kaardi mЭЭja poole.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui paigaldate Linux-Mandrake sЭsteemi masinale, mis on osake juba "
+#~ "tЖЖtavast\n"
+#~ "kohtvУrgust, annab vУrgu haldaja Teile kogu vajaliku informatsiooni (IP-\n"
+#~ "aadressi, alamvУrgu maski ja masina nime). Kui seate Эles oma privaatset\n"
+#~ "vУrku, peaksite ise valima aadressid \n"
+#~ "\n"
+#~ "Kui soovite Internetti kasutada modemi ja sissehelistamisteenuse kaudu,\n"
+#~ "valige \"DialUp\" ja DrakX proovib otsida Teie arvutist modemit. Kui\n"
+#~ "modemit ei leita, peate sisestama seerialpordi, kuhu kavatsete modemi\n"
+#~ "Эhendada."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linuxi all saate kasutada mitmesuguseid printereid. IgaЭks neist nУuab\n"
+#~ "erinevaid sДtteid tЖЖtamiseks. Siiski tasub tДhele panna, et sЭsteem\n"
+#~ "kasutab nime 'lp' vaikimisi printeri jaoks; seega peab Teil Эks \n"
+#~ "selliselt tДhistatud, kuigi printeri(te)le vУib panna '|' mДrgiga "
+#~ "eraldatult\n"
+#~ "mitu nime. Kui eelistate \"tДhendusega\" nimesid, pange nimeks\n"
+#~ "nДiteks \"Minu printer|lp\" ja see saab olema Teie vaikimisi printer.\n"
+#~ "\n"
+#~ "Kui Teie printer on otse arvuti kЭlge Эhendatud, valige \"Kohalik "
+#~ "printer\".\n"
+#~ "Siis saate valida pordi kuhu see on Эhendatud ja printerile vastava filtri.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui soovite kasutada printerit, mis on Эhendatud Un*x serveriga, peate\n"
+#~ "Valima \"lpd vУrguprinter\". Niisugusel juhul ei vaja Te kasutajatunnust\n"
+#~ "ega salasУna, vaid ainult serveri nime ja printimisjДrje nime serveril.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui soovite kasutada SMB printserverit (st. printerit, mida jagab vДlja\n"
+#~ "Windows 9x/NT, peate Дra nДitama serveri SMB nime (mis ei pea olema sama\n"
+#~ "TCP/IP nimega) ja kindluse mУttes ka IP-aadressi. Loomulikult on vaja teada\n"
+#~ "ka serveri poolt jagatava printeri nime ning kasutajatunnust, salasУna ja\n"
+#~ "tЖЖgrupi nime. Sama, vДlja arvatud tЖЖgrupp, on vaja teada ka NetWare\n"
+#~ "printserveri kasutamise korral."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "On ДДrmiselt soovitatav vastata siin \"Jah\"! NДiteks, kui paigaldate\n"
+#~ "samasse masinasse hiljem MS Windowsi, kirjutab see Эle bootsektori.\n"
+#~ "Ilma alglaadimisflopita ei ole Teil siis enam vУimalik GNU/Linuxit\n"
+#~ "laadida."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Liigutage ratast!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Muutusi ei teinudki?"
+
+#~ msgid "Cable connection"
+#~ msgstr "KaabliЭhendus"
+
+#~ msgid "Host name:"
+#~ msgstr "Masinanimi:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Mis tЭЭpi hiirt kasutate?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "VДljapakutavad kuvatihedused"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Et leida vУimalikke kuvatihedusi, testin erinevaid variante.\n"
+#~ "Ekraan Teie ees hakkab vilkuma...\n"
+#~ "Kui soovite, lЭlitage monitor vДlja. Kui valmis saan, kostab piiks"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Me vУime proovida leida kuvatihedust, nДiteks 800x600.\n"
+#~ "Siiski, vahel ajab see arvuti segadusse.\n"
+#~ "Soovite proovida?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Sobivat olekut ei leitud\n"
+#~ "Proovige palun muud graafikakaarti vУi monitori"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Automaatne kuvatiheduste otsing"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB hiir"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB hiir (2 nuppu)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB hiir (3+ nuppu)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB hiir"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB hiir (2 nuppu)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB hiir (3+ nuppu)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Lihtsalt hiir"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus hiir"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus hiir"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus hiir"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB hiir"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB hiir (3 vУi enam nuppu)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A vУi kУrgem (seerial)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (seerial)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (seerial)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (seerial)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Lihtsalt hiir (seerial)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsofti Эhilduv (seerial)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Lihtsalt 3-nupuline hiir (seerial)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (seerial)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr "InternetiЭhenduse jaoks on vaja seadistada vУrguliides."
+
+#~ msgid ""
+#~ "Please choose which network adapter do you want to use to connect to "
+#~ "internet.\n"
+#~ "If you don't know, choose eth0.\n"
+#~ msgstr ""
+#~ "Palun valige millist vУrguliidest soovite kasutada kohtvУrgu\n"
+#~ "jaoks.\n"
+#~ "Kui Te ei tea, valige eth0.\n"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "NFS Эhendamine ebaУnnestus"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Socket"
+#~ msgstr "Pistik"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX saab luua sДttefailid nii XFree 3.3 kui ka XFree 4.0. \n"
+#~ "Vaikimisi kasutatakse 4.0, kui see toetab Teie riistvara\n"
+#~ "\n"
+#~ "Kas soovite jДДda XFree versiooni 3.3 juurde?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "KrЭpto"
+
+#~ msgid "Configure LAN"
+#~ msgstr "Seadista X"
+
+#~ msgid "End configuration"
+#~ msgstr "ISDN sДtted"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "Ei seadista vУrku"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Kas soovite kasutada kohtvУrku?"
+
+#~ msgid "Show less"
+#~ msgstr "NДita vДhem"
+
+#~ msgid "Show more"
+#~ msgstr "NДita rohkem"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "Kasuta kogu ketast"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "Kohalik printer"
+
+#~ msgid "URI for Network printer"
+#~ msgstr "VУrguliides"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Otse Эhendatud printer"
+
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "Mis porti on Teie printer Эhendatud? \n"
+#~ "(paneme tДhele, et /dev/lp0 on sama mis LPT1:)?\n"
+
+#~ msgid "curly"
+#~ msgstr "lokiline"
+
+#~ msgid "default"
+#~ msgstr "tavaline"
+
+#~ msgid "tie"
+#~ msgstr "pintsaklips"
+
+#~ msgid "brunette"
+#~ msgstr "brЭnett"
+
+#~ msgid "girl"
+#~ msgstr "neiu"
+
+#~ msgid "woman-blond"
+#~ msgstr "blondiin"
+
+#~ msgid "automagic"
+#~ msgstr "automaagiline"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "Anti Teile masinanimi"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "KohtvУrgu seaded"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "Millist C-klassi vУrku soovite kasutada.\n"
+
+#~ msgid "Network:"
+#~ msgstr "VУrgu mask:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "InternetiЭhenduse jagamine - liides $device"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Seatakse sДtted jДrgmisele vУrguliidesele:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#
+#~ msgid "Everything configured!"
+#~ msgstr "KУik seadistatud!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Milline on Teie klaviatuuriasetus"
+
+#~ msgid "Normal"
+#~ msgstr "Tavakasutus"
+
+#~ msgid "Configure my card"
+#~ msgstr "Seadista minu kaart"
+
+#~ msgid ""
+#~ "\n"
+#~ "I recommend that you abort, and then launch this internet wizard after "
+#~ "installation.It will then be able to setup ISA or PCMCIA cards easier.\n"
+#~ "\n"
+#~ "But, if you know the irq, dma, io of your card, you can still configure your "
+#~ "card."
+#~ msgstr ""
+#~ "\n"
+#~ "Soovitan teil praegu katkestada ja kДivitada vУrguЭhenduse abimees pДrast "
+#~ "paigaldamist uuesti. Siis on vУimalik Teie ISA vУi PCMCIA kaarte lihtsam\n"
+#~ "seadistada\n"
+#~ "Muidugi, kui teil on teada oma kaardi IRQ, DMA ja IO, ei ole probleemi."
+
+#~ msgid "pptp alcatel"
+#~ msgstr "Paiguta ise"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Kas otsida PCMCIA kaarte?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Kas otsida %s seadmeid?"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "VДike (%d MB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Modemi sДtted"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Kas soovite kasutada DialUp Эhendust modemi kaudu?"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Kas soovite kasutada ISDN Эhendust?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Kas otsida PCI seadmeid?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Otsin juurpartitsiooni.."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: See ei ole juurpartitsioon, palun valige mУni muu."
+
+#~ msgid "No root partition found"
+#~ msgstr "Juurpartitsiooni ei leitud"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "эldlevi kasutamine on ilma NIS domeenita vУimatu"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Millist partitsiooni soovite kasutada juurkataloogi jaoks?"
+
+#~ msgid "Autologin at startup"
+#~ msgstr "X stardib nЭЭd"
+
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Valige uus suurus"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "Teil ei ole Эhtki Windowsi partitsiooni!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Teil ei ole piisavalt ruumi Lnx4win jaoks"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automaatne"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Tere tulemast! Laadimisel aitab Teid LILO!\n"
+#~ "\n"
+#~ "Valikud kuvab <Tab>.\n"
+#~ "\n"
+#~ "Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
+#~ "vaikimisi oodake %d sekundit.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Tere tulemast! Laadimisel aitab Teid SILO!\n"
+#~ "\n"
+#~ "Valikud kuvab <Tab>.\n"
+#~ "\n"
+#~ "Valimiseks sisestage eelistatava nimi ja vajutage <Enter>\n"
+#~ "vaikimisi oodake %d sekundit.\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILO peasДtted"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Praegu on SILO jaoks kirjeldatud alltoodud kirjed.\n"
+#~ "Te vУite neid lisada ning olemasolevaid muuta."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Selline tДhis on juba kasutusel"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO paigaldamine ebaУnnestus. Tekkis jДrgnev viga:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX proovib esmalt leida Teie sЭsteemist SCSI liideseid PCI siinil.\n"
+#~ "Kui neid leitakse, ja vastav juhtprogramm on teada, siis laetakse\n"
+#~ "see mДllu automaatselt.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui Teie SCSI liides kasutab ISA siini vУi kui DrakX ei tea,\n"
+#~ "millist juhtprogrammi kasutada vУi Teil ei ole Эldse SCSI liidest,\n"
+#~ "siis kЭsitakse Teilt selle kohta.\n"
+#~ "Kui Teil SCSI liidest tУesti ei ole, vastake \"Ei\". Kui Teil aga siiski\n"
+#~ "on, siis vastake \"Jah\". SeejДrel lastakse Teil nimekirjast sobiv\n"
+#~ "juhtprogramm valida.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui olete juhtprogrammi vДlja valinud, on Teil vУimalus anda sellele\n"
+#~ "ka parameetreid. Siiski, enamasti lДheb kУik kenasti ka ilma neid\n"
+#~ "sisestamata: vastavad andmed leiab juhtprogramm ise.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kui automaatne parameetrite otsimine ei tЖЖta, pЖЖrduge palun\n"
+#~ "oma SCSI liidese dokumentatsiooni poole. Ka samas masinas olev Windows\n"
+#~ "oskab vahel SCSI kohta vajalikku informatsiooni anda."
+
+#~ msgid "Shutting down"
+#~ msgstr "Sulgemine"
+
#~ msgid "useless"
#~ msgstr "kasutu"
@@ -4884,9 +7235,6 @@ msgstr "эlejДДkide leidmine vУtab veidi aega"
#~ "Teie arvutist mУned hulk Windowsi TrueType fondid.\n"
#~ "Soovite Te neid ka Linuxis kasutada (eeldusel, et Teil on need legaalsed)?"
-#~ msgid "Recommended"
-#~ msgstr "Soovituslik"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -4999,21 +7347,12 @@ msgstr "эlejДДkide leidmine vУtab veidi aega"
#~ msgid "Setup SCSI"
#~ msgstr "SCSI seadistamine"
-#~ msgid "Which language do you want?"
-#~ msgstr "Mis keelt soovite kasutada?"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "Valige paketid mida soovite paigaldada"
#~ msgid "Local LAN"
#~ msgstr "LAN"
-#~ msgid "Dialup with modem"
-#~ msgstr "DialUp"
-
-#~ msgid "Local Printer Options"
-#~ msgstr "Otse Эhendatud printeri sДtted"
-
#~ msgid "server"
#~ msgstr "server"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index b8dd733a8..c82ace77a 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -1,56 +1,112 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (c) 1999 MandrakeSoft
-# Joseba Bidaurrazaga van Dierdonck <2258-2@ej-gv.es>, 1999-2000.
+# Joseba Bidaurrazaga van Dierdonck <jepibi-san@ej-gv.es>, 1999-2000.
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-12-20 11:28+0100\n"
-"Last-Translator: Joseba Bidaurrazaga van Dierdonck <gcpbivaj@lg.ehu.es>\n"
+"Last-Translator: Joseba Bidaurrazaga van Dierdonck <jepibi-san@ej-gv.es>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Generikoa"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Grafikoen txartela"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Hautatu grafikoen txartela"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Hautatu X zerbitzaria"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X zerbitzaria"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Zure txartelak 3D azelerazioa izan lezake, baina soilik XFree %s-z.\n"
+"XFree %s-ek zure txartela onar lezake, honek dena den, 2D-tan hobeto lan "
+"egin lezake."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Zure txartelak harware bidezko 3D azelerazioa onar lezake XFree %s-z"
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s hardwarearen 3D azelerazioaz"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Zure txartelak harware bidezko 3D azelerazioa onar lezake baina soilik XFree "
+"%s-z.KASU: EXPERIMENTAZIOAN DAGOEN ONARPENA DA ETA KONPUTAGAILUA IZOZTU "
+"LEZAKE.\n"
+"XFree %s-ek zure txartela onar lezake, honek dena den, 2D-tan hobeto lan "
+"egin lezake."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Zure txartelak 3D azelerazioa izan lezake XFree %s-z.\n"
+"KASU: EXPERIMENTAZIOAN DAGOEN ONARPENA DA ETA KONPUTAGAILUA IZOZTU LEZAKE."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s harware bidezko 3D azelerazioaz; EXPERIMENTALA"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree-ren konfigurazioa"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Hatatu zure grafikoen txartelerako memoriaren tamaina"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Hautatu zerbitzariarentzako aukerak"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Hautatu monitorea"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitorea"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -73,39 +129,39 @@ msgstr ""
"OSO GARRANTZITSUA da: monitorea kaltetudezakezu.\n"
" Dudatan bazaude izan kontserbakorra."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Freskatze horizontalaren maiztasuna"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Freskatze bertikalaren maiztasuna"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitorea konfiguratu gabe"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Grafikoen txartela konfiguratu gabe oraindik"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Oraindik erresoluzioak hautatu gabe"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Konfigurazioa frogatu nahi duzu?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr ""
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Kasu: txartel grafiko honen saiakerak konputagailua izoztu lezake"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Frogatu konfigurazioa"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -113,185 +169,172 @@ msgstr ""
"\n"
"saia zaitez beste parametruez"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Errorea gertatu da:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "%d segundu barru irtengo naiz"
-#: ../../Xconfigurator.pm_.c:378
-#, fuzzy
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr "Zuzena da?"
+msgstr "Zuzenak dira hautuak?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Errorea gertatu da, saia zaitez zenbait parametro aldatuz"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Erresoluzio automatikoak"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Eskuragarri dauden erresoluzioak bilatzearren, zenbaitzuk frogatuko ditut.\n"
-"Pantailak kliskatuko du...\n"
-"Irten zaitezke nahi baduzu, bukatzerakoan beep-a entzengo duzu"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Erresoluzioa"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Hautatu erresoluzioa eta kolore sakontasuna"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Grafikoen txartela: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 zerbitzaria: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Erakutsi dena"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Erresoluzioak"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Eskuragarri dauden erresoluzioak aurkitzen saia naiteke (eg: 800x600).\n"
-"Batzutan honen ondorioz makina eskegi daiteke.\n"
-"Saiatuko naiz??"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Modu egokirik ezin aurkitu\n"
-"Bestelako txartel edo monitoreaz saia zaitez"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Teklatuaren itxura: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Sagu mota: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Saguaren tresna (device): %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorea: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorearen HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorearen VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafikoen txartela: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memoria grafikoa: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Kolore sakontasuna: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Erresoluzioa: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 zerbitzaria: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 gidaria: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "X-Windows-en konfigurazioa prestatzen"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Aldatu monitorea"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Aldatu grafikoen txartela"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Aldatu zerbitzariaren aukerak"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Aldatu erresoluzioa"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Bilatu erresoluzio automatikoak"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Erakutsi informazioa"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Saia zaitez berriro"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Irten"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Zer egin nahi duzu?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Aldaketak ahaztu?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Aldaketak mantendu?\n"
+"Oraingo konfigurazioa:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Mesedez, log egin berriro %s-n aldaketak indarrean sartzeko"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Mesedez log out egin eta gero Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X abiatzerakoan"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -299,403 +342,579 @@ msgstr ""
"Zure konputagailua abiatzerakoan X-en sartzeko egokitu dezaket.\n"
"X-en sartu nahi al duzu abiatzerakoan?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Zure konputagailua abiatzerakoan erabiltzailea log on egiteko egokitu "
+"dezaket.\n"
+"Ez baduzu aukera hau erabili, etsi botoia klikatu"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Hautatu jatorrizko erabiltzailea:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Hauta abiarazterakoan nahi duzun lehio kudeatzailea:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 kolore (8 bit)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 milaka kolore (15 bit)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 milaka kolore (16 bit)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miloi kolore (24 bit)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 biloi kolore (32 bit)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 Mb"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 Mb"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 Mb"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB edo gehiago"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA standarra, 640x480 60 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 56 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr ""
"8514arekin bat datorrena, 1024x768 87 Hz-tan txirikordatuak (ez 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 87 Hz-tan txirikordatua, 800x600 56 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 60 Hz-tan, 640x480 72 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 60 Hz-tan, 800x600 72 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Frekuentzia handiko SVGA, 1024x768 70 Hz-tan"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "1280x1024 60 Hz-tan egin lezakeen frekuentzia anitzekoa"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "1280x1024 74 Hz-tan egin lezakeen frekuentzia anitzekoa"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "1280x1024 76 Hz-tan egin lezakeen frekuentzia anitzekoa"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "1600x1200 70 Hz-tan egin lezakeen pantaila"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "1600x1200 76 Hz-tan egin lezakeen pantaila"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "kizkurra"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "Jatorrizkoa"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "gorbata"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunette"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "neska"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "ile-horia"
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "IP automatikoa"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Boot partizioaren lehenengo sektorea"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Diskoaren lehenengo sektorea (MBR)"
-#: ../../any.pm_.c:65
-#, fuzzy
-msgid "LILO/grub Installation"
-msgstr "LILOren instalazioa"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILOren instalazioa"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abiarazlea?"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub Instalazioa"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
-msgstr "Eginda"
+msgstr "Batez"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
-msgstr "Zelako sarrera mota gehitu nahi duzu"
+msgstr "Zein abiarazle erabili nahi duzu?"
+
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Abiarazlearen instalazioa"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Abiarzsteko unitatea"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
+msgstr "LBA (ez dabil BIOS zaharretan"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Trinkoa"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "trinkoa"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Imagina arrunta abiarazteko itxaron denbora"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Bideo modua"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Imagina arrunta abiarazteko itxaron denbora"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Pasahitza"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Pasahitza (berriz)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Komando lerroaren aukerak murriztu"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "murriztu"
-#: ../../any.pm_.c:98
-#, fuzzy
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
-msgstr "LILOren aukera nagusiak"
+msgstr "Abiarazlearen aukera nagusiak"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Aukera ``Komando lerroaren aukerak murriztu'' ezin erabili pasahitz gabe"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Mesedez saia zaitez berriro"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Pasahitza ez dator bat"
-#: ../../any.pm_.c:112
-#, fuzzy
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Hemen daude LILOko hurrengo sarrerak.\n"
-"Zenbait gehitu edo daudenak aldatu dezakezu."
+"Hemen daude sarrera desberdinak.\n"
+"Zenbait gehitu edo daudenak aldatu ditzakezu."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Gehitu"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Eginda"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Zelako sarrera mota gehitu nahi duzu"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Beste OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Beste OS (windows..."
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Zelako sarrera mota gehitu nahi duzu"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Imagina"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Jarraitu (Append)"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Irakur-idatz"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Unsafe"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etiketa"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Jatorrizkoa"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ados"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Ezabatu sarrera"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Etiketa kentzea ez dau onartzen"
-#: ../../any.pm_.c:167
-#, fuzzy
+#: ../../any.pm_.c:224
msgid "This label is already used"
-msgstr "Etiketa hau dagoeneko erabiltzen da"
+msgstr "Etiketa hau dagoeneko erabilia"
+
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s %s inteface-ak aurkituta"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Besterik daukazu?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "%s interface-rik duzu?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ez"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Bai"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Ikus harwarearen informazioa"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "%s-ko %s txartelen driver-ak instalatzen"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(%s modulua)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Zein %s driver-an saia naiteke?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Zenbaitetan, %s driver-ak egokiro lan egiteko informazio gehigarria behar "
+"du\n"
+",naiz eta gehienetan ondo ibili hau gabe. Aukera extra hauek espezifikatuko "
+"zenuke\n"
+"edo utziko zenuke driver-ari lortzen saiatzen? Batzutan saiaketak "
+"konputagailua\n"
+"eskegi lezake, honek ez du kalterik eragin beharrik."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Autofroga"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Aukerak espezifikatu"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Orain %s moduluari bere aukerak ezarri diezaiokezu."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"%s moduluari bere aukerak ezardiezaiokezu.\n"
+"Aukeren formatua: ``izena=balioa izena2=balioa2 ...''.\n"
+"Adibidez, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Muduluaren aukerak:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"%s moduluare kargak porrot egin du.\n"
+"Beste parametro batuzuez saiatu nahi al duzu?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Ongi etorria %sra, sistema eragilearen hautatzailera!\n"
+"\n"
+"Aukeren zerrenda ikusteko <TAB> sakatu.\n"
+"\n"
+"Kargatzeko, izena idatzi eta <ENTER> sakatu <ENTER> edo itxaron %d segundu "
+"jatorriz hautatutakoa abiatzeko.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Ongi etorri GRUBera, sistema eragilearen hautatzailea!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "%c eta %c tekla erabili hautatutakoa aukeratzeko"
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Hautatutako OSa abiarazteko enter sakatu, 'e' editatzeko"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "abiatze aurretiko komandoak, edo 'c' komando-lerroa izateko"
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Hautatutakoa abiaraziko da %d segundu barru."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "ez dago leku nahikorik /boot-en"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Idazmahaia"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Abiatze Menua"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d segundu"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Eratu"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Desmuntatu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Ezabatu"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatua"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Berregokitu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Mota"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Muntatze puntua"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Idatzi /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Zoaz aditu modura"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Zoaz ohiko modura"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Fitxategitik berreskuratu"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Fitxategian gorde"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Floppy-tik berreskuratu"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Floppy-an gorde"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Garbitu dena"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Dena formateatu"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Berez egokitu"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Partizio primario guztiak erabiltzen"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Ezin dut partizio gehiagorik gehitu"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -703,59 +922,63 @@ msgstr ""
"Partizio gehiago edukitzeko, mesedez ezabatu bat hedatutako partizioa eratu "
"ahalizateko"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Partizio taula berreskuratu"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Ez egin"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Partizio taula idatzi"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Berkargatu"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Hutsik"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Bestelakoa"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Hutsik"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Bestelakoa"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Fitxategi-sistemen motak:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Ezaugarriak"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -767,17 +990,17 @@ msgstr ""
"Beharrezko zenuke partizio hau egokitzea\n"
"(gainean klikatu, eta gero \"Egokitu\"-n)"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Mesedez, aurretik datuen backup-a egin"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Arretaz irakur"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -786,77 +1009,77 @@ msgstr ""
"aboot erabiliko baduza, tokia utzi (diskoaren hasierako 2048 sektore\n"
"nahikoak dira)"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Kontuz: arrizkutsua izan daiteke."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Errorea"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Muntatze puntua: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Device-a: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS unitatearen hizkia: %s (iragarpena basterik)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Mota: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Hasi: %s sektorea\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Tamaina: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "%d zilindrotik %d zilindrora arte\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formateatuta\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Formateatu gabe\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Muntatua\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback fitxategia(k): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -864,79 +1087,79 @@ msgstr ""
"Jatorrizko partizioa abiaraztua\n"
" (MS-DOS abiarazteko, ez lilo-rako)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Maila %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Xerraren tamaina %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diska %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback fitxategiaren izena: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Partizio baten gainean klikatu"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Tamaina: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partizio taularen mota: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "on bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Muntatu"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktibatu"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Gehitu RAIDi"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "RAIDtik ken"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Aldatu RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Loopback erabili"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Hautatu akzioa"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -948,7 +1171,7 @@ msgstr ""
"LILO erabiliz gero ez du funtzionatuko, edo LILO erabili ezean ez duzu "
"/boot-en beharrik"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -960,64 +1183,68 @@ msgstr ""
"eta ez duzu /boot partiziorik.\n"
"LILO abiarazle modura erabiliko baduzu, /boot partizioa gehitu"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
+"RAID partizioa zuztar(root) bezala hautatu duzu (/).\n"
+"Abiarazleak ezin du hau kudeatu /boot partiziorik gabe.\n"
+"Beraz habil kontuz eta gehitu /boot partizioa"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Bestela ``%s'' erabili"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Lehenengo ``Unmount'' erabili"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"%s partizio mota aldatzerakoan, partizio honetako datu guztiak galduko dira"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Jarraitu dena den?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Irten gorde gabe"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Irten partizio taula idatzi gabe?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Aldatu partizio mota"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Zein partizio mota nahi duzu?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Zein erabilera nahi duzu?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
+msgstr "Ez erabili ReiserFS 32MB baino gutxiagoko partizioak eratzeko"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback fitxategia non eraiki nahi duzu?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s tresna non instalatu nahi duzu?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1025,140 +1252,145 @@ msgstr ""
"Ezin kendu muntai puntua hemendik, loop back-ek erabiltzen du.\n"
"Aurretik loopback kendu"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa formateatuz gero, partizio honetako datu guztiak galduko dira"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formateatzen"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "%s loopback fitxategia formateatzen"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "%s partizioa formateatzen"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Partizio guztiak formateatu ondoren,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "partizio hoietako datu guztiak galduko dira"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Mugitu"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Zein diskotara mugitu nahi duzu?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektore"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Zein sektore mugitu nahi duzu?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Mugituz"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Partizioa mugitzen..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s unitatearen partizio taula diskoan idatziko da!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Aldaketak indarrean jar daitezen breabiatu behar duzu ordenadorea"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "fat-aren fitxategi-sistemen loturak zenbatzen"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Egokitzen"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Zein partizio berregokitu nahi duzu?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Partizio honetako datu guztien backup-a beharrezkoa litzateke"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa egokitzerakoan, partizio honetako datu guztiak galduko dira"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Hautatu tamaina berria"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Eratu partizio berriak"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Haste sektorea: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Tamaina MBetan: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Fitxategi-sistema mota: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Hobespena: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Partizio hau ezin du loopback-ek erabili"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback-en fitxategi izena: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
-msgstr ""
+msgstr "Beste loopback batek erabilitako fitxategia, hauta besteren bat"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "%s fitxategia esistitzen da. Erabili?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Hautatu fitxategia"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1166,11 +1398,11 @@ msgstr ""
"Backup-aren partizio taulak ez du neurri berdina\n"
"Jarraituko dut?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Kontuz"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1178,77 +1410,79 @@ msgstr ""
"Disketea sartu unitatean\n"
"Disketeko datu guztiak galduko dira"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Partizio taula berreskuratzeko saioan"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "tresna (device)"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "maila"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "xerraren tamaina"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Hautatu esistitzen den RAIDa hona gehitzeko"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "berria"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s-ren %s formateatzeak porrot egin du"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ez dakit nola formateatu %s %s motan"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs-aren muntaiak porrot egin du"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "muntaketak porrot egin du: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s desmuntatzen errorea: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Muntaia puntuak /-z hasi behar dira"
-#: ../../fsedit.pm_.c:253
-#, fuzzy, c-format
+#: ../../fsedit.pm_.c:238
+#, c-format
msgid "There is already a partition with mount point %s\n"
-msgstr "%s muntaketa puntua duen partizioa jadanik esistitzen da %s\n"
+msgstr "Jadanik esistitzen da %s muntaketa puntua duen partizioa\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Muntai zirkularrak %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
+"Benetako fitxategi sistema behar duzu (ext2, reiserfs) muntai puntu "
+"honetarako\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%s irekitzerakoan errorea: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1256,76 +1490,83 @@ msgstr ""
"Errorea gertatu da - sistemaren fitxategiak eraikitzeko unitate "
"baliogarririkez da aurkitu. Hardwarea aztertu mesedez."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Partiziorik ez duzu!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr ""
"Hautatu hobestutako hizkuntza instalaziorako eta sistemaren erabilerako"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Hautatu zureari dagokion teklatuaren itxura goiko listan"
-
-#: ../../help.pm_.c:13
-#, fuzzy
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Hautatu zureari dagokion teklatuaren itxura goiko listan"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
+"\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Hautatu \"Instalatu\" Linux-en aurretiko bertsiorik ez badago instalatuta,\n"
-"edo distribuzio edo bertsio bat baino gehiago erabili nahi baduzu.\n"
"\n"
-"Hautatu \"Eguneratu\" Mandrake-ren aurretiko bertsioren bat eguneratu nahi "
-"izanez gero.\n"
-"Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 edo 7.0 (Air).\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-"Select:\n"
"\n"
-" - Gomendatua: inoiz ez baduzu Linux-ik instalatu.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Norberarena: Linux ezagutzen baduzu, normal, garatzaile edo aditu\n"
-"moduko instalazioak hauta dezakezu. Hautatu \"Arrunta\" ohiko instalazioa\n"
-"egitekotan. Hauta dezakezu \"Garatzailearena\" modua konputagailua "
-"softwarea\n"
-"garatzeko erabiliko baduzu batez ere, edo hautatu \"Zerbitzariarena\" ohiko\n"
-"zerbitzari (posta, inprimaketa,...) instalazioa egin nahi baduzu.\n"
"\n"
-" - Aditua: GNU/Linux sakonki ezagutuz gero eta oso instalazio berezia\n"
-"egin nahi baduzu,instalazio modu hau zuretzako da. Zure sistemaren\n"
-"erabilera honela egin beharko duzu \"Norberarena\".\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
+#, fuzzy
msgid ""
"Select:\n"
"\n"
@@ -1333,12 +1574,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Select:\n"
"\n"
@@ -1354,341 +1596,604 @@ msgstr ""
"egin nahi baduzu,instalazio modu hau zuretzako da. Zure sistemaren\n"
"erabilera honela egin beharko duzu \"Norberarena\".\n"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
+"Makinaren erabilera desberdinak (zerorrek hautatutakoak, hau da\n"
+"\"Norberarena\" edo \"Aditua\" instalazio motetan) hurrengoak \n"
+"dira:\n"
+"\n"
+" - Arrunta: egunerako erabilerarako\n"
+" (ofizina lana, irudiketa, eta abar). Ez\n"
+" duzu konpilaziorik edo garatzale lanerako tresnarik edukiko.\n"
+"\n"
+" - Garatzaile: izenak diona. sofwarearen garapenerako\n"
+" erabiliko baduzu makina. Orduan software\n"
+" bilduma osoa izango duzu konpilatu, debug eta jatorrizko\n"
+" kodearen formateaoa, edo software paketeak eratzeko.\n"
+"\n"
+" - Zerbitzari: hauta hau zure Linux-Mandrake\n"
+" instalazioa zerbitzari modura erabiltzeko. Hau da fitxategi zerbitzari "
+"(NFS edo SMB),\n"
+" irarkola zerbitzari (Unix' lp (Line Printer) protokoloa edo Windows "
+"motako SMB\n"
+" ipresioa), egiaztatze zerbitzari (NIS), datubase zerbitzari eta abar. "
+"Hemen\n"
+" , ez duzu gimmicks-k izango (KDE, GNOME...).\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX-ek PCI edo SCSI egokitzaileak bilatzen saiatuko da aldez aurretik.\n"
-"Aurkitzekotan eta drivera(k) ezagutz geronautomatikoki ezarriko ditu.\n"
+"DrakX-ek PCI SCSI egokitzaileak bilatuko ditu. \n"
+"DrakX-ek SCSI egokitzailerik aurkitzekoatan, driver-a ezagutuz gero\n"
+"automatikoki instalatuko d(it)u.\n"
+"\n"
+"Ez baduzu DrakX-ek ezagutzen duen SCSI egokitzaile, ISA SCSI egokitzaile, "
+"edo \n"
+"PCI SCSI egokitzailerik galdetuko zaizu ia\n"
+"SCSI egokitzailerik baduzu zure sisteman. Ez baduzu\n"
+"'Ez' klikatu. 'Bai' klikatuz gero, driver zerrenda\n"
+"erakutziko zaizi, eta bertatik hautatu beharko duzu zure egokitzailea.\n"
+"\n"
+"\n"
+"Eskuz egokitu behar baduzu zure egokitzailea, DrakX-ek\n"
+"harren aukerak galdetuko dizu. DrakX-i frogatzeko aukera\n"
+"eman beharko diozu. Gehienetan ongi doa.\n"
+"\n"
+"Horrela ez bada, driver-aren aukerak eman beharko duzu.\n"
+"Berrikuzi Instalazio Gida, eta Windows-en arakatu informazioa\n"
+"(windows baduzu noski),\n"
+"hardwarearen dokumentaziorako, edo fabrikatzailearen webgunera\n"
+"jo (Internet baduzu)."
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"Zure SCSI egokitzailea ISA bada, edo DrakX-ek ezagutzen ez duen\n"
-"PCIa bada, edo SCSI egokitzailerik ez baduzu, orduan zera galdetuko zaizu;\n"
-"ia SCSI egokitzailerik duzun ala ez.\n"
-"Ez badaukazu \"Ez\" erantzun. Bat edo gehiago baduzu,\n"
-"erantzun \"Bai\". driver zerrenda agertuko zaizu, eta bertatik bat hautatu\n"
-"beharko duzu.\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"Driver-a hautatu ondoren, DrakX-ek aukerak eman nahi badiozu\n"
-"galdetuko dizu. Lehenengo, utzi driver-ari harwarea frogatzen:\n"
-"gehienetan ongi dabil.\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Ez badabil, zure Windows-aren (hau bada zure sistema) harwarearen "
-"informazioa\n"
-"dokumentaziotik lor dezakezu, instalazio gidan iradokitzen denez.\n"
-"Hor izango dira driver-ari eman beharreko\n"
-"aukerak."
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Orain, Linux-Mandrake sistema zein partiziotan instalatu nahi duzun\n"
-"hauta dezakezu, aldez aurretik partizioak eginak badituzu (aurretikfrom a\n"
-"instalatutako Linux-an edo bestelako partizio tresna batek egindakoak).\n"
-"Bestera, disko zurrunaren partizioak definitu behar dira. Hau egoterakoan\n"
-"konputagailuaren disko zurruna erabilera desberdinetarako area "
-"desberdinetan\n"
-"zatitzen da.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Partizio berriak egin nahi izanez gero, erabili \"Auto allocate\" "
-"etahorrela\n"
-"Linux-ek partizio berriak egingo ditu automatikoki. Zatitu beharreko diskoa\n"
-"hautatzuko \"hda\" kliklatu lehenengo IDE diskorako,\n"
-"\"hdb\" bigarrenerako edo \"sda\" lehenengo SCSI diskorako eta horrela ere "
-"urrengokoak.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Ohiko partizioak dira: root (/), direktorioen ierarkian sistemaren "
-"fitxategien hasiera\n"
-"puntua dena, eta /boot,konputagailua pizterakoan\n"
-"sistema eragilea abiarazteko beharrezko diren\n"
-"fitxategiak duena.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"Partizio prozeduraren ekintzak atzerako biderik izan ohi ez dutenez,\n"
-"esperientziarik ez duenarengan beldurra eta larritasuna eragin diezaioke. "
-"DiskDrake-k\n"
-"prozedura errazten du izua uxatzeko. Dokumentazioa kontsultatu eta\n"
-"har ezazu behar duzun denbora hasi aurretik.\n"
-"Teklatua erabiliz edozien aukeraz baliatu zaitezke: partizioetatiknabigatu\n"
-"Tab eta Gora/Bera geziez. Behin partizioa hautatua, zera erabil zenezake:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
-"- Ctrl-c partizio berria eraikitzeko (partizio hutsa hautatzekotan)\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-d partizioa ezabatzeko\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-m muntai puntua ezartzeko\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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Berriki ezarritako edozein partizio formateatu beharko da erabilgarria\n"
-"izateko (formateatu esan nahi du sistemen fitxategiak ezartzea). Orain, "
-"agian\n"
-"esistitzen direnetako zenbait partizio formateatu nahiko duzu, bertako "
-"datuak\n"
-"ezabatzeko. Oharra: aurretik zeuden partizioak formateatzea ez da "
-"beharrezkoa\n"
-"batez ere, mantendu nahi dituzun fitxategi eta datuak gordetzen baditu.\n"
-"Normalean /home eta /usr/local dira gordetzen direnak."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:267
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:155
-msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Hautatutako paketeak instalatzen ari dira. Operazio honek\n"
-"minutu gutxi batzuk iraun lezake, baina sistema eguneratzea hautatu\n"
-"baduzu are gehiago iraun lezake operazioak eguneratzea egin beharko\n"
-"delako."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:303
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"DrakX-ek ez du sagurik aurkitzen ez badu, edo egindakoa\n"
-"aztertu nahi baduzu, gainean duzun saguen zerrenda duzu\n"
-"eskura.\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
"\n"
-"DrakX'-en aukerekin ados bazaude settings, jauzi egin nahi duzun atalera\n"
-"ezkerrean duzun menuan klik eginez. Bestela,\n"
-"zure saguarekin antza handiena zukeen sagua hautatu\n"
-"menuan.\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
"\n"
-"Seriean konektatutako sagua izanez gero, DrakX-i\n"
-"serie-kaia adierazi beharko diozu."
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-"Mesedez kai zuzena hautatu. Adibidez, MS Windows-eko COM1 kaia\n"
-"ttyS0 izendatzen da Linux-en."
+"Orain instalatu edo eguneratu nahi duzun paketa taldea\n"
+"hauta dezakezu.\n"
+"\n"
+"DrakX-ek instalaziorako tokirik baduzu begiratuko du. Ez baduzu,\n"
+"ohartuko dizu. Aurrera jarraitu nahi baduzu, hautatutakoen artean "
+"instalazioak\n"
+"garrantzi handiagoko paketeak hobestuko ditu eta leku faltan garrantzi\n"
+"gutxiagokoak bastertuko ditu.Zerrendaren behealdeko\n"
+"\"Banan banako pakete hautaketa\" erabil zenezake; kasu honetan\n"
+"1000 baino gehiagoko pakete zerrendan murgildu beharko zara..."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:341
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
"\n"
-"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Atal hau bertoko sarea (LAN) edo modem-a konfiguratzeko\n"
-"da\n"
-"\n"
-"Hautatu \"Bertoko LAN\" eta DrakX-ek\n"
-"zure makinako Ethernet egokitzailea bilatzen saiatuko da. PCI egokitzaileak\n"
-"automatikoki bilatu eta abiarazten dira.\n"
-"Dena den, zure periferikoa ISA bada, autodetekzioak huts egingo du,\n"
-"eta orduan agertuko zaizun zerrendatik hautatu beharko duzu driver-a.\n"
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"Goiko zerrendako CD guztiak badituzu, Ados klikatu.\n"
+"Batere ez baduzu, Etsi klikatu.\n"
+"Baten bat faltatuz gero, hautatuetatik atera eta ondoren Ados klikatu."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"SCSI egokitzaileentzat gertatzen den moduan, lehen aldian driverrak\n"
-"egokitzailea frogatu lezake bere kabuz, bestela aukerak adierazi\n"
-"beharko dizkiozu driver-ari, aukerak dokumentazioan edo harwarean\n"
-"aurki ditzakezu.\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Mesedez kai zuzena hautatu. Adibidez, MS Windows-eko COM1 kaia\n"
+"ttyS0 izendatzen da GNU/Linux-en."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"Linux-Mandrake sistema sare batean dagoen konputagailuan\n"
-"instalatuz gero, sare administrariak beharrezko duzun informazioa eman "
-"beharko dizu\n"
-"(IP helbidea, sareko submaskara\n"
-"edo netmask, eta ostalariaren izena). Zure sare pribatua\n"
-"instalatzen ari bazara helbidea hautatu beharko\n"
-"duzu.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Hautatu \"Deitu modem-ez\" eta modem bitarteko internet\n"
-"konexioa konfiguratuko da. DrakX-ek, zure modem-a bilatzen saiatuko da\n"
-"hau huts eginez gero aukeratu beharko duzu modem-aren serieko kaia\n"
-"zein den."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Markatze opziotan sar zintezke. Sartu beharreko informazioa\n"
+"zure ISP-tik lor dezakezu."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"Enter:\n"
+"Sartu:\n"
"\n"
-" - IP helbidea: ez badakizu, sare administrariari galdetu.\n"
+" - IP helbidea: ez badakizu, sare administrariari edo ISP-ari galdetu.\n"
"\n"
"\n"
-" - Netmask: \"255.255.255.0\" ohikoena da. ziur ez bazaude\n"
-"administratzaileari galdetu.\n"
+" - Netmask: \"255.255.255.0\" ohikoena da. Ziur ez bazaude\n"
+"administratzaileari edo ISP-ri galdetu.\n"
"\n"
"\n"
-" - Automatic IP: Sareak bootp edo dhcp protocol erabiliz gero, hautatu \n"
+" - Automatic IP: Sareak BOOTP edo DHCP protokoloak erabiliz gero, hautatu \n"
"aukera hau. Hautatuz gero, \"IP helbidea\"-rako ez de baliorik eman behar.\n"
-"Ziur ez bazaude, galdetu administrariari.\n"
+"Ziur ez bazaude, galdetu administrariari edo ISP-ari.\n"
+
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Sareak NIS erabiliz gero, hautatu \"Erabil NIS\". Ez badakizu, sarearen "
+"administrariari\n"
+"galde egiozu."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1696,7 +2201,7 @@ msgstr ""
"Markatze opziotan sar zintezke. Sartu beharreko informazioa\n"
"zure ISP-tik lor dezakezu."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1704,13 +2209,15 @@ msgstr ""
"Proxy-rik erabiliz gero, mesedez orain konfiguratu. Ez badakizu\n"
"ISP-ari edo sareko administrariari galdetu."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1722,100 +2229,204 @@ msgstr ""
"Mirror ete pakete kriptografikoak zure tokiko legeen arabera hautatu\n"
"behar dituzu."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Bizi zaren tokiko denbora-eremua hauta dezakezu.\n"
"\n"
"\n"
-"Linux-ek GMT edo \"Greenwich Mean Time\" erabiltzen du eta hau\n"
+"GNU/Linux-ek GMT edo \"Greenwich Mean Time\" erabiltzen du eta hau\n"
"zure bizitokira egokitzen du."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
+"Abiatzerakoan zein zerbitzu nahi duzun hauta zenezake orain.\n"
+"Sagua item baten gainetik pasatzerakoan, globo txiki batek zerbitzuaren "
+"zeregina\n"
+"aipatuko dizu.\n"
+"\n"
+"Makina zerbitzari modura erabiliko baduzu, kontu handiz ibili:\n"
+"erabiliko ez dudun zerbitzuak ez abiarazi."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Linux-ek irarkola mota ugari erabil ditzake. Bakoitzak\n"
-"bere egokiera behar du.\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
-"Irarkola zuzenean konputagailuari lotuta egonez gero hautatu\n"
-"\"Bertoko irarkola\". Gero zein kaietara lotuta dagoen adierazi\n"
-"beharko duzu, eta iragazki egokia hautatu.\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Urruneko Unix makinari lotutako irarkola erabili nahi izanez gero,\n"
-"hautatu \"Urruneko lpd\". Indarrean sartzeko\n"
-", ez da beharrezko erabiltzaile izena ez eta pasahitzik, baina\n"
-"zerbitzariaren inprimitze isatsaren izena jakin beharko duzu.\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"SMB irarkola erabili nahi izanez gero (hau da,\n"
-"urruneko Windows 9x/NT makinan kokatutakoa),\n"
-"SMB izena (ez TCP/IP izena)eman beharko duzu, eta agian IP helbidea ere,\n"
-"gehi erabiltzaile izena, lantaldea eta irakola erabiltzeko beharrezkoa\n"
-"den pasahitza, eta, nola ez, irarkolaren izena. Bardin\n"
-"NetWare irarkolentzako, baina kasu honetan ez duzu lantalde izenik eman "
-"beharrik."
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
+#, fuzzy
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Orain zure Linux-Mandrake sistemarako pasahitza sar dezakezu.\n"
"Pasahitza birritan tekleatu beharko duzu, bigarrenean\n"
@@ -1832,7 +2443,7 @@ msgstr ""
"ez du izan behar, hau da: neke handiegirik gabe gogora dezakezuna\n"
"behar du izan."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1840,7 +2451,7 @@ msgstr ""
"Sistema seguruago izan daitean, hautatu \"Fitxategi itzaldua erabili\" eta\n"
"\"MD5 pasahitzak erabili\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1849,7 +2460,7 @@ msgstr ""
"administrariari\n"
"galde egiozu."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1891,47 +2502,41 @@ msgstr ""
", eta root login-a bakarrik administraziorako eta mantenurako\n"
"erabiliko duzu."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Oso gomendatua da hemen \"Bai\" erantzutea. Microsoft Windows\n"
-"gerorago instalatzekotan boot sektorea ezabatuko dizu.\n"
-"Esan zaizun bezala boot diskorik egin ez baduzu ezin izango duzu\n"
-"Linux abiatu."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Linux abiarazteko beharrezkoa den informazioa\n"
+"GNU/Linux abiarazteko beharrezkoa den informazioa\n"
"non kokatu nahi duzun galdetuko zaizu.\n"
"\n"
"\n"
"Ziur ez bazaude, hautatu \"Honen lehenengo sektorea\n"
"unitatez (MBR)\"."
-#: ../../help.pm_.c:343
-#, fuzzy
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
"Bestelakorik ez badakizu, ohikoena \"/dev/hda\" da\n"
-"(disko maisuaren lehen kanala)."
+" (IDE disko nagusia) edo \"/dev/sda\" (lehen SCSI diskoa)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1941,8 +2546,20 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
+"LILO (the LInux LOader) eta Grub abiarazleak dira: biek\n"
+"GNU/Linux edo bestelako sistema eragileak abiarazteko gai dira.\n"
+"Normalean, bestelako sistema eragileak zuzen detektatu eta instalatzen "
+"dituzte.\n"
+"Horrela ez bada, pantaila honetan sarrera eskuz gehitu zenezake.\n"
+"Kontuz ibili eta parametro egokiak hautatu.\n"
+"\n"
+"\n"
+"Beste sistema eragile batzuetarako sarrera kendu nahiko duzu,\n"
+" orduan dagokion sarrerak ezabatu. Hau egitekotan, \n"
+"diskete abiarazlea beharko duzu, bestelako sistema eragilerik erabili nahiez "
+"gero!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -1960,52 +2577,88 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-"LILOren aukera nagusiak dira:\n"
+"LILO eta grub-en aukera nagusiak dira:\n"
" - Abiarazteko unitatea: boot sektorea non (e.g. disko zurruna edo "
"partizioa)\n"
"dagoen esaten du). Bestera ez bada,\n"
"\"/dev/hda\" hautatu.\n"
"\n"
"\n"
-" - Lineala: helbide linealak sektoreentzako eta ez\n"
-"sector/buru/zilindro helbideak. Helbide linealak abiarazterakoan itzultzen "
-"dira\n"
-"eta ez dude diskoaren geometriarekin lotuta. Kontuan izan disko zurruna "
-"eramngarri\n"
-"ez dela \"linear\" erabiliz gero, diskoen geometria ezartzeko BIOSaren\n"
-"atala ez dabil disketeentzako. Disko handietan\n"
-"\"linear\", /sbin/lilo-k erabilgarriak ez diren areetarako loturak\n"
-"ezar lezake, 3D sektoreetako helbideak abiarazi ostean ezartzen\n"
-"direlako.\n"
+" - Atzerapena, jatorrizko imagina abiarazi aurretik: segunduen "
+"hamarrekotan\n"
+"imagina abiarazi aurretik behar den itxaron denbora.\n"
+"Erabilgarria teklatua ezagutu eta gero abiarazten diren sistemetan.\n"
+"Abiarazlea ez du itzarongo ez baduzu \"atzerapen\"-en ezer edo zero jarriz "
+"gero.\n"
"\n"
"\n"
-" - Compact: Irakurketa eta baieztapena bat egiten ditu irakurketa "
-"bakarrera\n"
-"auzokoak diren sektoretan. Zama denbora jaisten du eta mapa txikiagoa "
-"eratzen du.\n"
-"\"compact\" gomendatzen da disketez abiarazten denean batez\n"
-"ere.\n"
+" - Video modua: Hau abiatzerakoan zein VGA testu modua hautatzeko da\n"
+"Hurrengo balioak izan dezake: \n"
+" * arrunta: hauta 80x25 testu modua.\n"
+" * <zenbakia>: erabili dagokion testu modua."
+
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
-" - Jatorriz hautatutako imagina abiarazteko itxaron denbora:\n"
-"boot kargatzailea zenbat itxaron behar duen (segunduen hamarrenekotan).\n"
-"Hau batez ere disko zurrunetik abiarazten denean teklatua egokitu \n"
-"ondoren. Horrela ez dago itxaron denborarik \"itxaron-denbora\"\n"
-"zero bada.\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO SPARC-en abiarazlea da: GNU/Linux eta bestelako\n"
+"sistema eragileak abiarazi dezake.\n"
+"Normalean, bestelako sistema eragileak zuzen detektatu eta instalatzen "
+"dituzte.\n"
+"Horrela ez bada, pantaila honetan sarrera eskuz gehitu zenezake.\n"
+"Kontuz ibili eta parametro egokiak hautatu.\n"
+"\n"
+"\n"
+"Beste sistema eragile batzuetarako sarrera kendu nahiko duzu,\n"
+" orduan dagokion sarrerak ezabatu. Hau egitekotan, \n"
+"diskete abiarazlea beharko duzu, bestelako sistema eragilerik erabili nahiez "
+"gero!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILOren aukera nagusiak dira:\n"
+" - Abiarazlearen instalazioa: Hauta GNU/Linux abiarazteko informazioa non\n"
+"ezarri nahi duzun. Egiten duzuna zehatz ez badakizu,\n"
+"hauta \"diskoaren lehen sektorea (MBR)\"\n"
"\n"
"\n"
-" - Video modua: Abiatzerakoan zein VGA testu modua hautatzen\n"
-"den adierazteko. Hurrengo balioak aukeran: \n"
-" * normala: hautatu 80x25 testu modua.\n"
-" * <zenbakia>: dagokian testu modua."
+" - Atzerapena, jatorrizko imagina abiarazi aurretik: segunduen "
+"hamarrekotan\n"
+"imagina abiarazi aurretik behar den itxaron denbora.\n"
+"Erabilgarria teklatua ezagutu eta gero abiarazten diren sistemetan.\n"
+"Abiarazlea ez du itzarongo ez baduzu \"atzerapen\"-en ezer edo zero jarriz "
+"gero."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2017,7 +2670,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Orain X Window Sistem konfiguratu behar duzu, hau\n"
-"Linux GUIren (Graphical User Interface) muina da. Honetarako,\n"
+"GNU/Linux GUIren (Graphical User Interface) muina da. Honetarako,\n"
"monitorea eta bideo txartela konfiguratu behar dituzu. Hurrats\n"
"gehienak automatikoak dira, beraz, zure lana hautatutakoa\n"
"baieztatzea eta onartzearena izango da :)\n"
@@ -2028,7 +2681,7 @@ msgstr ""
"aukeren egokiera. Ez bazaude konforme atzera jo dezakezu,\n"
"aukerak aldatu eta berriz frogatu."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2036,7 +2689,7 @@ msgstr ""
"X konfigurazioan zerbait gaizki izanez gero, aukera hauek erabili\n"
"X Window Sistema konfiguratzeko."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2044,43 +2697,47 @@ msgstr ""
"Login grafikoa nahi baduzu \"Bai\" hautatu. Bestela, hautatu\n"
"\"Ez\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Zure sistemaren zenbait aukera gehigarri hauta dezakezu orain.\n"
"\n"
@@ -2090,11 +2747,11 @@ msgstr ""
"\n"
"\n"
" - Hautatu segurtasun maila: Zure sistemarako segurtasun maila hauta\n"
-"dezakezu.\n"
+"dezakezu. Ez badakizu \"Ertaina\" hautatu.\n"
" Informazio gehiagorako gidaliburua aztertu.\n"
"\n"
"\n"
-" - RAM tamaina zehatza: Zenbaitetan, Linux-ek ez du ongi detektatzen\n"
+" - RAM tamaina zehatza: Zenbaitetan, GNU/Linux-ek ez du ongi detektatzen\n"
"sisteman dagoen RAM guztia. Hau gertatuz gero,\n"
"adierazi tamaina zehatza. Oharra: 2 edo 4 Mb arteko diferentzia\n"
"normala da.\n"
@@ -2109,7 +2766,7 @@ msgstr ""
" - Num Lock abiatzerakoan: Number Lock abiatzerakoan ezarrita\n"
"nahi izanez gero, hautatu hau (Oharra: Num Lock ez dabil X-en)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2123,97 +2780,119 @@ msgstr ""
"Bestelako sistema eragilerik erabili nahi izanez gero mesedez irakurri\n"
"instrukzio gehigarriak."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Hautatu hizkuntza"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Hautatu instalazio mota"
-#: ../../install2.pm_.c:45
-#, fuzzy
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
-msgstr "Disko zurrunaren optimizatzaileak erabili nahi?"
+msgstr "Disko zurrunaren detekzioa"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Konfiguratu sagua"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Aukeratu teklatua"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Denetarik"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Fitxategi sistemak egokitu"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Partizioak formateatu"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Aukeratu instalatu beharreko paketeak"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalatu sitema"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Konfiguratu sare lana"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Enkriptatua"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Konfiguratu ordu eremua"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Konfiguratu zerbitzuak"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Konfiguratu irarkola"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "root-aren pasahitza ezarri"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Gehitu erabiltzailea"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Bootdisk-a eraiki"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Instalatu bootloader-ra"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Konfiguratu X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
-msgstr ""
+msgstr "Auto instalatu disketea"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Instalaziotik irten"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "$f fitxategia irakurtzean errorea"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Mesedez testatu sagua"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Mesedez testatu sagua"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"Zure konputagailuaren harwareren baten batek lanerako ``proprietary'' "
+"gidariak behar ditu.\n"
+"Horri buruzko informazioa hemen duzu: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2223,235 +2902,249 @@ msgstr ""
"Honetarako, partizioa eratu (edo existitzen deneko batean klikatu).\n"
"Geru hauta ``Muntai puntua'' eta `/' ezarri"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Partizio taula ezin irakurri, zeharo galduta:(\n"
-"Partizio txarrak hustutzen saiatuko naiz"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "swap partizioa beharrezko duzu"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake-k ezin izan du partizio taula irakurrri.\n"
-"Zure kontura jarraitu!"
+"Ez duzu swap partiziorik\n"
+"\n"
+"Jarraitu?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "root partizioaren bila."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Erabili toki librea"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informazioa"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Ez dago lekurik partizio berririk ezartzeko"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: hau ez da root partizioa, mesedez aukeratu besteren bat."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Erabili dauden partizioak"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Ez dut aurkitu root partiziorik"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Ez dago partizio erabilgarririk"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS domeinurik gabe ezin erabili broadcast"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Loopback-erako erabili Windows partizioa"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "$f fitxategia irakurtzean errorea"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Zein partizio erabili nahi duzu Linux4Win ezartzeko?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Errorea eman da eta ezin dezaket egokiro kudeatu.\n"
-"Jarraitu zure kabuz."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Hautatu tamainak"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s muntaia puntua bikoiztu"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Root partizioaren tamaina MBetan: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap partizzioaren tamaina MBetan: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Ongi etorri %s-ra"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Erabili Windows partizioako toki librea"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Ez dago disketerik"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Zein partizio berregokitu nahi duzu?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Windows-aren fitxategi-sistemen loturak zenbatzen"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "`%s' urratsean sartzen\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"FATaren berregokitzaileak ezin du zure partizioan eragin, \n"
+"hurrengo errorea gertatu da: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "swap partizioa beharrezko duzu"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "Zure windows partizioa oso zatikatua, mesedez ``defrag'' egin"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Ez duzu swap partiziorik\n"
+"KASU!\n"
"\n"
-"Jarraitu?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Instalatu nahi duzunaren tamaina hautatu"
+"DrakX-ek zure Windows partizioa egokitu behar du. Kontuz: operazio hau\n"
+"arriskutsua da. Ez baduzu oraindik egin, aurretik scandisk abiarazi (eta\n"
+"aukeran defrag) partizio honetan eta egizu backupa.\n"
+"Ziur bazaude, sakatu Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Tamaina guztira: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Zein tamaina gorde nahi duzu windowserako?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Bertsioa: %s\n"
+msgid "partition %s"
+msgstr "partizioa %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamaina: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT tamaina egokierak huts egin du: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Instalatu nahi dituzun paketeak hautatu"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Ez dao FAT partiziorik berregokitzeko edo loopback bezala erabiltzeko (edo "
+"ez da lekurik geratzen)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalatu"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Ezabatu Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instalatzen"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"Disko zurrun bat baino gehiago duzu, zeinetan instalatu nahi duzu linux?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Mesedez itxaron, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Dauden partizio GUZTIAK eta hauetako datuak galduko dira %s-n"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Falta den denbora "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Aditu mota"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Denbora guztira"
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Erabili diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Instalazioa prestatzen"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Erabili fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "%s paketea instalatzen"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"%s partizioa egin dezakezu orain\n"
+"Eginda dagoenean, ez ahaztu, gorde `w' erabiliz"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Jarraitu dena den?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Erabili Windows partizioako toki librea"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Paketeak antolatzerakoan errorea izan da:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Ezin dut partizio gehiagorik gehitu"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "X11-rako dagoen konfigurazioa erabili?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DraX-en partiziorako tresnak hurrengo soluzioak aurkitu ditu:"
-#: ../../install_steps_gtk.pm_.c:158
-#, fuzzy
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Mesedez hurrengo informazioa igorri"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partizioak huts egin du: %s"
-#: ../../install_steps_gtk.pm_.c:199
-#, fuzzy
-msgid "You don't have any windows partitions!"
-msgstr "Partiziorik ez duzu!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Sarea eraikitzen"
-#: ../../install_steps_gtk.pm_.c:201
-#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Partiziorik ez duzu!"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Sarea beheratzen"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"KASU!\n"
-"\n"
-"DrakX-ek zure Windows partizioa egokitu behar du. kontuz: operazio hau\n"
-"arriskutsua da. Ez baduzu oraindik egin, aurretik scandisk abiarazi (eta\n"
-"aukeran defrag) partizio honetan eta egizu backupa.\n"
-"Ziur bazaude, sakatu Ok."
+"Errorea eman da eta ezin dezaket egokiro kudeatu.\n"
+"Jarraitu zure kabuz."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "%s muntaia puntua bikoiztu"
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Tamaina egokiera automatikoak huts egin du"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Zenbait pakete garrantzitsu ez dira ongi instalatu.\n"
+"Cdrom tresna edo cd-a gaizki leudeke.\n"
+"Saiatu cd-a instalatutako konputagailuren batean \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\" erabiliaz\n"
-#: ../../install_steps_gtk.pm_.c:265
-#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Zein partizio erabili nahi duzu root partizio modura?"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Ongi etorri %s-ra"
-#: ../../install_steps_gtk.pm_.c:284
-#, fuzzy
-msgid "Choose the sizes"
-msgstr "Hautatu tamaina berria"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Ez dago disketerik"
-#: ../../install_steps_gtk.pm_.c:286
-#, fuzzy
-msgid "Root partition size in MB: "
-msgstr "Root partizioa"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "`%s' urratsean sartzen\n"
-#: ../../install_steps_gtk.pm_.c:288
-#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "Tamaina MBetan: "
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Zure sistemak ahalmen gutxi du. Linux-Mandrakeren instalazioak arazoak eman\n"
+" ditzazke. Horrela bada, Testu bidezko instalazioe egin zenezake. Hartarako, "
+"sakatu,\n"
+"`F1' CDROMa abiatzerakoan, eta gero sartu `text'."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Mesedez, hurrengoetatik instalazio mota hautatu"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
+msgstr "Hautatutako taldeen tamaina gutxigorabehera %d MBekoa da.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2459,8 +3152,11 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of 100%% will install all selected packages."
msgstr ""
+"Tamaina hau baino txikiagoa nahi baduzu,\n"
+"hauta instalatu nahi duzun paketeen ehunekoa.\n"
+"100%%ekoak pakete guztiak instalatuko du."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2469,105 +3165,194 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
+"Zure diskoan, paketeen %d%%rako tokia duzu.\n"
+"\n"
+"Gutxiago nahi baduzu,\n"
+"hauta instalatu nahi duzun paketeen ehunekoa.\n"
+"Ehuneko txikiak pakete nagusiak instalatuko ditu;\n"
+"%d%% ehunekoak ahal bezain besteko paketeak instalatuko ditu."
-#: ../../install_steps_gtk.pm_.c:333
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
-msgstr "Hurrengo hurratsean zehatzago egin dezakezu"
+msgstr "Hurrengo hurratsean zehatzago hauta dezakezu"
-#: ../../install_steps_gtk.pm_.c:335
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
-msgstr "Aukeratu instalatu beharreko paketeak"
+msgstr "Instalatu beharreko paketeen ehunekoa"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Instalatu nahi dituzun paketeak hautatu"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalatu"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Dependentzia automatikoak"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Zabaldu adarrak"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Batu adarrak"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
-msgstr ""
+msgstr "Toggle between flat and group sorted"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Pakete okerra"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
-msgstr ""
+msgstr "Izena: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Bertsioa: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Tamaina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Garrantzia: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamaina guztira: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Ez dago lekurik pakete honetarako"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Hurrengo paketeak instalatuko dira"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Hurrengo paketeak ezabatuko dira"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Ezin hauta/kendu pakete hau"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ezinbesteko paketea da, ezin zaio huatapena kendu"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
-msgstr ""
+msgstr "Ezin duzu hautatutako hau kendu. Dagoeneko instalatua"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
+"Pakete hau eguneratu behar da\n"
+"Aukera kendu nahi?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:496
-#, fuzzy
-msgid "The following packages are going to be installed/removed"
-msgstr "Hurrengo paketeak instalatu/ezabatuko dira"
+msgstr "Ezin duzu hautatutakoa kendu. Eguneratu behar da"
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instalatzen"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Neurtzen"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Mesedez itxaron, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Falta den denbora "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Denbora guztira"
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Etsi"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Instalazioa prestatzen"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakete"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "%s paketea instalatzen"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Onartu"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2581,200 +3366,403 @@ msgstr ""
"Mesedez, \"%s\" izena duen Cd-Rom-a sartu unitatean eta gero Ok sakaegizu.\n"
"Ez baldin baduzu Etsi sakatu Cd-Rom-etiko instalazioa ezeztatzeko."
-#: ../../install_steps_gtk.pm_.c:615
-#, fuzzy
-msgid "There was an error installing packages:"
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Ez onartu"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Jarraitu dena den?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
msgstr "Paketeak antolatzerakoan errorea izan da:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_gtk.pm_.c:573
+msgid "There was an error installing packages:"
+msgstr "Paketeak instalatzerakoan errorea izan da:"
+
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Errorea gertatu da"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+msgstr "Mesedez, hauta hizkuntza."
+
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Teklatua"
-#: ../../install_steps_interactive.pm_.c:73
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
-msgstr "Zein da zure teklatuaren itxura?"
+msgstr "Mesedez, hauta zure teklatuaren itxura."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
+"Instalazioaren ondoren erabilgarriak izan daitezkeen beste hizkuntzak hauta "
+"dezakezu"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Root partizioa"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Zure sisteman zein da root (/) partizioa?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Denak"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Instalazio mota"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Zein instalazio mota nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instalatu/Eguneratu"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "Instalazioa edo eguneratzea da?"
-
-#: ../../install_steps_interactive.pm_.c:110
+#: ../../install_steps_interactive.pm_.c:183
#, fuzzy
-msgid "Automated"
-msgstr "IP automatikoa"
+msgid "Is this an install or an update?"
+msgstr "Instalazioa edo berreskuraketa da?"
+
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Gomendatua"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Norberarena"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Aditua"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Ziur zaude aditua zarela? \n"
-"Txantxarik ez, arriskutsuak izan daitezkeenak egin ditzakezu hemen."
+"Txantxarik ez, arriskutsuak izan daitezkeenak egin ditzakezu hemen.\n"
+"Honako galderei aurre eginbeharko duzu: ``Erabili fitxategi itzalduak "
+"pasahitzentzako?'',\n"
+"Horrelakoak erantzuteko prest?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Eguneratu"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Arrunta"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Lan estazioa"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Garatzailearena"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Zerbitzariarena"
-#: ../../install_steps_interactive.pm_.c:141
-#, fuzzy
-msgid "Which usage is your system used for ?"
-msgstr "Zein da zure ordu-eremua?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Zein da zure sistemaren erabilera?"
-#: ../../install_steps_interactive.pm_.c:152
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
-msgstr "Zein da zure sagu mota?"
+msgstr "Mesedez, hauta da zure sagu mota."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Saguaren kaia(port)"
-#: ../../install_steps_interactive.pm_.c:161
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Zure sagua serieko zein kaietara dago konektatua?"
+msgstr "Mesedez, hauta zure sagua serieko zein kaietara konektatua dagoen."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA txartelak konfiguratzen..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE Konfiguratzen"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ez dago partizio erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-#, fuzzy
-msgid "Please choose a partition to use as your root partition."
-msgstr "Zein partizio erabili nahi duzu root partizio modura?"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Muntai puntuak hautatu"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Partizio taula ezin irakurri, zeharo galduta:(\n"
+"Partizio txarrak hustutzen saiatuko naiz eta DATU GUZTIAK galduko dira\n"
+"(Akatsa: %s)\n"
+"\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake-k ezin izan du partizio taula irakurrri.\n"
+"Zure kontura jarraitu!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Root partizioa"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Zure sisteman zein da root (/) partizioa?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Aldaketak indarrean jar daitezen breabiatu behar duzu ordenadorea"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Hautatu formateatu nahi duzun partizioak"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
-msgstr ""
+msgstr "Bloke txarrak txekeatu?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Partizioak formateatzen"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fitxategia eratzen eta formateatzen"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Instalazioa burutzeko swap nahikorik ez, mesedez gehitu pixka bat"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Erabilgarri dauden paketeak bilatzen"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Eguneratu beharreko paketeak bilatzen"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
+"Zure sistemak ez du leku nahikorik instalaziorako edo eguneratzerako (%d > "
+"%d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Osoa (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimoa (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Gomendatua (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Norberarena"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Hauta instalatu nahi duzun tamaina"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Pakete Taldearen aukeraketa"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Banan-banako pakete hautapena"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
+"Beheko zerrendako CD guztiak badituzu, Ados klikatu.\n"
+"Ez badituzu, Etsi klikatu.\n"
+"Ez duzuna ezaba dezakezu, eta gero Ados klikatu."
-#: ../../install_steps_interactive.pm_.c:363
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:575
+#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom Nr %s"
+msgstr "Cd-Rom etiketan %s"
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2782,176 +3770,11 @@ msgstr ""
"%s paketea instalatzen\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Postinstalazioaren konfigurazioa"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Darabildan IP konfigurazioa mantendu"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Berkonfiguratu sarea orain!"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Sarearen konfigurazioa ez ukitu"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Sarearen Konfigurazioa"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Bertoko sarea konfiguratua dago. Nahi al duzu:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Zure sistemarako bertoko LAN sarea konfiguratu nahi duzu?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "ez da sare txartelik aurkitu"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modem-aren konfigurazioa"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"Zure sistemarako modem-markazioaren bitartezko sare-lana konfiguratu nahi "
-"duzu?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "% sarerako tresna konfiguratzen"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Makina honetarako IP konfigurazioa ezarri mesedez.\n"
-"Item bakoitze zenbaki eta puntuz sartu behar da IPan bezala\n"
-"(adibidez, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP automatikoa"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP helbidea:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Maskara (Netmask):"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP helbidea hurrengo formatuan 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Sarea konfiguratzen"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Ostalariaren izena sartu mesedez.\n"
-"Zure ostalariaren izena guztiz gaitua behar du izan,\n"
-"honakoa bezala ``nirekutxa.niregela.nirelantegia.com''.\n"
-"Atariaren (gateway) IP helbidea sar dezakezu horrelakorik baduzu"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS zerbitzaria:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Atariko tresna (gateway device):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Ataria (gateway):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Ostalariaren izena:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Aurkitu modema?"
-
-#: ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Serieko zein kaira dago zure modema konektatua?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Markatze aukerak"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Konexioaren izena"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefono zenbakia"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Egiaztapena"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Scipt-ean oinarritua"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminalean oinarritua"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domeinuaren izena"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Lehenengo DNS zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Bigarren DNS zerbitzaria"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3021,89 +3844,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Hautatu paketeak lortzeko erabiliko duzun mirror-a"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Mirror-arekin kontaktazen eskuragai dauden pakete zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:592
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
-msgstr "Instalatu nahi dituzun paketeak hautatu"
+msgstr "Mesedea hauta instalatu nahi dituzun paketeak."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Zein da zure ordu-eremua?"
+msgstr "Zein da zure ordu eremua?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Zure hardwareko erlojua GTMari egokitua dago?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Zein inprimaketa sistema erabili nahi duzu?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Pasahitzik ez"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Itzalpeko fitxategia erabili"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "itzalpea"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "MD5 pasahitzak erabili"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "NIS erabili"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "orri horiak"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Pasahitza sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS egiaztapena"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS domeinua"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS Zerbitzaria:"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Onartu erabiltzailea"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Gehitu erabiltzailea"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s dagoeneko gehitua)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3113,61 +3939,88 @@ msgstr ""
"Erabiltzailea sartu\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Benetako izena"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Erabiltzailearen izena"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Maskorra"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikonoa"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Pasahitza sinpleegia da"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Mesedez erabiltzaile izena eman"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Erabiltzailearen izenean soilik hizki txikiak, zenbakiak, `-' eta `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Erabiltzaile izen hau dagoeneko gehituta dago"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Norberaren disko abiarazleaz (bootdisk) Linux-an sar zintezke abiarazle\n"
+"arrunta erabili ordez. Hau batez ere balio du zure sisteman SILOrik ezarri\n"
+"nahi ez duzunerako edo beste sistema batek SILOa ezabatzen duenerako edo "
+"zure\n"
+"hardware konfigurazioarekin SILO bat ez daterrenerako. Disko abiarazleak "
+"ere\n"
+"Mandrakeren erreskate imaginaren ordezkoarena egin lezake, eta horrela "
+"sistema\n"
+"porrotetatik berreskura dezake. Zure sistemarako disko abiarazlerik egin "
+"nahi baduzu \"Ados\" klikatu."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Lehenengo diskete unitatea"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Bigarren diskete unitatea"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Ahaztu"
-#: ../../install_steps_interactive.pm_.c:755
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3182,8 +4035,8 @@ msgid ""
msgstr ""
"Norberaren disko abiarazleaz (bootdisk) Linux-an sar zintezke abiarazle\n"
"arrunta erabili ordez. Hau batez ere balio du zure sisteman LILOrik ezarri\n"
-"nahi ez duzunerako edo beste sistema batek LILOa ezabatzen duenerako edo "
-"zure\n"
+"nahi ez duzunerako edo beste sistema batek LILOa (edo grub) ezabatzen "
+"duenerako edo zure\n"
"hardware konfigurazioarekin LILO bat ez daterrenerako. Disko abiarazleak "
"ere\n"
"Mandrakeren erreskate imaginaren ordezkoarena egin lezake, eta horrela "
@@ -3191,184 +4044,154 @@ msgstr ""
"porrotetatik berreskura dezake. Zure sistemarako disko abiarazlerik egin "
"nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Parkatu, ez dago disko unitate erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Hautatu disko abiarazlea egiteko erabiliko den unitatea"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "%s-n diskoa sartu"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Disko abiarazlea eraikitzen"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILOren instalazioak porrot egin du. Errore hau izan da:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "SILO erabili nahi duzu?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILOren aukera nagusiak"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hemen daude SILOko hurrengo sarrerak.\n"
-"Zenbait gehitu edo daudenak aldatu dezakezu."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partizioa"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Etiketa hau dagoeneko erabiltzen da"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILOren instalazioak porrot egin du. Errore hau izan da:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Abiarazlea prestatzen"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "aboot erabili nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
+"aboot instalatzerakoan errorea, \n"
+"indarrez ezarri instalazioa nahiz eta lehen partizioa urratzeko arriskua "
+"egon?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy-en konfigurazioa"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy-a honelakoa http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-a honelakoa ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "abiarazlearen instalazioak porrot egin du. Errore hau izan da:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Ongi etorri Crackers-era"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Txiroa"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Gutxi"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Ertaina"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Handia"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoidea"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Denetariko galderak"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(datuak galaraz lezake)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Disko zurrunaren optimizatzaileak erabili nahi?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Hautatu segurtasun neurria"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Behar izanez gero RAM tamaina zehatza(%d MB aurkituta)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Medio eramangarrien automuntaia"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Abiarazte bakoitzean /tmp garbitu"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
-msgstr ""
+msgstr "Gaitu multi profilak"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Hasterakoan zenbakien finkaketa (num lock) baimendu"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Ram tamaina Mb-etan"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Segurtasun neurri altuetan ezin da supermount erabili"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
+msgstr ""
+"kasu: SEGURTASUN MAILA HONETAN, KONSOLAN EZIN DUZU ROOT LOGIN-IK EGIN!\n"
+"Root izan nahi baduzu, erabiltzaile bezala login egin behar duzu eta gero "
+"\"s\" erabili.\n"
+"Orokorrero, zure makina zerbitzari bezala lan egingo du.\n"
+"Abisatuta zaude."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
+"Kasu, numlock-a piztuta izatean zenbait tekla zenbaikak ematen\n"
+"dituzte, hizkien ordez (ad: sakatu `p' eta lortu `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Saiatuko naiz PCI unitateen bilaketan?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "X11-rako dagoen konfigurazioa erabili?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
-msgstr ""
+msgstr "Linuxaren replikazioarako auto install floppya egin nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s-n disko hutsa sartu"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Berez instalatzeko disketea prestatzen"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3378,7 +4201,7 @@ msgstr ""
"\n"
"Benetan irten nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3400,157 +4223,19 @@ msgstr ""
"Linux-Mandrake Erabiltzailearen Gida Ofizialean dagoen instalazio kapitulura "
"jo."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Itzaltzen"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s-ko %s txartelen driver-ak instalatzen"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(%s modulua)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Zein %s driver-an saia naiteke?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Zenbaitetan, %s driver-ak egokiro lan egiteko informazio gehigarria behar "
-"du\n"
-",naiz eta gehienetan ondo ibili hau gabe. Aukera extra hauek espezifikatuko "
-"zenuke\n"
-"edo utziko zenuke driver-ari lortzen saiatzen? Batzutan saiaketak "
-"konputagailua\n"
-"eskegi lezake, honek ez du kalterik eragin beharrik."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Autofroga"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Aukerak espezifikatu"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Orain %s moduluari bere aukerak ezarri diezaiokezu."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"%s moduluari bere aukerak ezardiezaiokezu.\n"
-"Aukeren formatua: ``izena=balioa izena2=balioa2 ...''.\n"
-"Adibidez, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Muduluaren aukerak:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s moduluare kargak porrot egin du.\n"
-"Beste parametro batuzuez saiatu nahi al duzu?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Saiatuko naiz PCMCIA txartelak bilatzen?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA txartelak konfiguratzen..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Saiatuko naiz %s unitateen bilaketan?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s inteface-ak aurkituta"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Besterik daukazu?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "%s interface-rik duzu?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ez"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Bai"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Ikus harwarearen informazioa"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Sarea eraikitzen"
-
-#: ../../install_steps_interactive.pm_.c:1207
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "Sarea eraikitzen"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake-ren %s instalazioa"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> elementuen artean | <Space> hautatzeko | <F12> hurrengo "
"pantaila "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"%s disko zurrunaren partizioa egin dezakezu orain\n"
-"Eginda dagoenean, ez ahaztu, gorde `w' erabiliz"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Mesedez itxaron"
@@ -3560,7 +4245,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Anbiguitatea (%s), zehatzago izan\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Aukera okerra, saia zaitez berriro\n"
@@ -3574,444 +4259,940 @@ msgstr " ? (jatorrizkoa %s) "
msgid "Your choice? (default %s) "
msgstr "Zure aukera? (jatorrizkoa %s"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Zure aukera? (jatorrizko % sar `none' ezer denean"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Txekoa"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Germaniarra"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
-msgstr "Euskalduna edo Espaniarra"
+msgstr "Hegoko Euskalduna edo Espaniarra"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finlandarra"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
-msgstr "Frantziarra"
+msgstr "Iparreko Euskalduna edo Frantziarra"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norbegiarra"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polonesa"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Errusiarra"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Erresuma Batukoa"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Estatu Batuetakoa"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeniarra (zaharra)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeniarra (teklatuzkoa)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeniarra (fonetikoa)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "Azerbaidjan-era (cyrillic)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgikarra"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgariarra"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazildarra"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "Bulgariarra"
+msgstr "Bielorrusiarra"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Suitzarra (Germaniarra)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Suitzarra (Frantseza)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Alemana (alferrikako teklarik ez)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Daniarra"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norbegiarra)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estoniarra"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiarra (\"Errusiarra\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiarra (\"Latindarra\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "grekoa"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hungariarra"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israeldarra"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israeldarra (fonetikoa)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iraniarra"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandiarra"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiarra"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japoniarra 106 tekla"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Amerika latindarra"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Holandarra"
-#: ../../keyboard.pm_.c:140
-#, fuzzy
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
-msgstr "Lituaniako AZERTY"
+msgstr "Lituaniako AZERTY (zaharra)"
-#: ../../keyboard.pm_.c:142
-#, fuzzy
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
-msgstr "Lituaniako AZERTY"
+msgstr "Lituaniako AZERTY (berria)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniako \"lerro zenbakia\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniako \"fonetikoa\"QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Poloniarra (QWERTY)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Poloniarra (QWERTZ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugaldarra"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanadakoa (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Errusiarra (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Suediarra"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Eslobeniarra"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Eslobakiarra"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Tailandarra"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkiarra (ohiko \"F\" modeloa"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkiarra (modernoa \"Q\" modeloa"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukraniarra"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Estatu Batuetakoa (nazioartekoa)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnameko \"lerro zenbakia\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Iugoslabiarra (latinoa)"
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Sagua"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Generikoa"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Pilotatxoa"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seriekoa"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Ohiko sagua, 2 botoiduna"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Ohiko sagua, 3 botoiduna"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Segidakoa"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serial, zaharra C7 motakoa)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Sagurik ez"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 botoi"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 botoi"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "batez"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Sagurik ez"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Zuzena da?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Interneten konfigurazioa"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Internetera konektatze saiorik egin nahi orain?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Konfiguratu internet konexioa"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Internetera ez konektatu"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Internetera konektatu / Bertoko sarea konfiguratu"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN Konfigurazioa"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Ornitzailea hautatu.\n"
+"Zerrendan ezbalego, hauta Unlisted"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Konexioaren Konfigurazioa"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Mesedez beheko eremua bete edo berrikusi"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Txartelaren IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Txartelaren memoria (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Txartelaren IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Txartelaren IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Txartelaren IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Zure telefono zenbakia"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Ornitzailearen izena (adb: ornitzaile.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Ornitzailearen telefono zenbakia"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Ornitzailearen dns 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Ornitzailearen dns 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Markatze modua"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Kontuaren login-a (erabiltzailearen izena)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Kontuaren Pasahitza"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Biaeztatu Pasahitza"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Munduko beste guztia"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Eropatik at - ez D-Channel-ik (leased lines)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Zein protokolo erabili nahi duzu?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Ez dakit"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Zein da zure txartel mota?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Jarraitu"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Eten"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"Ongi etorria LILOra, sistema eragilearen hautatzailera!\n"
"\n"
-"Aukeren zerrenda ikusteko <TAB> sakatu.\n"
-"\n"
-"Kargatzeko, izena idatzi eta <ENTER> sakatu <ENTER> edo itxaron %d segundu "
-"jatorriz hautatutakoa abiatzeko.\n"
+"ISA txartel baduzu, hurrengo pantailan agertzen diren balioak egokiak izan "
+"beharko liratekez.\n"
"\n"
+"PCMCIA txartela baduzu, txartelaren irq eta io-a jakin behar duzu.\n"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Ongi etorri GRUBera, sistema eragilearen hautatzailea!"
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Zein da zure ISDN txartela?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%c eta %c tekla erabili hautatutakoa aukeratzeko"
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "ISDAN txartela aurkitu dut:\n"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Hautatutako OSa abiarazteko enter sakatu, 'e' editatzeko"
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"ISDN PCI txartela aurkitu dut, baina ez dakit zein motakoa. Mesedez hauta "
+"PCI txartel mota hurrengo pantailan."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "abiatze aurretiko komandoak, edo 'c' komando-lerroa izateko"
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Ez dut ISDN PCI txartelik aurkitu. Mesedez hauta hurrengo pantailakoren bat."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Hautatutakoa abiaraziko da %d segundu barru."
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Ez duzu konfiguratutako Ethernet egokitzailerik zure sisteman. Mesedez "
+"harwarearen konfigurazio tresna erabili."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Hautatu sareko interfacea"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Mesedez hauta interneterako erabili nahi duzun sare-egokitzailea."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "Sarearen interfazea"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Konfigurazioa frogatu nahi duzu?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL konfigurazioa"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Abiatzerakoan zure konexioa abiarazi nahi duzu?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Aurkitu modema?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Mesedez hauta serieko zein kaira dago zure modema konektatua."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Markatze aukerak"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Konexioaren izena"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefono zenbakia"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Login ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Egiaztapena"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Scipt-ean oinarritua"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminalean oinarritua"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domeinuaren izena"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Lehenengo DNS zerbitzaria"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Bigarren DNS zerbitzaria"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Internetera konektatu / Bertoko sarea konfiguratu"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Konfiguratu internet konexioa"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Internetera ez konektatu"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Internetera ez konektatu"
+
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "Internetera konektatu"
+
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "Irteneteko konexioa eten"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Konfiguratu internet konexioa"
+
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internet konexioa & konfigurazioa"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Sagua"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Konfiguratu internet konexioa"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB Sagua"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Konfiguratu internet konexioa"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB sagua (2 botoi)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Barneko ISDAN txarela"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB sagua(3 botoi edo gehiago)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Kanpoko modema"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB sagua"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Internetera konektatu"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "USB sagua (2 botoi)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Zure ISDN konexioa zein motatakoa da?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB sagua (3 botoi edo gehiago)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Konfiguratu internet konexioa"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Generic Mouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Frantzia"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Beste herrialdeak"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Generic 3 Button Mouse (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "Zein herrialdetan zaude?"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modema"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modema"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Zure adsl modem-a alcatel-ekoa bada, hauta Alcatel. Bestela, ECI."
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Konfiguratu internet konexioa"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Zein dhcp bezero erabili nahi duzu?\n"
+"Jatorrizkoa dhcpd da"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Konfiguratu internet konexioa"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Konfiguratu bertoko sarea"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ISDN Konfigurazioa"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Mouse"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Konfigurazioa frogatu nahi duzu?"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Mouse (3 botoi edo gehiago)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "Sarea ezgaitu"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Sagurik ez"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Internetera konektatu / Bertoko sarea konfiguratu"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A edo gorago (serial)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"Bertoko sarea konfiguratua dago.\n"
+"Nahi al duzu:"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Segidakoa (serial)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Zelan nahi duzu interneten sartu?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serial)"
+#: ../../netconnect.pm_.c:858
+#, fuzzy
+msgid "Network Configuration"
+msgstr "ISDN Konfigurazioa"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serial)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serial)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "ez da sare txartelik aurkitu"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serial)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Sarea konfiguratzen"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serial)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Ostalariaren izena sartu mesedez.\n"
+"Zenbait DHCP zerbitzariek ostalariaren izena behar dute.\n"
+"Ostalariaren izena guztiz osatutakoa behar du izan,\n"
+"hnakoa bezala ``nirekutxa.niregela.nirelantegia.com''."
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serial)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Ostalariaren izena"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, zaharra C7 motakoa)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serial)"
+#: ../../network.pm_.c:302
+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 ""
+"Makina honetarako IP konfigurazioa ezarri mesedez.\n"
+"Item bakoitze zenbaki eta puntuz sartu behar da IPan bezala\n"
+"(adibidez, 1.2.3.4)."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Generic Mouse (serial)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "% sarerako tresna konfiguratzen"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft compatible (serial)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP automatikoa"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Generic 3 Button Mouse (serial)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP helbidea"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (serial)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Maskara (Netmask)"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Zuzena da?"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../partition_table.pm_.c:528
-msgid "Extended partition not supported on this platform"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP helbidea hurrengo formatuan 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Ostalariaren izena sartu mesedez.\n"
+"Zure ostalariaren izena guztiz gaitua behar du izan,\n"
+"honakoa bezala ``nirekutxa.niregela.nirelantegia.com''.\n"
+"Atariaren (gateway) IP helbidea sar dezakezu horrelakorik baduzu"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS zerbitzaria"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Ataria (gateway)"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Atariko tresna (gateway device)"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Proxien konfigurazioa"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy-a honelakoa http://..."
-#: ../../partition_table.pm_.c:546
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy-a honelakoa ftp://..."
+
+#: ../../partition_table.pm_.c:540
+msgid "Extended partition not supported on this platform"
+msgstr "Plataforma honek ez du onartzen hedatutako(extended) partiziorik"
+
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4021,21 +5202,21 @@ msgstr ""
"Soluzio bakarra da lehen mailako partizioak mugitzea eta zuloa "
"hedatutako(extended) partizioen parean uztea"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Errorea %s fitxategia irakurtzerakoan"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s fitxategitik berreskuratzen: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Backup fitxategi kaxkarra"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "%s fitxategia idazterakoan errorea"
@@ -4069,42 +5250,51 @@ msgstr "interesgarria"
msgid "maybe"
msgstr "litekeena"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (garrantzitsua)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (oso ederra)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (ederra)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Gutxiago erakutsi"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Gehiago erakutsi"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Bertoko irarkola"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "Urrutiko lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Urrutiko irarkola"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Urrutiko CUPS zerbitzaria"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Urrutiko lpd zerbitzaria"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Sareko irarkola (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Irarkolaren Tresna URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Unitateak ezabatzen..."
@@ -4118,11 +5308,11 @@ msgstr "Kaiak saiatzen"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Irarkola, \"%s\" modelokoa, hurrengo tokian aurkitua:"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Bertoko Irarkolaren Tresna"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4130,15 +5320,15 @@ msgstr ""
"Zein tresnetara konektatzen da zure irarkola \n"
"(kasu! /dev/lp0 eta LPT1 gauza bera dira:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Irarkolaren Tresna"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Urrutiko lpd Irarkolaren Aukerak"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4149,19 +5339,19 @@ msgstr ""
"eta isatsaren izena eman behar duzu.\n"
"Lanak bertatik inprimatu daitezen."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Urrutiko ostalari izena"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Urrutiko isatsa"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Irarkolaren Aukerak"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4176,27 +5366,27 @@ msgstr ""
"irarkolaren banatze izena, erabiltzailearen izena,\n"
"pasahitza eta lantaldearen informazioa."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB zerbitzariaren ostalaria"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB zerbitzariaren IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Banatze izena"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Lantaldea"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare Irarkolen Aukerak"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4209,154 +5399,220 @@ msgstr ""
", erabili nahi duzun irarkolaren izena eta beharrezko daitezken\n"
"erabiltzaile izena eta pasahitza."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Inprimatze zerbitzaria"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Inprimatze isatsaren izena"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Socket-eko irarkolaren aukerak"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Socket irarkolan inprimitzeko, irarkolaren ostalari izena\n"
+"eta aukeran, kaiaren zenbakia."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Irarkolaren ostalari izena"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Kaia"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "Zuzenean URI eman dezakezu, CUPS duen irarkola erabiltzeko."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Zein da zure irarkola mota?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Inprimaketaren testa egin nahi duzu?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Test orria(k) inprimatzen ..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Inprimatze deabrura bialdu da/dira test orria/k.\n"
+"Irarkola lanean hasteko denboratxoa behar lezake.\n"
+"Inprimatze egoera:\n"
+"%s\n"
+"\n"
+"Egokiro dabil?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Inprimatze deabrura bialdu da/dira test orria/k.\n"
+"Irarkola lanean hasteko denboratxoa behar lezake.\n"
+"Egokiro dabil?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Bai, ASCII orria inprimatu test modura"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Bai, PostScript orria inprimatu test modura"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Bai, orri biak inprimatu"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Konfiguratu irarkola"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Zein da zure irarkola mota?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Irarkolaren aukerak"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Paperaren tamaina"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Lana bukatzerakoan papera kanporatu?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint driver-aren aukerak"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Kolore sakontzsunaren aukerak"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
-msgstr ""
+msgstr "Testua PostScript bezala inprimatu?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
-msgstr ""
+msgstr "Orriak atzetik aurrerako ordenean"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Mailada-hurrats testu finkoa?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
-msgstr ""
+msgstr "Orrialdeen kopurua, irtendako orrialdeen arabera"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
-msgstr ""
+msgstr "Eskubi/Ezker marginak puntuetan (erpuruaren 1/72)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
-msgstr ""
+msgstr "Goi/Beheko marginak puntutan (erpuruaren 1/72)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
-msgstr ""
+msgstr "GostScript aukera estrak"
-#: ../../printerdrake.pm_.c:187
-#, fuzzy
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
-msgstr "Kolore sakontzsunaren aukerak"
-
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Inprimaketaren testa egin nahi duzu?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Test orria(k) inprimatzen ..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Inprimatze deabrura bialdu da/dira test orria/k.\n"
-"Irarkola lanean hasteko denboratxoa behar lezake.\n"
-"Inprimatze egoera:\n"
-"%s\n"
-"\n"
-"Egokiro dabil?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Inprimatze deabrura bialdu da/dira test orria/k.\n"
-"Irarkola lanean hasteko denboratxoa behar lezake.\n"
-"Egokiro dabil?"
+msgstr "Testu aukera estrak"
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Irarkola"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Irarkolarik konfiguratu nahi duzu?"
-#: ../../printerdrake.pm_.c:243
-#, fuzzy
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Hemen daude LILOko hurrengo sarrerak.\n"
+"Hemen daude hurrengo irarkola isatsak.\n"
"Zenbait gehitu edo daudenak aldatu dezakezu."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS abiarazten"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "CUPSen gidari databasea irakurtzen..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Irarkolaren konexioa hautatu"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Zelan dago irarkola konektatua?"
-#: ../../printerdrake.pm_.c:272
-#, fuzzy
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Irarkolaren urrutiko konexioa hautatu"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Urrutiko CUPS zerbitzariaz, ez duzu hemen inolako irarkola konfiguraziorik\n"
+"egin behar; irarkolak automatikoki detektatuko dira.\n"
+"Dudan bazaude, hauta \"Urrutiko CUPS zerbitzaria\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
-msgstr "Urrutiko isatsa"
+msgstr "Kendu isatsa"
-#: ../../printerdrake.pm_.c:273
-#, fuzzy
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Irarkola oro izena behar du( lp adibidez).\n"
+"Betelako parametroak, kokapena, deskripzioa eman daitezke.\n"
+"Zein izen du eta nola dago konektatua irarkola?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Irarkolaren izena"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Deskripzioa"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Kokapena"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4365,50 +5621,47 @@ msgid ""
msgstr ""
"Irarkolen isats (inprimaketa lanak bideratzen diren tokia) oro izena\n"
"(maiz lp) eta honeri dagokion metaketa direktorioa behar du. Zein\n"
-"izen eta direktorio erabili behaur dira isats honetarako?"
+"izen eta direktorio erabili behar dira isats honetarako?"
-#: ../../printerdrake.pm_.c:276
-#, fuzzy
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
-msgstr "Isatsaren izena:"
+msgstr "Isatsaren izena"
-#: ../../printerdrake.pm_.c:277
-#, fuzzy
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
-msgstr "Metaketa direktorioa:"
+msgstr "Metaketa direktorioa"
-#: ../../printerdrake.pm_.c:278
-#, fuzzy
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
-msgstr "Irarkolaren konexioa hautatu"
+msgstr "Irarkolaren konexioa"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Formateatutako RAID md%d-i ezin partiziorik gehitu"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Fitxategia ezin idatz: $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid-ek huts egin du"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid-ek huts egin du (agian raidtools-ak galdu egin dira?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ez dago partizio nahikorik %d RAID mailarako\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, aldiroko komando programatzailea"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4416,7 +5669,7 @@ msgstr ""
"apmd bateriaren egoera aztertzeko da eta syslog-en bitartez lortzeko.\n"
"Bateria gutxi dagoenean makina itzaltzeko erabil daiteke ere."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4424,7 +5677,7 @@ msgstr ""
"atindarrean dagoenean at komandoan esan bezala, komandoak abiarazten ditu,\n"
"eta batch komandoak abiarazten ditu karga gutxi dagoenean."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4436,7 +5689,7 @@ msgstr ""
"UNIX programa standarra da. vixie cron ezaugarriak gehitzen dituoinarriko\n"
"UNIX cron-era, segurtasun hobea eta konfigurazio tresna ahalmentsuak."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4448,7 +5701,7 @@ msgstr ""
"ebaki-eta-itsatsi operazioak,\n"
"eta konsolako pop-up menuentzako soportea ematen du."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4457,7 +5710,7 @@ msgstr ""
"zerbitzatzeko\n"
"erabilgarri."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4473,7 +5726,7 @@ msgstr ""
"erantzunkizun\n"
"diren zerbitzu guztiak etetzen ditu."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4484,7 +5737,7 @@ msgstr ""
"erabiliaz hauta genezake.\n"
"Makina gehienentzako ezinbestekoa da."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4493,7 +5746,7 @@ msgstr ""
"Irarkolara\n"
"doazen lanak kudeatzen duen zerbitzaria da."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4501,7 +5754,7 @@ msgstr ""
"named (BIND) Domain Name Server-a (DNS) da, honek ostalarien izenak\n"
"IP helbidetan bihurtzen ditu."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4509,7 +5762,7 @@ msgstr ""
"Network File System-ak (NFS) muntatu eta desmontatzen ditu, SMB (Lan\n"
"Manager/Windows), eta NCP (NetWare) muntai puntuak."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4517,7 +5770,7 @@ msgstr ""
"Abiaratzekoan hasteko dauden sare interfazeak aktibatu/desaktibatu\n"
"egiten ditu."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4527,7 +5780,7 @@ msgstr ""
"Zerbitzu honek, NFS zerbitzariaren funtzioa ematen du,\n"
"/etc/exports fitxategiak konfiguratua."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4535,7 +5788,7 @@ msgstr ""
"NFS, TCP/IP sareetan fitxategiak banatzeko protokoloa da.\n"
"Zerbitzu honek, NFS fitxategi-giltza funtzioa ematen du."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4546,7 +5799,7 @@ msgstr ""
"da. Ez da hasiko ez badago konfiguratua, beraz gomendagarria da\n"
"beharrezko ez duten maniketan instalatzea."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4557,7 +5810,7 @@ msgstr ""
"erabiltzen dutena. Portmap zerbitzaria erabili beharda\n"
"RPC mekanismoa erabiltzen duten zerbitzarietan."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4565,7 +5818,7 @@ msgstr ""
"Postfix Mail Transport Agentea da, makinen arteko postari\n"
"lana egiten duen porgrama da."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4574,7 +5827,7 @@ msgstr ""
"zenbakien\n"
"sorrerarako."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4585,7 +5838,7 @@ msgstr ""
"handientzako\n"
"routing protokolo konplexuagoak behar dira."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4593,7 +5846,7 @@ msgstr ""
"Rstat protokoloak sareko edozein makinaren\n"
"funtzionamendua neur lezake."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4601,7 +5854,7 @@ msgstr ""
"Rusers protokoloak sareko edozein makina darabilen\n"
"erabiltzaileak identifikatu lezake."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4609,7 +5862,7 @@ msgstr ""
"Rwho protokoloak kanpoko erabiltzaileei, rwho deabrua erabiltzen dutenen\n"
"zerrenda lortzen du (finger-en antzekoa)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4617,58 +5870,213 @@ msgstr ""
"Syslog-a deabruek erabiltzen dute sistemen log fitxategietan\n"
"log mezuak uzteko. Komenigarria da beti indarrean izatea."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
"Abiatzeko script honek zure usb saguarentzako moduluak kargatzen saiatuko da."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"X Font Zerbitzaria piztu eta itzali egiten du, pizterakoan eta itzaltzerakoan"
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Hautatu zein zerbitzu hasiko den automatikoki abiatzerakoan"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
+msgstr ""
+"Partizio taula ezin irakurri, zeharo galduta:(\n"
+"Partizio txarrak hustutzen saiatuko naiz"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Configure LILO/GRUB"
+msgstr "Konfiguratu LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:26
+msgid "Create a boot floppy"
+msgstr "Abiaratze flppy-a eraiki"
+
+#: ../../standalone/drakboot_.c:28
+msgid "Format floppy"
+msgstr "Formateatu floppy-a"
+
+#: ../../standalone/drakboot_.c:40
+msgid "Choice"
+msgstr "Aukera"
+
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILOren instalazioak porrot egin du. Errore hau izan da:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internet konexioare banaketa gaitua"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
msgid ""
-"Welcome to SILO the operating system chooser!\n"
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"What would you like to do?"
+msgstr "Internet konexiaren banaketaren egokierak eginda.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Taula"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Konfiguratu X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internet konexioaren banaketa ezgaitua"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
+"What would you like to do?"
+msgstr "Internet konexiaren banaketaren egokierak eginda.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Taula"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "Config fitxategia ezin ulertu."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Internet konexio banatua"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
"\n"
+"Would you like to setup the Internet Connection Sharing?"
msgstr ""
-"Ongi etorria SILOra, sistema eragilearen hautatzailera!\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Markatze modua"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Ez duzu sare-egokitzailerik zure sisteman!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Ez duzu konfiguratutako Ethernet egokitzailerik zure sisteman. Mesedez "
+"harwarearen konfigurazio tresna erabili."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
"\n"
-"Aukeren zerrenda ikusteko <TAB> sakatu.\n"
+"$interface\n"
"\n"
-"Kargatzeko, izena idatzi eta <ENTER> sakatu <ENTER> edo itxaron %d segundu "
-"jatorriz hautatutakoa abiatzeko.\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"Konfiguratutako sare-egokitzaile bakarra duzu:\n"
"\n"
+"$interfazea\n"
+"\n"
+"Zure LANa egokitzaile horrekin konfiguratu nahi?"
-#: ../../standalone/drakboot_.c:24
-#, fuzzy
-msgid "Configure LILO/GRUB"
-msgstr "Konfiguratu X"
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr "Mesedez hauta zein sare-egokitzaile izango duzuzure LANerako."
-#: ../../standalone/drakboot_.c:25
-#, fuzzy
-msgid "Create a boot floppy"
-msgstr "Bootdisk-a eraiki"
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Adi, sare egokitzailea dagoeneko konfiguratua.\n"
+"Berriro konfiguratu nahi duzu?"
-#: ../../standalone/drakboot_.c:27
-#, fuzzy
-msgid "Format floppy"
-msgstr "Dena formateatu"
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "Litekeen LAN helbidearen konfliktoa oraingo $_-ren konfigurazioan!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Firewall konfigurazioa aurkitua!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Kasu! Esistitzen den firewall konfigurazioa aurkitu da. Agian\n"
+"eskuzko finkapena egin beharko duzu instalazioa eta gero. Aurrera jo?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Konfigurazioko script-ak, softwarea instalatzen, zerbitzariak abiarazten..."
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakgw_.c:282
#, fuzzy
-msgid "Choice"
-msgstr "ederra"
+msgid "Configuring..."
+msgstr "IDE Konfiguratzen"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Ezin instalatu ipchains RPM urpmi-z."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Ezin instalatu dhcp RPM urpmi-z."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Ezin instalatu linuxconf RPM urpmi-z."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Ezin instalatu bind RPM urpmi-z."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Ezin instalatu caching-nameserver RPM urpmi-z"
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Zorionak!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
#: ../../standalone/draksec_.c:28
msgid ""
@@ -4732,23 +6140,35 @@ msgstr "Hautatu segurtasun neurria"
msgid "Choose the tool you want to use"
msgstr "Instalatu nahi duzun tresna hautatu"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Zein da zure teklatuaren itxura?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Aldatu erresoluzioa"
+
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Aldatu Cd-Rom-a!\n"
+"\n"
+"Mesedez, \"%s\" izena duen Cd-Rom-a sartu unitatean eta gero Ok sakaegizu.\n"
+"Ez baldin baduzu Etsi sakatu Cd-Rom-etiko instalazioa ezeztatzeko."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Zein da zure sagu mota?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "ez dut aurkitu serieko_usb-rik\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emulatu hirugarren botoia?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Zure sagua serieko zein kaietara dago konektatua?"
@@ -4961,15 +6381,873 @@ msgstr "Oztoak bilatzen"
msgid "Finding leaves takes some time"
msgstr "Oztoen bilaketak denbora hartzen du"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Interneten konfigurazioa"
+
+#, fuzzy
+msgid "Internet"
+msgstr "interesgarria"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "ederra"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedia"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "batez"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "Egiaztapena"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Instalatu nahi duzunaren tamaina hautatu"
+
+#~ msgid "Total size: "
+#~ msgstr "Tamaina guztira: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Berkonfiguratu bertoko sarea"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Zure konputagailuaren Internet konexioa banatu dezakezu.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Dana konfiguratua izan da.\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Internetera konektatu modem arruntaz"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Interentera konektatu ISDN-z"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Internetera konektatu DSL-z (edo ADSL-z)"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Internetera konektatu kablez"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Zein partizio mota nahi duzu?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Hautatu \"Instalatu\" GNU/Linux-en aurretiko bertsiorik ez badago "
+#~ "instalatuta,\n"
+#~ "edo distribuzio edo bertsio bat baino gehiago erabili nahi baduzu.\n"
+#~ "\n"
+#~ "Hautatu \"Eguneratu\" Mandrake-ren aurretiko bertsioren bat eguneratu nahi "
+#~ "izanez gero.\n"
+#~ "\n"
+#~ "\n"
+#~ "Hauta:\n"
+#~ "\n"
+#~ " - Gomendatua: inoiz ez baduzu Linux-ik instalatu.\n"
+#~ "\n"
+#~ " - Norberarena: GNU/Linux ezagutzen baduzu, gero makinaren erabilera "
+#~ "nagusia hauta\n"
+#~ " dezakezu. behean ikus.\n"
+#~ "\n"
+#~ " - Aditua: GNU/Linux menperatzen duzula suposatzen da eta\n"
+#~ " oso berezitua de instalazioa egin nahi duzula. \"Norberarena\"\n"
+#~ " instalazio motan bezala, zure makinaren erabilera hautatu ahal izango "
+#~ "duzu zure sistemarako.\n"
+#~ " Baina mesedez, EZ HAUTA HAU ZERTAN ZABIZENEN EZ BADAKIZU!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "Orain, Linux-Mandrake sistema zein partiziotan instalatu nahi duzun\n"
+#~ "hauta dezakezu, aldez aurretik partizioak eginak badituzu (aurretikfrom a\n"
+#~ "instalatutako GNU/Linux-an edo bestelako partizio tresna batek egindakoak).\n"
+#~ "Bestera, disko zurrunaren partizioak definitu behar dira. Hau egoterakoan\n"
+#~ "konputagailuaren disko zurruna erabilera desberdinetarako area "
+#~ "desberdinetan\n"
+#~ "zatitzen da.\n"
+#~ "\n"
+#~ "\n"
+#~ "Partizio berriak egin nahi izanez gero, erabili \"Auto allocate\" "
+#~ "etahorrela\n"
+#~ "Linux-ek partizio berriak egingo ditu automatikoki. Zatitu beharreko diskoa\n"
+#~ "hautatzuko \"hda\" kliklatu lehenengo IDE diskorako,\n"
+#~ "\"hdb\" bigarrenerako edo \"sda\" lehenengo SCSI diskorako eta horrela ere "
+#~ "urrengokoak.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ohiko partizioak dira: root (/), direktorioen ierarkian sistemaren "
+#~ "fitxategien hasiera\n"
+#~ "puntua dena, eta /boot,konputagailua pizterakoan\n"
+#~ "sistema eragilea abiarazteko beharrezko diren\n"
+#~ "fitxategiak duena.\n"
+#~ "\n"
+#~ "\n"
+#~ "Partizio prozeduraren ekintzak atzerako biderik izan ohi ez dutenez,\n"
+#~ "esperientziarik ez duenarengan beldurra eta larritasuna eragin diezaioke. "
+#~ "DiskDrake-k\n"
+#~ "prozedura errazten du izua uxatzeko. Dokumentazioa kontsultatu eta\n"
+#~ "har ezazu behar duzun denbora hasi aurretik.\n"
+#~ "Teklatua erabiliz edozien aukeraz baliatu zaitezke: partizioetatiknabigatu\n"
+#~ "Tab eta Gora/Bera geziez. Behin partizioa hautatua, zera erabil zenezake:\n"
+#~ "\n"
+#~ "- Ctrl-c partizio berria eraikitzeko (partizio hutsa hautatzekotan)\n"
+#~ "\n"
+#~ "- Ctrl-d partizioa ezabatzeko\n"
+#~ "\n"
+#~ "- Ctrl-m muntai puntua ezartzeko\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Berriki ezarritako edozein partizio formateatu beharko da erabilgarria\n"
+#~ "izateko (formateatu esan nahi du sistemen fitxategiak ezartzea). Orain, "
+#~ "agian\n"
+#~ "esistitzen direnetako zenbait partizio formateatu nahiko duzu, bertako "
+#~ "datuak\n"
+#~ "ezabatzeko. Oharra: aurretik zeuden partizioak formateatzea ez da "
+#~ "beharrezkoa\n"
+#~ "batez ere, mantendu nahi dituzun fitxategi eta datuak gordetzen baditu.\n"
+#~ "Normalean /home eta /usr/local dira gordetzen direnak."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Hautatutako paketeak instalatzen ari dira. Operazio honek\n"
+#~ "minutu gutxi batzuk iraun lezake, baina sistema eguneratzea hautatu\n"
+#~ "baduzu are gehiago iraun lezake operazioak eguneratzea egin beharko\n"
+#~ "delako."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "DrakX-ek ez du sagurik aurkitzen ez badu, edo egindakoa\n"
+#~ "aztertu nahi baduzu, gainean duzun saguen zerrenda duzu\n"
+#~ "eskura.\n"
+#~ "\n"
+#~ "\n"
+#~ "DrakX'-en aukerekin ados bazaude settings, 'Ados' sakatu.\n"
+#~ "Bestela, zure saguarekin antza handiena zukeen sagua hautatu\n"
+#~ "menuan.\n"
+#~ "\n"
+#~ "\n"
+#~ "Seriean konektatutako sagua izanez gero, DrakX-i\n"
+#~ "serie-kaia adierazi beharko diozu."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Atal hau bertoko sarea (LAN) edo modem-a konfiguratzeko\n"
+#~ "da\n"
+#~ "\n"
+#~ "Hautatu \"Bertoko LAN\" eta DrakX-ek\n"
+#~ "zure makinako Ethernet egokitzailea bilatzen saiatuko da. PCI egokitzaileak\n"
+#~ "automatikoki bilatu eta abiarazten dira.\n"
+#~ "Dena den, zure periferikoa ISA bada, autodetekzioak huts egingo du,\n"
+#~ "eta orduan agertuko zaizun zerrendatik hautatu beharko duzu driver-a.\n"
+#~ "\n"
+#~ "\n"
+#~ "SCSI egokitzaileentzat gertatzen den moduan, lehen aldian driverrak\n"
+#~ "egokitzailea frogatu lezake bere kabuz, bestela aukerak adierazi\n"
+#~ "beharko dizkiozu driver-ari, aukerak dokumentazioan edo harwarean\n"
+#~ "aurki ditzakezu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Linux-Mandrake sistema sare batean dagoen konputagailuan\n"
+#~ "instalatuz gero, sare administrariak beharrezko duzun informazioa eman "
+#~ "beharko dizu\n"
+#~ "(IP helbidea, sareko submaskara\n"
+#~ "edo netmask, eta ostalariaren izena). Zure sare pribatua\n"
+#~ "instalatzen ari bazara helbidea hautatu beharko\n"
+#~ "duzu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Hautatu \"Deitu modem-ez\" eta modem bitarteko internet\n"
+#~ "konexioa konfiguratuko da. DrakX-ek, zure modem-a bilatzen saiatuko da\n"
+#~ "hau huts eginez gero aukeratu beharko duzu modem-aren serieko kaia\n"
+#~ "zein den."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linux-ek irarkola mota ugari erabil ditzake. Bakoitzak\n"
+#~ "bere egokiera behar du. Dena den kontuan izan irarkolaren isatsak\n"
+#~ " 'lp' izena jatorriz ezartzen duela; beraz izen hau duen irarkola\n"
+#~ "beharko duzu; baina zenbait izen eman ditzakezu irarkola berari\n"
+#~ "izenok '|' karaktereaz banatuz gero.\n"
+#~ "Beraz esanguratsua egingo zaizun izena eman nahi badiozu irarkolari "
+#~ "aurretik\n"
+#~ "jarri, adibidea: \"Nire irarkola|lp\".\n"
+#~ "Izenean \"lp\" duen irarkola jatorrizkoa izanen da.\n"
+#~ "\n"
+#~ "\n"
+#~ "Irarkola zuzenean konputagailuari lotuta egonez gero hautatu\n"
+#~ "\"Bertoko irarkola\". Gero zein kaietara lotuta dagoen adierazi\n"
+#~ "beharko duzu, eta iragazki egokia hautatu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Urruneko Unix makinari lotutako irarkola erabili nahi izanez gero,\n"
+#~ "hautatu \"Urruneko lpd\". Indarrean sartzeko\n"
+#~ ", ez da beharrezko erabiltzaile izena ez eta pasahitzik, baina\n"
+#~ "zerbitzariaren inprimitze isatsaren izena jakin beharko duzu.\n"
+#~ "\n"
+#~ "\n"
+#~ "SMB irarkola erabili nahi izanez gero (hau da,\n"
+#~ "urruneko Windows 9x/NT makinan kokatutakoa),\n"
+#~ "SMB izena (ez TCP/IP izena)eman beharko duzu, eta agian IP helbidea ere,\n"
+#~ "gehi erabiltzaile izena, lantaldea eta irakola erabiltzeko beharrezkoa\n"
+#~ "den pasahitza, eta, nola ez, irarkolaren izena. Bardin\n"
+#~ "NetWare irarkolentzako, baina kasu honetan ez duzu lantalde izenik eman "
+#~ "beharrik."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Oso gomendatua da hemen \"Bai\" erantzutea. Microsoft Windows\n"
+#~ "gerorago instalatzekotan boot sektorea ezabatuko dizu.\n"
+#~ "Esan zaizun bezala boot diskorik egin ez baduzu ezin izango duzu\n"
+#~ "GNU/Linux abiatu."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Higiarazi pilotatxoa!"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "Instalatu/Berreskuratu"
+
+#~ msgid "Rescue"
+#~ msgstr "Berreskuratu"
+
+#~ msgid "Germany"
+#~ msgstr "Germaniarra"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Germaniarra (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "Zer egin nahiko zenuke?"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Aldaketak ahaztu?"
+
+#~ msgid "Cable connection"
+#~ msgstr "Kablearen konexioa"
+
+#~ msgid "Host name:"
+#~ msgstr "Ostalariaren izena:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Zein da zure sagu mota?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Erresoluzio automatikoak"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Eskuragarri dauden erresoluzioak bilatzearren, zenbaitzuk frogatuko ditut.\n"
+#~ "Pantailak kliskatuko du...\n"
+#~ "Irten zaitezke nahi baduzu, bukatzerakoan beep-a entzengo duzu"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Eskuragarri dauden erresoluzioak aurkitzen saia naiteke (eg: 800x600).\n"
+#~ "Batzutan honen ondorioz makina eskegi daiteke.\n"
+#~ "Saiatuko naiz??"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Modu egokirik ezin aurkitu\n"
+#~ "Bestelako txartel edo monitoreaz saia zaitez"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Bilatu erresoluzio automatikoak"
+
+#~ msgid "curly"
+#~ msgstr "kizkurra"
+
+#~ msgid "default"
+#~ msgstr "Jatorrizkoa"
+
+#~ msgid "tie"
+#~ msgstr "gorbata"
+
+#~ msgid "brunette"
+#~ msgstr "brunette"
+
+#~ msgid "girl"
+#~ msgstr "neska"
+
+#~ msgid "woman-blond"
+#~ msgstr "ile-horia"
+
+#~ msgid "automagic"
+#~ msgstr "automagikoa"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs-aren muntaiak porrot egin du"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Enkriptatua"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "Hartu disko zurrun osoa"
+
+#~ msgid "Normal"
+#~ msgstr "Arrunta"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "Sare lana ez egokitu"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Zure sistemarako bertoko LAN sarea konfiguratu nahi duzu?"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX-ek, XFree 3.3 eta XFree 4.0.-rako konfigurazio fitxategiak eratuko "
+#~ "ditu.\n"
+#~ "Jatorriz, 4.0 zerbitzaria erabiltzen da zure txartelak berau jasanez gero.\n"
+#~ "\n"
+#~ "XFree 3.3 mantendu nahi?"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB Sagua"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB sagua (2 botoi)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB sagua(3 botoi edo gehiago)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB sagua"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "USB sagua (2 botoi)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB sagua (3 botoi edo gehiago)"
+
+#~ msgid "Logitech MouseMan/FirstMouse"
+#~ msgstr "Logitech MouseMan/FirstMouse"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB Mouse"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Mouse (3 botoi edo gehiago)"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "Ostalari izenik baduzu?"
+
+#~ msgid "Show less"
+#~ msgstr "Gutxiago erakutsi"
+
+#~ msgid "Show more"
+#~ msgstr "Gehiago erakutsi"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "LANen espezifikazioak"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "Orain erabaki dezakezu zein C motako sarea erabili.\n"
+
+#~ msgid "Network:"
+#~ msgstr "Sarea:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "Internet konexioaren banaketa - $tresnaren egokiera"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Hurrengo interfacea konfiguratuko da:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "Dana konfiguratua!"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Zein da zure teklatuaren itxura?"
+
+#~ msgid "Configure my card"
+#~ msgstr "Konfiguratu nire txartela"
+
+#~ msgid "pptp alcatel"
+#~ msgstr "pptp alcatel"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Saiatuko naiz PCMCIA txartelak bilatzen?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Saiatuko naiz %s unitateen bilaketan?"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "Txikia (%dMB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Modem-aren konfigurazioa"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr ""
+#~ "Zure sistemarako modem-markazioaren bitartezko sare-lana konfiguratu nahi "
+#~ "duzu?"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Zure sistemarako bertoko ISDN konexioa konfiguratu nahi duzu?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Saiatuko naiz PCI unitateen bilaketan?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "root partizioaren bila."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: hau ez da root partizioa, mesedez aukeratu besteren bat."
+
+#~ msgid "No root partition found"
+#~ msgstr "Ez dut aurkitu root partiziorik"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "NIS domeinurik gabe ezin erabili broadcast"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Mesedez hauta zein partizio erabili nahi duzu root partizio modura."
+
+#~ msgid "Autologin at startup"
+#~ msgstr "Autologin abiatzerakoan"
+
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Autologin - Hauta jatorrizko erabiltzailea"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "Windows partiziorik ez duzu!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Linux4win-erako leku nahikorik ez duzu"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automatikoa"
+
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ongi etorria LILOra, sistema eragilearen hautatzailera!\n"
+#~ "\n"
+#~ "Aukeren zerrenda ikusteko <TAB> sakatu.\n"
+#~ "\n"
+#~ "Kargatzeko, izena idatzi eta <ENTER> sakatu <ENTER> edo itxaron %d segundu "
+#~ "jatorriz hautatutakoa abiatzeko.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Ongi etorria SILOra, sistema eragilearen hautatzailera!\n"
+#~ "\n"
+#~ "Aukeren zerrenda ikusteko <TAB> sakatu.\n"
+#~ "\n"
+#~ "Kargatzeko, izena idatzi eta <ENTER> sakatu <ENTER> edo itxaron %d segundu "
+#~ "jatorriz hautatutakoa abiatzeko.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILOren aukera nagusiak"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Hemen daude SILOko hurrengo sarrerak.\n"
+#~ "Zenbait gehitu edo daudenak aldatu dezakezu."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Etiketa hau dagoeneko erabiltzen da"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILOren instalazioak porrot egin du. Errore hau izan da:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX-ek PCI edo SCSI egokitzaileak bilatzen saiatuko da aldez aurretik.\n"
+#~ "Aurkitzekotan eta drivera(k) ezagutz geronautomatikoki ezarriko ditu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Zure SCSI egokitzailea ISA bada, edo DrakX-ek ezagutzen ez duen\n"
+#~ "PCIa bada, edo SCSI egokitzailerik ez baduzu, orduan zera galdetuko zaizu;\n"
+#~ "ia SCSI egokitzailerik duzun ala ez.\n"
+#~ "Ez badaukazu \"Ez\" erantzun. Bat edo gehiago baduzu,\n"
+#~ "erantzun \"Bai\". driver zerrenda agertuko zaizu, eta bertatik bat hautatu\n"
+#~ "beharko duzu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Driver-a hautatu ondoren, DrakX-ek aukerak eman nahi badiozu\n"
+#~ "galdetuko dizu. Lehenengo, utzi driver-ari harwarea frogatzen:\n"
+#~ "gehienetan ongi dabil.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ez badabil, zure Windows-aren (hau bada zure sistema) harwarearen "
+#~ "informazioa\n"
+#~ "dokumentaziotik lor dezakezu, instalazio gidan iradokitzen denez.\n"
+#~ "Hor izango dira driver-ari eman beharreko\n"
+#~ "aukerak."
+
+#~ msgid "Shutting down"
+#~ msgstr "Itzaltzen"
+
#~ msgid "useless"
#~ msgstr "erabileza"
#~ msgid "garbage"
#~ msgstr "zarama"
-#~ msgid "Recommended"
-#~ msgstr "Gomendatua"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5134,18 +7412,12 @@ msgstr "Oztoen bilaketak denbora hartzen du"
#~ msgid "Hurt me plenty"
#~ msgstr "Dena niretzat"
-#~ msgid "Which usage do you want?"
-#~ msgstr "Zein erabilera nahi duzu?"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "Zeintzuk pakete instalatu nahi duzu"
#~ msgid "Local LAN"
#~ msgstr "Bertoko LAN"
-#~ msgid "Dialup with modem"
-#~ msgstr "Modemarekin markatu"
-
#~ msgid "Installation CD Nr 1"
#~ msgstr "Instalazioko CD Nr 1"
@@ -5155,9 +7427,6 @@ msgstr "Oztoen bilaketak denbora hartzen du"
#~ msgid "User name:"
#~ msgstr "Erabiltzailearen izena"
-#~ msgid "Partitioning failed: no root filesystem"
-#~ msgstr "Partizioak huts egin du: root fitxategi-sistemik ez"
-
#~ msgid "Going to install %d MB. You can choose to install more programs"
#~ msgstr ""
#~ "%d MB instalatzera noa. Programa gehiago instalatzea hautatu dezakezu"
@@ -5201,9 +7470,6 @@ msgstr "Oztoen bilaketak denbora hartzen du"
#~ msgid "server"
#~ msgstr "zerbitzaria"
-#~ msgid "Local Printer Options"
-#~ msgstr "Bertoko irarkolaren aukerak"
-
#~ msgid ""
#~ "Failed to create an HTP boot floppy.\n"
#~ "You may have to restart installation and give ``%s'' at the prompt"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 12fa50673..581777785 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 17:14+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-05-06 12:42GMT+0200\n"
"Last-Translator: Kim Enkovaara <kim.enkovaara@iki.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
@@ -14,43 +14,91 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.5(devel)\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Yleinen"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "NДytЖnohjain"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Valitse nДytЖnohjain"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Valitse X-palvelin:"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X-palvelin"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "XFree86 palvelin: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "MinkДtyyppisen tietueen haluat lisДtД"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Asennuksen jДlkeiset toiminnot"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Valitse nДytЖnohjaimen muistimДДrД"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Valitse optioita palvelimelle"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "NДyttЖ"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -73,39 +121,40 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman nДyttЖsi. Jos epДrЖit, valitse pienempi taajuus."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "NДyttЖД ei ole asetettu"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "NДytЖnohjainta ei ole vielД asetettu"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "NДytЖn resoluutiota ei ole vielД valittu"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Haluatko kokeilla asetuksia?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Varoitus: kokeileminen on vaarallista tДllД nДytЖnohjaimella"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Kokeile asetuksia"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -113,186 +162,168 @@ msgstr ""
"\n"
"kokeile joidenkin parametrien muuttamista"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Tapahtui virhe:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Lopetan %d sekunnissa"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Onko tДmД oikea asetus?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Tapahtui virhe, kokeile joidenkin parametrien vaihtamista"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automaattiset resoluutiot"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Jotta olemassaolevat resoluutiot lЖydetДДn ohjelma kokeilee eri "
-"resoluutioita.\n"
-"NДyttЖsi vДlДhtelee tДmДn aikana...\n"
-"Voit laittaa nДytЖn pois pДДltД jos haluat, kun haku on valmis ohjelma "
-"piippaa."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Resoluutio"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Valitse resoluutio ja vДrisyvyys"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "NДytЖnohjain: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 palvelin: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "NДytД kaikki"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Resoluutiot"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Ohjelma voi etsiД olemassaolevat resoluutiot (esim: 800x600).\n"
-"TДmД voi joskus lukita koneen.\n"
-"Haluatko yrittДД?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Toimivia nДyttЖtiloja ei lЖytynyt\n"
-"YritД toista nДytЖnohjainta tai nДyttЖД."
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "NДppДimistЖn jДrjestys: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiiren tyyppi: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiiren laite: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "NДyttЖ: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "NДytЖn vaakapoikkeutus: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "NДytЖn pystypoikkeutus: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "NДytЖnohjain: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "VДrisyvyysasetukset"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Resoluutiot"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 palvelin: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 palvelin: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Valmistelen X-Window:n asetuksia"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Vaihda nДyttЖД"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Vaihda nДytЖnohjainta"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Vaihda palvelimen optioita"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Vaihda resoluutiota"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Automaattinen resoluutioiden haku"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "NДytД tiedot"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Kokeile uudelleen"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Lopeta"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "MitД haluat tehdД?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Unohda muutokset?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "SДilytД nykyiset IP-verkon asetukset"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Kirjaudu uudelleen %s:n aktivoidaksesi muutokset"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Kirjaudu ulos ja kДytД sitten Ctrl-Alt-BackSpace yhdistelmДД"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X kДynnistyksessД"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -300,227 +331,227 @@ msgstr ""
"X voidaan laittaa kДynnistymДДn automaattisesti kДynnistyksen yhteydessД.\n"
"Haluatko kДynnistДД X:n automaattisesti?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"X voidaan laittaa kДynnistymДДn automaattisesti kДynnistyksen yhteydessД.\n"
+"Haluatko kДynnistДД X:n automaattisesti?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Valitse uusi koko"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Valitse haluamasi tyЖkalu"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 vДriД (8 bittiД)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tuhatta vДriД (15 bittiД)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tuhatta vДriД (16 bittiД)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miljoonaa vДriД (24 bittiД)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miljardia vДriД (32 bittiД)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kt"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kt"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 Mt"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 Mt"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 Mt"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 Mt"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 Mt tai enemmДn"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Perus-VGA, 640x480 @ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-yhteensopiva, 1024x768 @ 87 Hz lomitettu (ei 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 @ 87 Hz lomitettu, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Laajennettu Super VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Lomittamaton SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Korkeataajuuksinen SVGA, 1024x768 @ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "NДyttЖ, joka pystyy 1280x1024 @ 60 Hz tilaan"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "NДyttЖ, joka pystyy 1280x1024 @ 74 Hz tilaan"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "NДyttЖ, joka pystyy 1280x1024 @ 76 Hz tilaan"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "NДyttЖ, joka pystyy 1600x1200 @ 70 Hz tilaan"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "NДyttЖ, joka pystyy 1600x1200 @ 76 Hz tilaan"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "cirly"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "oletus"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "tie"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunetti"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "girl"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "nainen-blondi"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automaattinen"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "EnsimmДinen sektori kДynnistysosiolla"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "EnsimmДinen levyn sektori (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "LILO/grub asennus"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa kДyttЖjДrjestelmДn lataajan?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub asennus"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Ei mikДДn"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "MitД kДynnistysohjelmaa haluat kДyttДД?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "KДynnistyslataajan pДДasetukset"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "KДynnistyslaite"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei toimi vanhoissa BIOS:ssa)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Tiivis"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Odota ennen oletuskДynnistystД"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "NДyttЖtila"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Odota ennen oletuskДynnistystД"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Rajoita komentorivioptioita"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "rajoita"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "KДynnistyslataajan pДДasetukset"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyЖdyllinen ilman salasanaa"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "YritД uudelleen"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -528,167 +559,386 @@ msgstr ""
"Eri asetustietueet.\n"
"Voit lisДtД uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "LisДД"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "MinkДtyyppisen tietueen haluat lisДtД"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "Muu kДyttЖjДrjestelmД"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "MinkДtyyppisen tietueen haluat lisДtД"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "Muu kДyttЖjДrjestelmД"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "`Kuva'-tiedosto"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "LiitД"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Oletus"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Poista tietue"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "TyhjДД otsikkoa ei sallita"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Otsikko on jo kДytЖssД"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "LЖysin %s %s liitДntДД"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Onko sinulla muita?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Onko koneessa %s liityntДД?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ei"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "KyllД"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Katso laitteistotietoja"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Asetan ajuria %s ohjaimelle %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(moduli %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "MitД %s:n ajuria kokeillaan?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Joissakin tapauksissa %s-ajuri tarvitsee lisДtietoja toimiakseen kunnolla,\n"
+"joskin tavallisesti se toimii hyvin ilmankin. Haluaisitko antaa ajurille\n"
+"lisДmДДreitД vai annatko sen itse etsiД tarvitsemansa tiedot? Joskus haku\n"
+"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Automaattihaku"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "LisДasetukset"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Voit antaa lisДasetuksia modulille %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Voit antaa lisДasetuksia modulille %s.\n"
+"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
+"Esimerkiksi, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Moduulin optiot:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Modulin %s lataaminen epДonnistui.\n"
+"Haluatko yrittДД muilla asetuksilla?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Tervetuloa %s kayttojarjestelmanvalitsijaan!\n"
+"\n"
+"Listataksesi mahdolliset valinnat paina <TAB>.\n"
+"\n"
+"Ladataksesi jonkun niista kirjoita sen nimi ja paina <ENTER>\n"
+"tai odota %d sekuntia oletuskaynnistysta.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Tervetuloa GRUB k└ytt■j└rjestelm└nvalitsijaan!"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "K└yt└ %c ja %c n└pp└imi└ valitaksesi korostetun tietueen"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+"Paina enter k└ynnist└└ksesi valitun k└ytt■j└rjestelm└n, 'e' muokataksesi"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komennot ennen k└ynnistyst└, tai 'c' komentoriville"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Korostettu tietue k└ynnistet└└n automaattisesti %d sekunnissa."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "TyЖpЖytД"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "KДynnistysvalikko"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Lopetan %d sekunnissa"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Poista"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tyyppi"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Liitospaikka"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Kirjoita /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Vaihda eksperttitilaan"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Palauta tiedostosta"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Tallenna tiedostoon"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Palauta levykkeeltД"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "TyhjennД kaikki"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Alusta kaikki"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Kaikki primДДriosiot kДytetty"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida lisДtД"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -696,59 +946,63 @@ msgstr ""
"Voidaksesi luoda lisДД osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Kirjoita osiotaulu"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Uudelleenlataa"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "TyhjД"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Muu"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "TyhjД"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Muu"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "TiedostojДrjestelmien tyypit:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Yksityiskohdat"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -760,17 +1014,17 @@ msgstr ""
"EnsimДiseksi suositellaan sen koon muutamista\n"
"(klikkaa osiota ja valitse sitten \"Uusi koko\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -780,78 +1034,78 @@ msgstr ""
"sektoria on tarpeeksi)\n"
"levyn alkuun"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tДmД on vaarallinen toiminto"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Virhe"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Liitospiste:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Laite:"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Aloita: sektori %s\n"
# mat
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Koko: %d Mt"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "SylinteristД %d sylinteriin %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback tiedostot: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -859,80 +1113,80 @@ msgstr ""
"Osoiolta kДynnistetДДn oletuksena\n"
" (MS-DOS kДynnistys, ei lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Klikkaa osiota"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Koko: %d Mt\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteriД, %s lukupДДtД, %s sektoria\n"
# mat
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "vДylДssД %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "LiitД"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktiivinen"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "LisДД RAID:n"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Poista RAID:ta"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Muokkaa RAID:a"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "KДytД loopback-tiedostoa"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Valitse toiminne"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -944,7 +1198,7 @@ msgstr ""
"Joko kДytДt LILO:a ja se ei toimi, tai et kДytД LILO:a jolloin et tarvitse "
"/boot hakemistoa"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -955,68 +1209,70 @@ msgstr ""
"eikД sinulla ole /boot osiota.\n"
"Jos haluat kДyttДД LILO kДynnistyksenhallintaa, lisДД /boot osio."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
+#, fuzzy
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Olet valinnut ohjelmallisen RAID-osion juuriosioksi (/).\n"
"MikДДn kДynnistyslataaja ei osaa kДsitellД tДtД ilman /boot osiota.\n"
"Varmista ettД lisДsit /boot osion jos haluat kДyttДД liloa tai grub:a"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "KДytД sijalla ``%s'':ДД"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "KДytД ensin ``Irroita'' komentoa"
# mat
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Osion %s tyypin vaihtamisen jДlkeen kaikki tiedot hДviДvДt"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Muuta osiotyyppiД"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "MinkД osiotyypin haluat?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
-msgid "You can't use ReiserFS for partition smaller than 32MB"
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
# mat
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liittДД loopback-tiedoston %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liittДД laitteen %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1025,140 +1281,145 @@ msgstr ""
"Poista loopback-tiedosto ensin"
# mat
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Osion %s alustuksen jДlkeen kaikki tiedot hДviДvДt"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Kaikkien osioiden alustuksen jДlkeen,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "kaikki tieto osioilla tuhoutuu"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "SiirrД"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirtДД?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirtДД?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "SiirrДn"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "SiirrДn osiota..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun tДytyy kДynnistДД kone uudelleen jotta muutos tulee voimaan"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Lasken fat-tiedostojДrjestelmДn rajoja"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "MinkД osiotyypin haluat?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muutoksen jДlkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "Mt"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "TiedostojДrjestelmД: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Etuoikeus: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida kДyttДД loopback-osiona"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo kДytЖssД toiselle loopbackille, valitse toinen"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. KДytД sitД?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1166,11 +1427,11 @@ msgstr ""
"Varmuskopio-osiotaululla ei ole samaa kokoa\n"
"Jatka silti?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1178,78 +1439,78 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot hДviДvДt"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "YritДn osiotalulun palautusta"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "laite"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "taso"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon lisДtДДn"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "uusi"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epДonnistui"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ДД tyyppiД %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs:n liittДminen epДonnistui"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "liittДminen epДonnistui: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Liitospisteen pitДД alkaa /-merkillД."
# mat
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Osiolla on jo liitospiste %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Rengasmaisia liitoksia %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe avattaessa tiedostoa %s kirjotettavaksi: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1257,75 +1518,81 @@ msgstr ""
"On tapahtunut virhe - ei lЖytynyt laitteita joille luotaisiin uusi "
"tiedostojДrjestelmД. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Sinulla ei ole yhtДДn osiota!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Valitse haluttu kieli asnnukseen ja jДrjestelmДn kДyttЖЖn."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Valitse nДppДimistЖn jДrjestys allaolevasta listasta"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
-"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
-"\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Valitse \"Asenna\" jos sinulla ei ole Linuxia ennestДДn asennettuna,\n"
-"tai jos haluat kДyttДД useita eri levitysversioita.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Valitse \"PДivitД\", jos haluat pДivittДД vanhaa Mandraken versiota Linux:\n"
-"5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios),\n"
-"Gold 2000 tai 7.0 (Air).\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
-"Valitse:\n"
-" - Automaattinen (suositeltu): Jos et ole koskaan asentanut linuxia ennen, "
-"valitse tДmД. HUOMAA:\n"
-" verkkoa ei aseteta tДssД asennuksessa, kДytД \"LinuxConf\" asettaaksesi "
-"verkon\n"
-" asennuksen jДlkeen.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Muokattu: Jos tunnet GNU/Linuxin ennestДДn, voit valita erikseen koneen "
-"kДyttЖtarkoituksen.\n"
-" Katso alta lisДtietoja.\n"
"\n"
-" - Ekspertti: Valinta edellyttДД, ettД tunnet GNU/Linuxin ennestДДn hyvin "
-"ja haluat tehdД\n"
-" erittДin mukautetun asennuksen. MyЖs tДssД luokassa voit valita koneesi "
-"kДyttЖtarkoituksen.\n"
-" Mutta ДlД valitse tДtД, JOS ET TIEDд MITд TEET!\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1333,12 +1600,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Valitse:\n"
"\n"
@@ -1346,190 +1614,378 @@ msgstr ""
"kДyttЖtarkoituksen.\n"
" Katso alta lisДtietoja.\n"
"\n"
+"\n"
" - Ekspertti: Valinta edellyttДД, ettД tunnet GNU/Linuxin ennestДДn hyvin "
"ja haluat tehdД\n"
" erittДin mukautetun asennuksen. MyЖs tДssД luokassa voit valita koneesi "
"kДyttЖtarkoituksen.\n"
-" Mutta ДlД valitse tДtД, JOS ET TIEDд MITд TEET!\n"
+" Mutta ДlД valitse tДtД, JOS ET TIEDд MITд TEET!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
+msgstr ""
+
+#: ../../help.pm_.c:84
+msgid ""
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:108
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"DrakX yrittДД ensin etsiД yhtД tai useampaa PCI\n"
-"SCSI-ohjainta. Jos ohjelma lЖytДД ohjaimia ja tietДД mitД\n"
-"ajureita ne kДyttДvДt ohjaimet otetaan kДyttЖЖn automaattisesti.\n"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
"\n"
-"Jos SCSI-ohjaimesi on ISA-vДylДssД, tai PCI-vДylДssД, mutta\n"
-"DrakX ei tiedД mitД ajuria kДyttДisi ohjaimelle, tai jos sinulla ei ole\n"
-"SCSI ohjaimia ollenkaan, sinulta kysytДДn erikseen onko sinulla\n"
-"ohjaimia vai ei. Jos ohjaimia ei ole, vastaa \"Ei\". Jos sinulla on yksi\n"
-"tai useampia, vastaa \"KyllД\". Saat tДmДn jДlkeen listan ajureista, joista\n"
-"sinun tulee valita yksi.\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
"\n"
"\n"
-"Valittuasi ajurin DrakX kysyy haluatko mДДritellД ajurille\n"
-"optioita. Anna ajurin ensin itse hakea laitteita:\n"
-"tДmД toimii yleensД hienosti.\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
"\n"
-"Jos tДmДkДДn ei toimi ДlД unohda tietoja laitteistasi joita voit saada\n"
-"ohjeista tai Windowsista (jos sinulla on se asennettuna),\n"
-"kuten asennusohje neuvoo. NДmД ovat asetuksia joita sinun tulee\n"
-"antaa ajurille."
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:218
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-m to set the mount point\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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"TДssД vaiheessa sinun tulee valita partitio tai partitiot joille haluat\n"
-"asentaa Linux-Mandrake jДrjestelmДsi, jos ne ovat jo olemassa\n"
-"(edellisestД Linux asennuksesta tai jostain muusta osiointityЖkalusta).\n"
-"Muissa tapauksissa kiintolevy tulee osioida. Operaatiossa kiintolevy\n"
-"loogisesti osioidaan eri kДyttЖtarkoituksiin.\n"
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
"\n"
-"Jos sinun tДytyy luoda uusia osioita kДytД \"Automaattinen varaus\"\n"
-"toimintoa osioiden luonnin automatisoimiseksi. Voit valita osioitavan levyn\n"
-"klikkaamalla \"hda\":ta ensimmДiselle IDE-levylle, \"hdb\":ta toiselle\n"
-"tai \"sda\":ta ensimmДiselle SCSI-levylle jne.\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Kaksi yleistД osiota ovat: juurosio (/), joka on jДrjestelmДn\n"
-"kДynnistymispiste tiedostojДrjestelmДssД, ja /boot joka sisДltДД kaikki\n"
-"tarpeelliset tiedostot jДrjestelmДn kДynnistДmiseksi, kun se laitetaan\n"
-"kДyntiin.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"Koska toimenpiteen muutoksia ei yleensД voida peruuttaa, osiointi voi\n"
-"olla pelottavaa ja vaikeaa uudellen kДyttДjДlle. DiskDrake-ohjelma\n"
-"helpottaa toimenpidettД. Lue dokumentaatiota ja tutki asia huolella\n"
-"ennenkuin jatkat.\n"
"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
-"Voit kДyttДД kaikkia toimintoja nДppДimistЖltД: selaa osiota kДyttДen\n"
-"Tab ja YlЖs/Alas nuolia. Kun osio on valittu, voit kДyttДД:\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c luodakdesi uuden osion (kun tyhjД osio on valittu)\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-d tuhotaksesi osion\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-m asettaaksesi liitospisteen\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Kaikki uudelleenmДДritellyt uudet osiot tulee alustaa, jotta niitД voidaan\n"
-"kДyttДД (alustus tarkoittaa tiedostojДrjestelmДn luomista). Samalla\n"
-"voit uudelleenalustaa joitain osioita joilta haluat poistaa tiedot.\n"
-"Huomaa: Olemassaolevien partitioiden alustus ei ole pakollista,\n"
-"varsinkin jos ne sisДltДvДt ennestДДn tiedostoja jotka haluat sДilyttДД.\n"
-"Normaalisti sДilytettДviД ovat /home ja /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Voit nyt pakettien ryhmДn joita haluat asentaa\n"
"tai pДivittДД.\n"
@@ -1540,133 +1996,153 @@ msgstr ""
"Listan alaosassa on \"YksittДisten pakettien valinta\" optio, jos\n"
"haluat selata yli 1000 pakettia lДpi."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Jos sinulla on kaikki CD:t allaolevalta listalta, paina Ok.\n"
"Jos sinulla ei ole yhtДДn levyistД, paina Peruuta.\n"
"Jos jotkut levyistД puuttuvat, poista niiden valinnat, ja paina Ok"
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"Valitsemiasi paketteja asennetaan. TДmДn vaiheen tulisi kestДД\n"
-"muutamia minuutteja, ellet ole valinnut olemassaolevan jДrjestelmДn\n"
-"pДivitystД. PДivitys kestДД kauemmin jopa ennenkuin itse pДivitys\n"
-"alkaa."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Jos DrakX ei lЖytДnyt hiirtДsi tai haluat tarkistaa mitД ohjelma\n"
-"teki sinulle, nДet listan hiiristД ylДpuolella.\n"
-"\n"
-"\n"
-"Jos olet samaa mieltД DrakX:n asetuksista hyppДД haluamaasi osioon\n"
-"klikkaamalla valikkoa vasemmalla. Muuten valitse valikosta hiiren\n"
-"tyyppi jonka uskot olevan lДhinnД omaa hiirtДsi.\n"
-"\n"
-"\n"
-"Jos sinulla on sarjaporttihiiri sinun tulee myЖs kertoa DrakX:lle\n"
-"mihin porttiin hiiri on kytketty."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Valitse oikea portti. Esimerkiksi COM1 portti MS Windowsissa\n"
"on nimeltДДn ttyS0 Linuxissa."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"TДmД osio on paikallisverkon tai modeemin asetuksia varten.\n"
-"\n"
-"Valitse \"Paikallinen LAN\" jolloin DrakX yrittДД hakea Ethernet-ohjaimia\n"
-"jДrjestelmДstДsi. PCI-ohjaimien tulisi lЖytyД ja toimia automaattisesti.\n"
-"Kuitenkin jos laitteesi on ISA-vДylДssД automaattitunnsitus ei toimi ja\n"
-"sinun tulee valita ajuri ilmestyvДltД listalta.\n"
-"\n"
-"\n"
-"Kuten SCSI-ohjaimilla voit antaa ajurin kДyttДД ohjainta ensin\n"
-"automaattisesti, jos tДmД ei toimi sinun tulee antaa ylimДДrДisiД\n"
-"asetuksia jotka olet hakenut Windowsin ohjauspaneelista.\n"
-"\n"
-"\n"
-"Jos asennat Linux-Mandrake jДrjestelmДn osaksi olemassaolevaa\n"
-"verkkoa verkon yllДpitДjД on antanut sinulle kaikki tarvittavat\n"
-"tiedot (IP-osoiteen, verkkopeiteen sekД jДrjestelmДn nimen). Jos\n"
-"esimerkiksi asetat omaa kotiverkkoa sinun tulee itse valita nДmД\n"
-"osoitteet.\n"
-"\n"
-"Valitse \"Soittoyhteys\" modeemilla jolloin internet-yhteys modeemilla\n"
-"asetetaan. DrakX yrittДД ensin etsiД modeemiasi, jos se ei onnistu\n"
-"sinun tulee valita oikea sarjaportti johon modeemisi on kytketty."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Voit antaa nyt soittoyhteyden asetukset. Jos et ole varma mitД kenttiin\n"
+"kirjotetaan oikeat tiedot saat Internet palveluntarjoajaltasi."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"SyЖtД:\n"
"\n"
@@ -1681,7 +2157,23 @@ msgstr ""
"valitse tДmД optio. Jos tДmД valitaan ei \"IP-osoite\" kenttДД tarvitse\n"
"tДyttДД. Jos et ole asiasta varma kysy berkkoyllДpitДkДltДsi.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Jos verkkosi kДyttДД NIS:Д, valita \"KДytД NIS:Д\". Jos et ole varma "
+"asiasta\n"
+"kysy verkkoyllДpitДjДltДsi."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1689,7 +2181,7 @@ msgstr ""
"Voit antaa nyt soittoyhteyden asetukset. Jos et ole varma mitД kenttiin\n"
"kirjotetaan oikeat tiedot saat Internet palveluntarjoajaltasi."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1698,13 +2190,15 @@ msgstr ""
"vДlityspalvelimia kysy verkkoyllДpitДjДltДsi tai Internet\n"
"palveluntarjoajaltasi."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1715,13 +2209,19 @@ msgstr ""
"Huomaa ettД sinun tulee valita peilijДrjestelmД ja paketit oman maasi\n"
"lainsДДdДnnЖn mukaan."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Voit valita aikavyЖhykkeen sen mukaan missД asut.\n"
"\n"
@@ -1730,15 +2230,22 @@ msgstr ""
"sen\n"
"paikalliseen aikaan valitsemasi aikavyЖhykkeen mukaan."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"Voit valita mitД palveluita haluat kДynnistДД koneen kДynnistyessД.\n"
"Kun siirrДt hiiren osoittimen palvelin pДДlle, pieni ohje tulee esiin,\n"
@@ -1748,78 +2255,159 @@ msgstr ""
"konettasi palvelimena: et varmaankaan halua kДynnistДД palveluita,\n"
"joita et kДytД."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux osaa kДsitellД monentyyppisiД tulostimia. Jokainen nДistД\n"
-"vaatii erilaisen asetukset. Huomaa, ettД tulostusjono kДyttДД\n"
-"'lp'-nimeД oletustulostimelle, joten sinulla tulee olla yksi tulostin\n"
-"tДllД nimellД. Voit antaa monia nimiЖ halutessasi ja erotella ne\n"
-"'|'-merkillД. Eli jos haluat tulostimellesi merkitsevДmmДn nimen\n"
-"sinun tulee vain laittaa se ensin, esim. \"Tulostimeni|lp\".\n"
-"Tulostin jonka nimenД on \"lp\" on oletustulostin.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
"\n"
-"Jos tulostimesi on kytketty suoraan tietokoneeseesi, valitse\n"
-"\"Paikallinen Tulostin\". Sinun tulee kertoa mihin porttiin tulostin\n"
-"on kytketty ja valita sopiva suodatin.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Jos haluat kДyttДД tulostinta joka on toisessa Unix-palvelimessa,\n"
-"sinun tulee valita \"EtД lpd\". Saadaksesi tulostimen toimimaan\n"
-"kДyttДjДnimeД tai salasanaa ei tarvita, mutta sinun tulee tietДД\n"
-"etДkoneen nimi sekД tulostusjonon nimi.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Jos haluat kДyttДД SMB tulostinta (joka tarkoittaa sitД ettД\n"
-"tulostin on Windows 9x/NT koneella), sinun tulee mДДritellД\n"
-"koneen SMB nimi (joka ei ole sama kuin sen TCP/IP nimi), ja mahdollisesti\n"
-"koneen IP-osoite, kДyttДjДnimi, tyЖryhmД sekД salasana jotta voisit kДyttДД\n"
-"tulostinta sekД tietysti tulostimen nimi. Sama koskee NetWare tulostimia\n"
-"paitsi et tarvitse tyЖryhmДtietoja."
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
+#, fuzzy
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Voit antaa nyt root salasanan Linux-Mandrake jДrjestelmДllesi.\n"
"Salasana tulee antaa kaksi kertaa jotta salasanan oikeellisuudesta\n"
@@ -1835,7 +2423,7 @@ msgstr ""
"*koskaan* tule kirjoittaa paperille. дlД tee salasanasta kuitenkaan\n"
"liian monimutkaista, sinun tulee muistaa se ilman liian suurta vaivaa."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1844,7 +2432,7 @@ msgstr ""
"shadow-tiedostoa\" ja\n"
"\"KДytД MD5-salasanoja\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1853,7 +2441,7 @@ msgstr ""
"asiasta\n"
"kysy verkkoyllДpitДjДltДsi."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1892,22 +2480,18 @@ msgstr ""
"Eli sinun tulee kirjautua jДrjestelmДДn tunnuksella jonka luot tДДllД ja\n"
"kДyttДД root tunnusta vain jДrjestelmДn yllДpitoon."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Suosittelemme ettД vastaat tДhДn \"KyllД\". Jos asennat esimerkiksi\n"
-"Windowsin uudelleen asennusohjelma ylikirjoittaa kДynnistyslohkon. Jos\n"
-"et ole jo tehnyt kДynnistyslevykettД et voi kДynnistДД tДmДn jДlkeen\n"
-"Linuxia uudelleen."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1920,7 +2504,7 @@ msgstr ""
"Jos et todella tiedД mitД teet, valitse \"EnsimmДinen levyn\n"
"sektori (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1928,10 +2512,10 @@ msgstr ""
"Jos et tiedД tarkemmin, niin yleinen valinta on \"/dev/hda\"\n"
"(primДДrinen master IDE-levyn ).tai \"/dev/sda\" (ensimmДinen SCSI-levy)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1942,7 +2526,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -1960,7 +2544,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO:n pДДasetukset ovat:\n"
@@ -2000,10 +2586,77 @@ msgstr ""
" * normaali: valitse normaali 80x25 tekstitila.\n"
" * <numero>: kДytД numeroa vastaavaa tekstitilaa."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"LILO:n pДДasetukset ovat:\n"
+" - KДynnistyslaite: Asettaa laitteen (esim. kiintolevyn osion)\n"
+"joka sisДltДД kДynnistyslohkon. Ellet ole varma mitД valitsisit\n"
+"valitse \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Lineaarinen: Luo lineaarisia sektoriosotteita sektori/lukupДД/\n"
+"sylinteri osotteiden sijasta. Lineaariset osoitteet muutetaan ajon\n"
+"aikana eivДtkД riipu levyn geometriasta. Huomaa ettД kДynnistyslevyt\n"
+"eivДt ole siirrettДviД jos \"lineaarinen\"-tilaa kДytetДДn, koska\n"
+"BIOS-palvelu jolla levyn geomteria selvitetДДn ei toimi luotettavasti\n"
+"levykkeillД. Kun kДytДt \"lineaarinen\"-tilaa isoilla levyillД voi\n"
+"/sbin/lilo luoda viitteitД saavuttamattomille levyn alueille koska\n"
+"3D sektoriosotteita ei tunneta ennen kДynnistystД.\n"
+"\n"
+"\n"
+" - Kompakti: YrittДД liittДД vierekkДisten sektorien luvun yhteen\n"
+"pyyntЖЖn. TДmД pienentДД huomattavasti latausaikoja ja tekee kartta-\n"
+"tiedostosta pienemmДn. \"Kompakti\"-tilan kДyttЖД suositellaan erityisesti\n"
+"jos kДynnistetДДn levykkeeltД.\n"
+"\n"
+"\n"
+" - Viive ennen oletuslaitteelta kДynnistystД: MДДrittelee "
+"kymmenesosasekunteina\n"
+"kuinka kauan lataaj odottaa ennenkuin kДynnistДД ensimmДisen tiedoston.\n"
+"TДmД on hyЖdyllinen asetus jДrjestelmissД joissa halutaan kДynnistyksen "
+"tapahtuvan\n"
+" heti kun nДppДimistЖ on kДytettДvissД. KДynnistyslataaja ei odota jos "
+"\"viive\" on\n"
+"nolla tai sitД ei ole ollenkaan.\n"
+"\n"
+"\n"
+" - Videotila: MДДrittelee halutun VGA tekstitilan joka valitaan\n"
+"kДynnistettДessД. Seuraavia arvoja voidaan kДyttДД: \n"
+" * normaali: valitse normaali 80x25 tekstitila.\n"
+" * <numero>: kДytД numeroa vastaavaa tekstitilaa."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2025,7 +2678,7 @@ msgstr ""
"miellyttДvДt sinua. Jos eivДt, voit palata ja muuttaa niitД\n"
"niin monta kertaa kuin on tarpeen."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2034,7 +2687,7 @@ msgstr ""
"asettamiseksi\n"
"oikein."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2042,42 +2695,47 @@ msgstr ""
"Jos haluat kДyttДД graafista sisДДnkirjoittautumista valitse \"KyllД\".\n"
"Muuten valitse \"Ei\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Voit nyt asettaa jДrjestelmДn sekalaisia asetuksia.\n"
"\n"
@@ -2113,7 +2771,7 @@ msgstr ""
" kДynnistyksen jДlkeen valitse tДmД asetus (Huomaa: Num Lock ei toimi\n"
" silti X:n alla)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2128,188 +2786,131 @@ msgstr ""
"Jos haluat myЖs kДynnistДД muita koneessa olevia kДyttЖjДrjestelmiД lue\n"
"lisДohjeita."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Valitse kieli"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Valitse asennuksen luokka"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Kiintolevyjen tunnistus"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "MДДrittele hiiri"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Valitse nДppДimistЖ"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Sekalaista"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Aseta tiedostojДrjestelmДt"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Alusta osiot"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Asenna"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Aseta verkko"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Salakirjoitus"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Aseta aikavyЖhyke"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Asetuspalvelut"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Aseta kirjoitin"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Anna root-salasana"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "LisДД kДyttДjД"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Luo kДynnistyslevyke"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Asenna lataaja"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Aseta X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Automaattiasennuslevyke"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Lopeta asennus"
-#: ../../install2.pm_.c:337
-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 ""
-"Sinulla tulee olla juuriosio.\n"
-"TДtД varten luo osio (tai klikkaa olemassaolevaa).\n"
-"Valitse sitten toiminto ``Liitospiste'' ja aseta se arvoon `/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Osiotaulua ei voida lukea, siinД on liikaa virheitД :(\n"
-"Taulu yritetДДn korjata nollaamalla se"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "virhe luettaessa tiedostoa $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
-"Jatka omalla vastuullasi!"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "MinkД tyyppinen hiiri sinulla on."
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Etsin juuriosiota"
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "MinkД tyyppinen hiiri sinulla on."
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Tietoa"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: TДmД ei ole juuriosio, valitse joku toinen."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Juuriosiota ei lЖytynyt"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Levitysjakelua ei voida kДyttДД ilman NIS aluetta"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "virhe luettaessa tiedostoa $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Tapahtui virhe, sitД ei voida kДsitellД kunnolla.\n"
-"Jatka omalla riskillДsi."
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Kahdentunut liitospiste %s"
-
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
+"Sinulla tulee olla juuriosio.\n"
+"TДtД varten luo osio (tai klikkaa olemassaolevaa).\n"
+"Valitse sitten toiminto ``Liitospiste'' ja aseta se arvoon `/'"
-# mat
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s:n"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Ei levykeasemaa kДytettДvissД"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Siirryn vaiheeseen `%s'\n"
-
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Sinulla tulee olla heittovaihtotiedosto"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2319,98 +2920,78 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Valitse asennuksen koko"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "KДytД loopback-tiedostoa"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Kokonaiskoko: "
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versio: %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Alustan osioita"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Koko: %d Kt\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "YritДn osiotalulun palautusta"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Valitse asennettavat paketit"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "KДytД loopback-tiedostoa"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Tietoja"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Mille osiolle haluat laittaa Linux4Win:n"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Asenna"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Valitse koot"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Asennan"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Juuriosion koko Mt: "
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Odota hetki, "
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Sivutusosion koko Mt: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "JДljellД "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Kokonaisaika "
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "MinkД osiotyypin haluat?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Valmistelen asennusta"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Lasken fat-tiedostojДrjestelmДn rajoja"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Asennan pakettia %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Jatka kuitenkin?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Tapahtu virhe jДrjestettДessД paketteja:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "KДytД olemassaolevia asetuksia X11:ta?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Valitse joku seuraavista asennusluokista:"
-
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Sinulla ei ole yhtДДn windows osiota!"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Sinulla ei ole tarpeeksi tilaa Lnx4win:lle"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
+#, fuzzy
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2425,33 +3006,151 @@ msgstr ""
" tДlle osiolle ja tehdД tiedoistasi varmuuskopio.\n"
"Kun olet tehnyt nДmД toimenpiteet paina Ok."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "Mille sektorille haluat siirtДД?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "Osio"
+
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "Automaattinen koonmuutos epДonnistui"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Mille osiolle haluat laittaa Linux4Win:n"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Valitse koot"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Juuriosion koko Mt: "
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Sivutusosion koko Mt: "
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+# mat
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Osion %s koon muutoksen jДlkeen kaikki osion tiedot tuhoutuvat"
+
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Ekspertti"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Voit nyt osioda kiintolevysi %s\n"
+"Kun olet valmis, ДlД unohda tallettaa komennolla 'w'"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Sinulla ei ole yhtДДn windows osiota!"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Uusia osioita ei voida lisДtД"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+# mat
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Osion tyyppi: %s\n"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "KДynnistДn verkkoa"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Ajan alas verkkoa"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Tapahtui virhe, sitД ei voida kДsitellД kunnolla.\n"
+"Jatka omalla riskillДsi."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Kahdentunut liitospiste %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+# mat
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Tervetuloa %s:n"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Ei levykeasemaa kДytettДvissД"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Siirryn vaiheeseen `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Valitse joku seuraavista asennusluokista:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Valitsemiesi ryhmien kokonaiskoko on suunnilleen %d Mt.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2465,7 +3164,7 @@ msgstr ""
"Pieni prosenttiosuus asentaa vain tДrkeimmДt paketit,\n"
"100%% osuus asentaa kaikki paketit."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2480,59 +3179,102 @@ msgstr ""
"Pieni prosentti asentaa vain tДrkeimmДt paketit, %d%%\n"
" prosenttiosuus asentaa niin monta pakettia kuin on mahdollista."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Voit valita paketit tarkemmin seuraavassa vaiheessa"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Prosenttiosuus asennettavista paketeista"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Valitse asennettavat paketit"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Tietoja"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Asenna"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automaattiset riippuvuudet"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Laajenna puu"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Sulje puu"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Vaihda tasaisen ja ryhmДjДrjestyksen vДlillД"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versio: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Koko: %d Kt\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "TДrkeys: %s\n"
# mat
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteensД: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Et voi poistaa tДmДn paketin valintaa. Se on jo asennettu"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Seuraavat paketit poistetaan"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Seuraavat paketit asennetaan tai poistetaan"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Et voi valita/poistaa tДtД pakettia"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "TДmД on pakollinen paketti, sitД ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tДmДn paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2540,45 +3282,89 @@ msgstr ""
"TДmД paketti tulee pДivittДД\n"
"Oletko varma ettД haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tДmДn paketin valintaa. Paketti pitДД pДivittДД."
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Et voi poistaa tДmДn paketin valintaa. Se on jo asennettu"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Seuraavat paketit asennetaan tai poistetaan"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Et voi valita/poistaa tДtД pakettia"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Arvioin"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Odota hetki, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "JДljellД "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Kokonaisaika "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Peruuta"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Valmistelen asennusta"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U Mt"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "HyvДksy kДyttДjД"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2593,182 +3379,386 @@ msgstr ""
"Jos sinulla ei ole levyД, paina Peruuta vДlttДДksesi asennukset tДltД "
"levyltД."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Uusi koko"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Jatka kuitenkin?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Tapahtu virhe jДrjestettДessД paketteja:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Tapahtui virhe"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Valitse kДytettДvД kieli."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "NДppДimistЖ"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Valitse nДppДimistЖn jДrjestys."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Voit valita kielet jotka ovat kДytettДvissД asennuksen jДlkeen"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Juuriosio"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "MikД on jДrjestelmДsi juuriosio (/) ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Asennusluokka"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Valitse asennuksen luokka?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Asenna/PДivitД"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Onko tДmД asennus vai pДivitys?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automaattinen"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Mukautettu"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ekspertti"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Oletko varmasti asiantuntija? \n"
"Voit tehdД vaarallisia asioita tДДllД."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "PДivitД"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normaali"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "Tietoa"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Kehitys"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Palvelin"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Mihin jДrjestelmДДsi kДytetДДn ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "MinkД tyyppinen hiiri sinulla on."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Asetan PCMCIA kortteja...."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Asetan IDE-levyД"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMt)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "MitД osiota haluat kДyttДД juuriosiona."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Valitse liitospisteet"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Osiotaulua ei voida lukea, siinД on liikaa virheitД :(\n"
+"Taulu yritetДДn korjata nollaamalla se"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
+"Jatka omalla vastuullasi!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Juuriosio"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "MikД on jДrjestelmДsi juuriosio (/) ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee kДynnistДД jДrjestelmД uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittДvДn suuri, suurenna sitД"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Etsin pДivitettДviД paketteja"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr "JДrjestelmДssДsi ei ole riittДvДsti tilaa asennukseen tai pДivitykseen"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normaali"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMt)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Normaali"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Valitse asennuksen koko"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Paketin ryhmДvalinta"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "YksittДisten pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2778,12 +3768,12 @@ msgstr ""
"Jos sinulla ei ole mitДДn levyistД, paina Peruuta.\n"
"Jos jotkut levyistД puuttuvat, poista niiden valinnat, ja paina OK."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltДДn \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2791,171 +3781,11 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Asennuksen jДlkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "SДilytД nykyiset IP-verkon asetukset"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Muuta verkon asetuksia"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "дlД aseta verkkoa"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Verkon asetukset"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "LДhiverkko on jo asetettu. Haluatko:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Haluatko mДДritellД lДhiverkon jДrjestelmДДsi?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "verkkokorttia ei lЖytynyt"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modeemin asetukset"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Haluatko mДДritellД soittoyhteyden modeemilla jДrjestelmДДsi?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Asetan verkkolaitetta %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Anna koneen IP-asetukset. Kukin kohta tulee syЖttДД IP-osoitteena,\n"
-"pisteillД eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automaattinen IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-osoite:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Verkkopeite:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Asetan verkkoa"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"SyЖtД koneesi nimi.\n"
-"Koneesi nimen pitДisi olla tДydellinen, kuten ``minunkone.yritys.fi''.\n"
-"Voit antaa myЖs yhdyskДytДvДn IP.osoitten jos sinulla on sellainen."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Nimipalvelin:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "YhdyskДytДvДn laite:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "YhdyskДytДvД:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Koneen nimi:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "YritД etsiД modeemia?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Mihin sarjaporttiin modeemisi on kytketty."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Soittoasetukset"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Yhteyden nimi"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Puhelinnumero"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "KДyttДjД ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Tunnistustapa"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Script-pohjainen"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminaalipohjainen"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Verkkoalue"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "EnsimmДinen nimipalvelin"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Toinen nimipalvelin"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2994,89 +3824,95 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijДrjestelmД josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "YhdistДn peilijДrjestelmДДn hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Valitse asennettavat paketit."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "MikД on aikavyЖhykkeesi?"
+msgstr "Mihin jДrjestelmДДsi kДytetДДn ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Onko koneen kello asetettu GMT aikaan?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "MinkД osiotyypin haluat?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "KДytД shadow-tiedostoa"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "KДytД MD5 salasanoja"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "KДytД NIS:Д"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "keltaiset sivut"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Salasana on liian yksinkertainen (sen tulee olla ainakin %d merkkiД pitkД)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Tunnistus NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "HyvДksy kДyttДjД"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "LisДД kДyttДjД"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(jo lisДtty %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3086,61 +3922,88 @@ msgstr ""
"Aseta kДyttДjД\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "KДyttДjДtunnus"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Kuvake"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Anna kДyttДjДtunnus"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"KДyttДjДtunnus saa sisДltДД vain pieniД kirjaimia, numeroita, `-' ja `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "KДyttДjДtunnus on jo lisДtty"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Mukautetulla kДynnistyslevykkeellД voit kДynnistДД jДrjestelmДn ilman\n"
+"tavanomaisen kДyttЖjДrjestelmДlataajan apua. TДstД on hyЖtyД, jos et halua\n"
+"asentaa LILOa (tai grubia) jДrjestelmДДsi, toinen kДyttЖjДrjestelmД poistaa\n"
+"LILOn, tai LILO ei toimi laitteistossasi. Mukautettua kДynnistyslevykettД "
+"voidaan\n"
+"kДyttДД myЖs Mandraken vikasietolevykkeen kanssa, jolloin vakavista\n"
+"jДrjestelmДn virhetilanteista on helpompi toipua.\n"
+"Haluatko luoda kДynnistyslevykkeen jДrjestelmДДsi?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "EnsimmДinen levyasema"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3162,64 +4025,33 @@ msgstr ""
"jДrjestelmДn virhetilanteista on helpompi toipua.\n"
"Haluatko luoda kДynnistyslevykkeen jДrjestelmДДsi?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot kДynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Aseta tyhjД levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Luon kДynnistyslevykettД"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO:n asennus epДonnistu. Seuraava virhe tapahtui:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Haluatko kДyttДД SILOa?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILOn pДДasetukset"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"TДssД ovat SILO:n asetustietueet.\n"
-"Voit lisДtД uusia tai muuttaa olemassaolevia."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Osio"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Otsikko on jo kДytЖssД"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO:n asennus epДonnistu. Seuraava virhe tapahtui:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Valmistelen kДyttЖjДrjestelmДn lataajaa"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Haluatko kДyttДД aboot:a?"
+msgstr "Haluatko kДyttДД SILOa?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3227,127 +4059,115 @@ msgstr ""
"Virhe asennettaessa aboot:a,\n"
"yritД pakkoasennusta vaikka se tuhoaa ensimmДisen osion?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "VДlityspalvelimien asetus"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP-vДlityspalvelin:"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP-vДlityspalvelin:"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "VДlityspalvelimen tulee olla muotoa http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "VДlityspalvelimen tulee olla muotoa ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "LILO:n asennus epДonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Huono"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Matala"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Keski"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Korkea"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Sekalaiset kysymykset"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(voi korruptoida tietoja)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "KДytД kiintolevyn optimointeja?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Valitse turvataso"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tarkka muistin koko, jos tarpeen (lЖydettiin %d Mt)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Poistettavien medioiden automaattinen liittДminen"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "TyhjennД /tmp jokaisessa kДynnistyksessД"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "KДytД montaa profiilia"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Num lock pДДllД kДynistettДessД"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Anna muistin koko megatavuina"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Supermount ohjelmaa ei voida kДyttДД korkealla turvatasolla"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX luo asetustiedostot sekД XFree 3.3:lle ettД XFree 4.0:lle.\n"
-"Oletuksena kДytetДДn 3.3 palvelinta, koska se toimii useammilla\n"
-"nДytЖnohjaimilla.\n"
-"\n"
-"Haluatko kokeilla XFree 4.0:aa?"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Etsi PCI laitteita?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "KДytД olemassaolevia asetuksia X11:ta?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
# mat
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhjД levyke levyasemaan %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Valmistelen automaattiasennuslevykettД"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3357,7 +4177,7 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3378,152 +4198,18 @@ msgstr ""
"JДrjestelmДn asetuksista on tietoja virallisen Linux Mandraken oppaan\n"
"luvussa \"Asennuksen jДlkeinen konfigurointi\""
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Sammutan"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Asetan ajuria %s ohjaimelle %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(moduli %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "MitД %s:n ajuria kokeillaan?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Joissakin tapauksissa %s-ajuri tarvitsee lisДtietoja toimiakseen kunnolla,\n"
-"joskin tavallisesti se toimii hyvin ilmankin. Haluaisitko antaa ajurille\n"
-"lisДmДДreitД vai annatko sen itse etsiД tarvitsemansa tiedot? Joskus haku\n"
-"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Automaattihaku"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "LisДasetukset"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Voit antaa lisДasetuksia modulille %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Voit antaa lisДasetuksia modulille %s.\n"
-"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
-"Esimerkiksi, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Moduulin optiot:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Modulin %s lataaminen epДonnistui.\n"
-"Haluatko yrittДД muilla asetuksilla?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "YritД etsiД PCMCIA kortteja?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Asetan PCMCIA kortteja...."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Etsi %s laitteita?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "LЖysin %s %s liitДntДД"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Onko sinulla muita?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Onko koneessa %s liityntДД?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ei"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "KyllД"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Katso laitteistotietoja"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "KДynnistДn verkkoa"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Ajan alas verkkoa"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Asennus %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Voit nyt osioda kiintolevysi %s\n"
-"Kun olet valmis, ДlД unohda tallettaa komennolla 'w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Odota hetki"
@@ -3533,7 +4219,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "EpДtarkka (%s), ole tarkempi\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Huono valinta, yritД uudelleen\n"
@@ -3547,454 +4233,969 @@ msgstr " ? (oletus %s) "
msgid "Your choice? (default %s) "
msgstr "Valintasi? (oletus %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Valintasi? (oletus %s anna `ei mikДДn' jos et halua mitДДn) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tshekki"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "VenДjД"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UK nДppДimistЖ"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US nДppДimistЖ"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgaria"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
#, fuzzy
msgid "Belarusian"
msgstr "Bulgaria"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen jДrjestys)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen jДrjestys)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita nДppДimiД)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Norja"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"VenДlДinen\"-jДrjestys)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-jДrjestys)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ukraina"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty jДrjestys)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz jДrjestys)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "VenДjД (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovakia"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thai-nДppДimistЖ"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US nДppДimistЖ (kansainvДlinen)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Liettua \"numerorivi\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslavia (latin-jДrjestys)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '\204' is 'Д' (adiaeresis) in cp437 encoding.
-# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - Hiiri"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Yleinen"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "taso"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "sarja"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Yleinen 2-nappinen hiiri"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Yleinen 3-nappinen hiiri"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Ei hiirtД"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ei mikДДn"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Ei hiirtД"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Onko tДmД oikein?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "VДlityspalvelimien asetus"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Haluatko kokeilla asetuksia?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Aseta verkko"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "дlД aseta verkkoa"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Yhteyden nimi"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "Asetukset"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "VДlityspalvelimien asetus"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "Puhelinnumero"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Verkkoalue"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Liitospaikka"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Salasana"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Salasana"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Kokeile asetuksia"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "MinkД osiotyypin haluat?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Millainen kirjoitin sinulla on?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Jatka kuitenkin?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "MikД on aikavyЖhykkeesi?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Valitse uusi koko"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Mihin sarjaporttiin hiiresi on liitetty."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-"Tervetuloa LILO kДyttЖjДrjestelmДnvalitsijaan!\n"
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Haluatko kokeilla asetuksia?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "Asetukset"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Haluatko kДyttДД aboot:a?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "YritД etsiД modeemia?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Mihin sarjaporttiin modeemisi on kytketty."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Soittoasetukset"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Yhteyden nimi"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "Puhelinnumero"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "KДyttДjД ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Tunnistustapa"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Script-pohjainen"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminaalipohjainen"
+
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "Yhteyden nimi"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "EnsimmДinen nimipalvelin"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Toinen nimipalvelin"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Listataksesi mahdolliset valinnat paina <TAB>.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Yhteyden nimi"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
-"Ladataksesi jonkun niistД kirjoita sen nimi ja paina <ENTER>\n"
-"tai odota %d sekuntia oletuskДynnistystД.\n"
+"You can reconfigure your connection."
+msgstr "Aseta verkko"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "дlД aseta verkkoa"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Tervetuloa GRUB kДyttЖjДrjestelmДnvalitsijaan!"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "дlД aseta verkkoa"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "KДytД %c ja %c nДppДimiД valitaksesi korostetun tietueen"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Yhteyden nimi"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Yhteyden nimi"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Aseta verkko"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Kirjoitinyhteys"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-"Paina enter kДynnistДДksesi valitun kДyttЖjДrjestelmДn, 'e' muokataksesi"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komennot ennen kДynnistystД, tai 'c' komentoriville"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Aseta verkko"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Korostettu tietue kДynnistetДДn automaattisesti %d sekunnissa."
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Aseta verkko"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "TyЖpЖytД"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Ekspertti"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "KДynnistysvalikko"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Yhteyden nimi"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - Hiiri"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Mihin sarjaporttiin hiiresi on liitetty?"
+
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Aseta verkko"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB Hiiri"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Peruuta"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB Hiiri (2 nappia)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB Hiiri (3+ nappia)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB Hiiri"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB Hiiri (2 nappia)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Ekspertti"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB Hiiri (3+ nappia)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Yleinen hiiri (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Yleinen 3-nappinen hiiri (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Aseta verkko"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "MinkД osiotyypin haluat?"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Aseta verkko"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Aseta verkko"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Verkon asetukset"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Haluatko kokeilla asetuksia?"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Aseta verkko"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Yhteyden nimi"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "LДhiverkko on jo asetettu. Haluatko:"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Mille levylle haluat siirtДД?"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Verkon asetukset"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB Hiiri"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB Hiiri (3 nappia tai enemmДn)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "verkkokorttia ei lЖytynyt"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Ei hiirtД"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Asetan verkkoa"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A tai korkeampi (sarja)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"SyЖtД koneesi nimi.\n"
+"Koneesi nimen pitДisi olla tДydellinen, kuten ``minunkone.yritys.fi''.\n"
+"Voit antaa myЖs yhdyskДytДvДn IP.osoitten jos sinulla on sellainen."
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (sarja)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Koneen nimi:"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (sarja)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (sarja)"
+#: ../../network.pm_.c:302
+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 ""
+"Anna koneen IP-asetukset. Kukin kohta tulee syЖttДД IP-osoitteena,\n"
+"pisteillД eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (sarja)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Asetan verkkolaitetta %s"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (sarja)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automaattinen IP"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (sarja)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "IP-osoite:"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (sarja)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Verkkopeite:"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (sarja, vanha C7 tyyppi)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (sarja)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Yleinen hiiri (sarja)"
+#: ../../network.pm_.c:341
+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 ""
+"SyЖtД koneesi nimi.\n"
+"Koneesi nimen pitДisi olla tДydellinen, kuten ``minunkone.yritys.fi''.\n"
+"Voit antaa myЖs yhdyskДytДvДn IP.osoitten jos sinulla on sellainen."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft yhteensopiva (sarja)"
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Nimipalvelin:"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Yleinen 3-nappinen hiiri (sarja)"
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "YhdyskДytДvД:"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (sarja)"
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "YhdyskДytДvДn laite:"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Onko tДmД oikein?"
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Asennuksen jДlkeiset toiminnot"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP-vДlityspalvelin:"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP-vДlityspalvelin:"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "VДlityspalvelimen tulee olla muotoa http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "VДlityspalvelimen tulee olla muotoa ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4004,21 +5205,21 @@ msgstr ""
"Ainoa ratkaisu on siirtДД primДДriosioita siten ettД reikД on ennen "
"laajennettuja osioita"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Palautus tiedostosta %s epДonnistui: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Huono varmuuskopiotiedosto"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
@@ -4052,42 +5253,56 @@ msgstr "kiinnostava"
msgid "maybe"
msgstr "ehkД"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (tДrkeД)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (hyvД)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (hyvД)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "NДytД vДhemmДn"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "NДytД lisДД"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Paikallinen kirjoitin"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "Palvelimen lpd:n tulostinparametrit"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "EtДjonon nimi:"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "lpd-palvelin"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "NetWare-kirjoittimen parametrit"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Tulostinlaite"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
@@ -4101,11 +5316,11 @@ msgstr "Kokeile portteja"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Tulostin mallia \"%s\" lЖydettiin "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4113,15 +5328,15 @@ msgstr ""
"Mihin laitteeseen tulostin on kytketty \n"
"(huomaa, ettД /dev/lp0 vastaa LPT1:tД)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Tulostinlaite"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Palvelimen lpd:n tulostinparametrit"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4131,19 +5346,19 @@ msgstr ""
"tulee syЖttДД tulostuspalvelimen ja jonon nimi jolle tyЖt\n"
"siirretДДn."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Palvelimen nimi"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "EtДjonon nimi:"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4156,27 +5371,27 @@ msgstr ""
"ja mahdollisesti tulostinpalvelimen IP-osoite, kirjoittimen jakonimi\n"
"sekД soveltuva kДyttДjДtunnus, salasana ja tyЖryhmД-tieto."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "TyЖryhmД"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare-kirjoittimen parametrit"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4188,130 +5403,155 @@ msgstr ""
"ja mahdollisesti tulostusjonon nimi sille kirjoittimelle, jota haluat\n"
"kДyttДД, sekД soveltuva kДyttДjДtunnus ja salasana."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "NetWare-kirjoittimen parametrit"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "Tulostimen asetukset"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Huono"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Millainen kirjoitin sinulla on?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Haluatko kokeilla tulostusta?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Tulostan testisivua..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Testisivu on lДhetetty tulostinpalvelimelle.\n"
+"Voi kestДД hetken ennenkuin tulostus alkaa.\n"
+"Tulostustila:\n"
+"%s\n"
+"\n"
+"Toimiko tulostus oikein?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Testisivu on lДhetetty tulostinpalvelimelle.\n"
+"Voi kestДД hetken ennenkuin tulostus alkaa.\n"
+"Toimiko tulostus oikein?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "KyllД, tulosta ASCII-testisivu"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "KyllД, tulosta PostScript-testisivu"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "KyllД, tulosta molemmat sivut"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Aseta kirjoitin"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Millainen kirjoitin sinulla on?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Paperikoko"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Poista sivu tyЖn jДlkeen?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint ajurin asetukset"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "VДrisyvyysasetukset"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Tulosta teksti postscript muodossa?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "KДДnteinen sivujДrjestys"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Korjaa askelmainen rivinvaihto?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Sivujen mДДrД tulostettavalla sivulla"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Vasen/Oikea mariginaali pisteinД (1/72 tuuma)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "YlД/Ala-mariginaalit pisteinД (1/72 tuumina)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "LisДasetukset GhostScriptille"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "LisДtekstiasetukset"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Haluatko kokeilla tulostusta?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Tulostan testisivua..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Testisivu on lДhetetty tulostinpalvelimelle.\n"
-"Voi kestДД hetken ennenkuin tulostus alkaa.\n"
-"Tulostustila:\n"
-"%s\n"
-"\n"
-"Toimiko tulostus oikein?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Testisivu on lДhetetty tulostinpalvelimelle.\n"
-"Voi kestДД hetken ennenkuin tulostus alkaa.\n"
-"Toimiko tulostus oikein?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Tulostin"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Haluatko asettaa tulostimen?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4319,19 +5559,69 @@ msgstr ""
"TДssД ovat tulostusjonot.\n"
"Voit lisДtД uusia tai muuttaa olemassaolevia."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Arvioin"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Valitse tulostinyhteys"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Miten tulostin on liitetty?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Valitse tulostinyhteys"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Poista jono"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Jokainen tulostusjono (johon tulostustЖitД ohjataan) tarvitsee\n"
+"nimen (usein lp) ja jonohakemiston joka liittyy nimeen. MitД\n"
+"nimeД ja hakemistoa kДytetДДn tДlle jonolle ja miten tulostin\n"
+"on liitetty?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Paikallinen kirjoitin"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "LisДasetukset"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "Tietoa"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4343,45 +5633,45 @@ msgstr ""
"nimeД ja hakemistoa kДytetДДn tДlle jonolle ja miten tulostin\n"
"on liitetty?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Jonon nimi"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Jonohakemisto"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Kirjoitinyhteys"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "En voi lisДtД osiota _alustetulle_ RAID:lle md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "En voi kirjoittaa tiedostoa $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid epДonnistui"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid epДonnistui (ehkД raid-tyЖkalut puuttuvat?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittДvДsti osioita RAID tasolle %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron on jaksottainen komentojen ajastaja."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4389,7 +5679,7 @@ msgstr ""
"apmd:ta kДytetДДn valvomaan paristojen tilaa ja raportoimaan siitД syslogin\n"
"kautta. apmd:tД voidaan myЖs kДyttДД sulkemaan kone patterien ollessa tyhjiД."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4397,7 +5687,7 @@ msgstr ""
"Ajaa komentoja mДДrДtyillД ajanhetkillД, jotka on mДДritelty at-komennolla.\n"
"Ajaa myЖs erДajoja, kun jДrjestelmДn kuormitus on riittДvДn matala."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4408,7 +5698,7 @@ msgstr ""
"ajanhetkillД. vixie cron lisДД monia omianisuuksia verrattuna normaaliin\n"
"UNIX:n cron ohjelmaan, kuten paremman turvallisuuden ja laajemmat asetukset."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4419,7 +5709,7 @@ msgstr ""
"Commander. GPM mahdollistaa myЖs leikkaa/liimaa toiminnot hiirellД,\n"
"ja sisДltДД tuen valikoille konsolissa."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4427,7 +5717,7 @@ msgstr ""
"Apache on WWW-palvelin. Palvelinta kДytetДДn jakamaan HTML-\n"
"tiedostoja ja ajamaan CGI-ohjelmia."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4441,7 +5731,7 @@ msgstr ""
"palveluita, kuten telnet, ftp, rsh ja rlogin. inetd:n poistaminen\n"
"poistaa myЖs nДmД palvelut kДytЖstД."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4452,7 +5742,7 @@ msgstr ""
"tyЖkalulla.\n"
"TДmД tulisi ottaa kДyttЖЖn lДhes kaikissa jДrjestelmissД."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4460,7 +5750,7 @@ msgstr ""
"lpd on tulostuspalvelin, jonka lpr ohjelma vaatii toimiakseen.\n"
"lpd on palvelin joka jakaa tulostustЖitД tulostimille."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4468,7 +5758,7 @@ msgstr ""
"named (BIND) on nimipalvelin (DNS) jota kДytetДДn selvittДmДДn\n"
"koneen nimiД sekД IP-osoitteita."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4476,7 +5766,7 @@ msgstr ""
"LiittДД ja irroittaa NFS (Network File System), SMB (Lan\n"
"Manager/Windows) ja NCP (NetWare) liitospisteitД"
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4484,7 +5774,7 @@ msgstr ""
"Aktivoi/Poistaa kaikki verkkoliittymДt jotka on asetettu\n"
"kДynnistyksessД."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4494,7 +5784,7 @@ msgstr ""
"verkoissa. TДmД palvelu mahdollistaa NFS-palvelimen\n"
"kДynnistyksen, jakoa ohjataan tiedostosta /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4502,7 +5792,7 @@ msgstr ""
"NFS on yleinen protokolla tiedostojen jakoon TCP/IP-\n"
"verkoissa. TДmД palvelu mahdollistaa NSF-tiedostolukot."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4513,7 +5803,7 @@ msgstr ""
"korttien tukemiseen. Palvelu ei kДynnisty ellei sitД ole asetettu, joten\n"
"sen voi asentaa myЖs koneisiin jotka eivДt sitД tarvitse."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4524,7 +5814,7 @@ msgstr ""
"NFS ja NIS-protokollat. portmap-palvelin on oltava kДynnissД\n"
"jДrjestelmissД jotka haluavat tarjota nДitД protokollia."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4532,7 +5822,7 @@ msgstr ""
"Postfix on sДhkЖpostinvДlitysohjelma, eli ohjelma joka\n"
"vДlittДД postia koneelta toiselle."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4540,7 +5830,7 @@ msgstr ""
"Tallentaa ja palauttaa jДrjestelmДn satunnaislukualtaan, tДmД parantaa\n"
"satunnaislukujen laatua."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4551,7 +5841,7 @@ msgstr ""
"verkoissa,\n"
"monimutkaisemmat verkot vaativat parempia reititysprotokollia."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4559,7 +5849,7 @@ msgstr ""
"rstart-protokolla mahdollistaa verkkokДyttДjille\n"
"eri koneiden tilatietojen haun."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4567,7 +5857,7 @@ msgstr ""
"rusers-protokolla verkon kДyttДjille mahdollisuuden tunnistaa, ketkД\n"
"ovat sisДllД eri koneissa."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4575,7 +5865,7 @@ msgstr ""
"rwho-protokollalla etДkДyttДjДt voivat listata kaikki koneella\n"
"olevat kДyttДjДt (vastaa fingeriД)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4583,58 +5873,201 @@ msgstr ""
"Syslog on tapa jolla monet palvelimet kirjottavat viestinsД talteen\n"
"useisiin lokitiedostoihin. On jДrkevДД kДyttДД syslog-ohjelmaa."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "TДmД kДynnistysskripti yrittДД ladata modulit usb hiirellesi."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"KДynnistДД ja pysДyttДД X kirjasinpalvelimen kДynnistyksessД ja lopetuksessa"
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Valitse mitkД palvelut kДynnistetДДn automaattisesti"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Tervetuloa SILO k?ytt?j?rjestelm?nvalitsijaan!\n"
-"\n"
-"Listataksesi mahdolliset valinnat paina <TAB>.\n"
-"\n"
-"Ladataksesi jonkun niist? kirjoita sen nimi ja paina <ENTER>\n"
-"tai odota %d sekuntia oletusk?ynnistyst?.\n"
-"\n"
+"Osiotaulua ei voida lukea, siinД on liikaa virheitД :(\n"
+"Taulu yritetДДn korjata nollaamalla se"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Aseta LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Luo kДynnistyslevyke"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Alusta levyke"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Valinta"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO:n asennus epДonnistu. Seuraava virhe tapahtui:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Taulukko"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Aseta X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Taulukko"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Kirjoitinyhteys"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Verkkoalue"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "luen asetuksia"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Asetan IDE-levyД"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Onnittelut!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4698,23 +6131,36 @@ msgstr "Asetan turvatasoa"
msgid "Choose the tool you want to use"
msgstr "Valitse haluamasi tyЖkalu"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Millainen nДppДimistЖ sinulla on?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Vaihda resoluutiota"
+
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Vaihda CD-levyД!\n"
+"\n"
+"Aseta CD-levy nimeltДДn \"%s\" CD-asemaan ja paina Ok kun olet valmis.\n"
+"Jos sinulla ei ole levyД, paina Peruuta vДlttДДksesi asennukset tДltД "
+"levyltД."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "MinkД tyyppinen hiiri sinulla on?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "serial_usb:ta ei lЖytynyt\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emuloi kolmatta nДppДintД?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Mihin sarjaporttiin hiiresi on liitetty?"
@@ -4929,6 +6375,888 @@ msgstr "Etsin lehtiД"
msgid "Finding leaves takes some time"
msgstr "Lehtien haku kestДД jonkin aikaa"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "VДlityspalvelimien asetus"
+
+#, fuzzy
+msgid "Internet"
+msgstr "kiinnostava"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Toimistosovellukset"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentaatio"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Valitse asennuksen koko"
+
+#~ msgid "Total size: "
+#~ msgstr "Kokonaiskoko: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Muuta verkon asetuksia"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Yhteyden nimi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Yhteyden nimi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Yhteyden nimi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Yhteyden nimi"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "Saksa"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Saksa"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "MitД haluat tehdД?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Asenna"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Uusi koko"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "MinkД osiotyypin haluat?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Valitse \"Asenna\" jos sinulla ei ole Linuxia ennestДДn asennettuna,\n"
+#~ "tai jos haluat kДyttДД useita eri levitysversioita.\n"
+#~ "\n"
+#~ "Valitse \"PДivitД\", jos haluat pДivittДД vanhaa Mandraken versiota Linux:\n"
+#~ "%s tai %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Valitse:\n"
+#~ " - Automaattinen (suositeltu): Jos et ole koskaan asentanut linuxia ennen, "
+#~ "valitse tДmД. HUOMAA:\n"
+#~ " verkkoa ei aseteta tДssД asennuksessa, kДytД \"LinuxConf\" asettaaksesi "
+#~ "verkon\n"
+#~ " asennuksen jДlkeen.\n"
+#~ "\n"
+#~ " - Muokattu: Jos tunnet GNU/Linuxin ennestДДn, voit valita erikseen koneen "
+#~ "kДyttЖtarkoituksen.\n"
+#~ " Katso alta lisДtietoja.\n"
+#~ "\n"
+#~ " - Ekspertti: Valinta edellyttДД, ettД tunnet GNU/Linuxin ennestДДn hyvin "
+#~ "ja haluat tehdД\n"
+#~ " erittДin mukautetun asennuksen. MyЖs tДssД luokassa voit valita koneesi "
+#~ "kДyttЖtarkoituksen.\n"
+#~ " Mutta ДlД valitse tДtД, JOS ET TIEDд MITд TEET!\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "TДssД vaiheessa sinun tulee valita partitio tai partitiot joille haluat\n"
+#~ "asentaa Linux-Mandrake jДrjestelmДsi, jos ne ovat jo olemassa\n"
+#~ "(edellisestД Linux asennuksesta tai jostain muusta osiointityЖkalusta).\n"
+#~ "Muissa tapauksissa kiintolevy tulee osioida. Operaatiossa kiintolevy\n"
+#~ "loogisesti osioidaan eri kДyttЖtarkoituksiin.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos sinun tДytyy luoda uusia osioita kДytД \"Automaattinen varaus\"\n"
+#~ "toimintoa osioiden luonnin automatisoimiseksi. Voit valita osioitavan levyn\n"
+#~ "klikkaamalla \"hda\":ta ensimmДiselle IDE-levylle, \"hdb\":ta toiselle\n"
+#~ "tai \"sda\":ta ensimmДiselle SCSI-levylle jne.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kaksi yleistД osiota ovat: juurosio (/), joka on jДrjestelmДn\n"
+#~ "kДynnistymispiste tiedostojДrjestelmДssД, ja /boot joka sisДltДД kaikki\n"
+#~ "tarpeelliset tiedostot jДrjestelmДn kДynnistДmiseksi, kun se laitetaan\n"
+#~ "kДyntiin.\n"
+#~ "\n"
+#~ "\n"
+#~ "Koska toimenpiteen muutoksia ei yleensД voida peruuttaa, osiointi voi\n"
+#~ "olla pelottavaa ja vaikeaa uudellen kДyttДjДlle. DiskDrake-ohjelma\n"
+#~ "helpottaa toimenpidettД. Lue dokumentaatiota ja tutki asia huolella\n"
+#~ "ennenkuin jatkat.\n"
+#~ "\n"
+#~ "\n"
+#~ "Voit kДyttДД kaikkia toimintoja nДppДimistЖltД: selaa osiota kДyttДen\n"
+#~ "Tab ja YlЖs/Alas nuolia. Kun osio on valittu, voit kДyttДД:\n"
+#~ "\n"
+#~ "- Ctrl-c luodakdesi uuden osion (kun tyhjД osio on valittu)\n"
+#~ "\n"
+#~ "- Ctrl-d tuhotaksesi osion\n"
+#~ "\n"
+#~ "- Ctrl-m asettaaksesi liitospisteen\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Kaikki uudelleenmДДritellyt uudet osiot tulee alustaa, jotta niitД voidaan\n"
+#~ "kДyttДД (alustus tarkoittaa tiedostojДrjestelmДn luomista). Samalla\n"
+#~ "voit uudelleenalustaa joitain osioita joilta haluat poistaa tiedot.\n"
+#~ "Huomaa: Olemassaolevien partitioiden alustus ei ole pakollista,\n"
+#~ "varsinkin jos ne sisДltДvДt ennestДДn tiedostoja jotka haluat sДilyttДД.\n"
+#~ "Normaalisti sДilytettДviД ovat /home ja /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Valitsemiasi paketteja asennetaan. TДmДn vaiheen tulisi kestДД\n"
+#~ "muutamia minuutteja, ellet ole valinnut olemassaolevan jДrjestelmДn\n"
+#~ "pДivitystД. PДivitys kestДД kauemmin jopa ennenkuin itse pДivitys\n"
+#~ "alkaa."
+
+#, fuzzy
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Jos DrakX ei lЖytДnyt hiirtДsi tai haluat tarkistaa mitД ohjelma\n"
+#~ "teki sinulle, nДet listan hiiristД ylДpuolella.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos olet samaa mieltД DrakX:n asetuksista hyppДД haluamaasi osioon\n"
+#~ "klikkaamalla valikkoa vasemmalla. Muuten valitse valikosta hiiren\n"
+#~ "tyyppi jonka uskot olevan lДhinnД omaa hiirtДsi.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos sinulla on sarjaporttihiiri sinun tulee myЖs kertoa DrakX:lle\n"
+#~ "mihin porttiin hiiri on kytketty."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "TДmД osio on paikallisverkon tai modeemin asetuksia varten.\n"
+#~ "\n"
+#~ "Valitse \"Paikallinen LAN\" jolloin DrakX yrittДД hakea Ethernet-ohjaimia\n"
+#~ "jДrjestelmДstДsi. PCI-ohjaimien tulisi lЖytyД ja toimia automaattisesti.\n"
+#~ "Kuitenkin jos laitteesi on ISA-vДylДssД automaattitunnsitus ei toimi ja\n"
+#~ "sinun tulee valita ajuri ilmestyvДltД listalta.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kuten SCSI-ohjaimilla voit antaa ajurin kДyttДД ohjainta ensin\n"
+#~ "automaattisesti, jos tДmД ei toimi sinun tulee antaa ylimДДrДisiД\n"
+#~ "asetuksia jotka olet hakenut Windowsin ohjauspaneelista.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos asennat Linux-Mandrake jДrjestelmДn osaksi olemassaolevaa\n"
+#~ "verkkoa verkon yllДpitДjД on antanut sinulle kaikki tarvittavat\n"
+#~ "tiedot (IP-osoiteen, verkkopeiteen sekД jДrjestelmДn nimen). Jos\n"
+#~ "esimerkiksi asetat omaa kotiverkkoa sinun tulee itse valita nДmД\n"
+#~ "osoitteet.\n"
+#~ "\n"
+#~ "Valitse \"Soittoyhteys\" modeemilla jolloin internet-yhteys modeemilla\n"
+#~ "asetetaan. DrakX yrittДД ensin etsiД modeemiasi, jos se ei onnistu\n"
+#~ "sinun tulee valita oikea sarjaportti johon modeemisi on kytketty."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux osaa kДsitellД monentyyppisiД tulostimia. Jokainen nДistД\n"
+#~ "vaatii erilaisen asetukset. Huomaa, ettД tulostusjono kДyttДД\n"
+#~ "'lp'-nimeД oletustulostimelle, joten sinulla tulee olla yksi tulostin\n"
+#~ "tДllД nimellД. Voit antaa monia nimiЖ halutessasi ja erotella ne\n"
+#~ "'|'-merkillД. Eli jos haluat tulostimellesi merkitsevДmmДn nimen\n"
+#~ "sinun tulee vain laittaa se ensin, esim. \"Tulostimeni|lp\".\n"
+#~ "Tulostin jonka nimenД on \"lp\" on oletustulostin.\n"
+#~ "\n"
+#~ "Jos tulostimesi on kytketty suoraan tietokoneeseesi, valitse\n"
+#~ "\"Paikallinen Tulostin\". Sinun tulee kertoa mihin porttiin tulostin\n"
+#~ "on kytketty ja valita sopiva suodatin.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos haluat kДyttДД tulostinta joka on toisessa Unix-palvelimessa,\n"
+#~ "sinun tulee valita \"EtД lpd\". Saadaksesi tulostimen toimimaan\n"
+#~ "kДyttДjДnimeД tai salasanaa ei tarvita, mutta sinun tulee tietДД\n"
+#~ "etДkoneen nimi sekД tulostusjonon nimi.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos haluat kДyttДД SMB tulostinta (joka tarkoittaa sitД ettД\n"
+#~ "tulostin on Windows 9x/NT koneella), sinun tulee mДДritellД\n"
+#~ "koneen SMB nimi (joka ei ole sama kuin sen TCP/IP nimi), ja mahdollisesti\n"
+#~ "koneen IP-osoite, kДyttДjДnimi, tyЖryhmД sekД salasana jotta voisit kДyttДД\n"
+#~ "tulostinta sekД tietysti tulostimen nimi. Sama koskee NetWare tulostimia\n"
+#~ "paitsi et tarvitse tyЖryhmДtietoja."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Suosittelemme ettД vastaat tДhДn \"KyllД\". Jos asennat esimerkiksi\n"
+#~ "Windowsin uudelleen asennusohjelma ylikirjoittaa kДynnistyslohkon. Jos\n"
+#~ "et ole jo tehnyt kДynnistyslevykettД et voi kДynnistДД tДmДn jДlkeen\n"
+#~ "Linuxia uudelleen."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Unohda muutokset?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Kirjoitinyhteys"
+
+#~ msgid "Host name:"
+#~ msgstr "Koneen nimi:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "MinkД tyyppinen hiiri sinulla on?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Automaattiset resoluutiot"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Jotta olemassaolevat resoluutiot lЖydetДДn ohjelma kokeilee eri "
+#~ "resoluutioita.\n"
+#~ "NДyttЖsi vДlДhtelee tДmДn aikana...\n"
+#~ "Voit laittaa nДytЖn pois pДДltД jos haluat, kun haku on valmis ohjelma "
+#~ "piippaa."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Ohjelma voi etsiД olemassaolevat resoluutiot (esim: 800x600).\n"
+#~ "TДmД voi joskus lukita koneen.\n"
+#~ "Haluatko yrittДД?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Toimivia nДyttЖtiloja ei lЖytynyt\n"
+#~ "YritД toista nДytЖnohjainta tai nДyttЖД."
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Automaattinen resoluutioiden haku"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB Hiiri"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB Hiiri (2 nappia)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB Hiiri (3+ nappia)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB Hiiri"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB Hiiri (2 nappia)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB Hiiri (3+ nappia)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Yleinen hiiri"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB Hiiri"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Hiiri (3 nappia tai enemmДn)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A tai korkeampi (sarja)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (sarja)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (sarja)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (sarja)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Yleinen hiiri (sarja)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft yhteensopiva (sarja)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Yleinen 3-nappinen hiiri (sarja)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs:n liittДminen epДonnistui"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#, fuzzy
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX luo asetustiedostot sekД XFree 3.3:lle ettД XFree 4.0:lle.\n"
+#~ "Oletuksena kДytetДДn 3.3 palvelinta, koska se toimii useammilla\n"
+#~ "nДytЖnohjaimilla.\n"
+#~ "\n"
+#~ "Haluatko kokeilla XFree 4.0:aa?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Salakirjoitus"
+
+#, fuzzy
+#~ msgid "Configure LAN"
+#~ msgstr "Aseta X"
+
+#, fuzzy
+#~ msgid "End configuration"
+#~ msgstr "Asetukset"
+
+#, fuzzy
+#~ msgid "Do not set up networking"
+#~ msgstr "Aseta verkko"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Haluatko mДДritellД lДhiverkon jДrjestelmДДsi?"
+
+#~ msgid "Show less"
+#~ msgstr "NДytД vДhemmДn"
+
+#~ msgid "Show more"
+#~ msgstr "NДytД lisДД"
+
+#, fuzzy
+#~ msgid "URI for Local printer"
+#~ msgstr "Paikallinen kirjoitin"
+
+#, fuzzy
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Paikallinen tulostin"
+
+#, fuzzy
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "Mihin laitteeseen tulostin on kytketty \n"
+#~ "(huomaa, ettД /dev/lp0 vastaa LPT1:tД)?\n"
+
+#~ msgid "curly"
+#~ msgstr "cirly"
+
+#~ msgid "default"
+#~ msgstr "oletus"
+
+#~ msgid "tie"
+#~ msgstr "tie"
+
+#~ msgid "brunette"
+#~ msgstr "brunetti"
+
+#~ msgid "girl"
+#~ msgstr "girl"
+
+#~ msgid "woman-blond"
+#~ msgstr "nainen-blondi"
+
+#~ msgid "automagic"
+#~ msgstr "automaattinen"
+
+#, fuzzy
+#~ msgid "Network:"
+#~ msgstr "Verkkopeite:"
+
+#, fuzzy
+#~ msgid "Everything configured!"
+#~ msgstr "luen asetuksia"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Millainen nДppДimistЖ sinulla on?"
+
+#~ msgid "Normal"
+#~ msgstr "Normaali"
+
+#, fuzzy
+#~ msgid "Configure my card"
+#~ msgstr "Aseta X"
+
+#, fuzzy
+#~ msgid "pptp alcatel"
+#~ msgstr "Automaattinen varaus"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "YritД etsiД PCMCIA kortteja?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Etsi %s laitteita?"
+
+#, fuzzy
+#~ msgid "Small(%dMB)"
+#~ msgstr "(%dMt)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Modeemin asetukset"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Haluatko mДДritellД soittoyhteyden modeemilla jДrjestelmДДsi?"
+
+#, fuzzy
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Haluatko mДДritellД lДhiverkon jДrjestelmДДsi?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Etsi PCI laitteita?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Etsin juuriosiota"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: TДmД ei ole juuriosio, valitse joku toinen."
+
+#~ msgid "No root partition found"
+#~ msgstr "Juuriosiota ei lЖytynyt"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Levitysjakelua ei voida kДyttДД ilman NIS aluetta"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "MitД osiota haluat kДyttДД juuriosiona."
+
+#, fuzzy
+#~ msgid "Autologin at startup"
+#~ msgstr "X kДynnistyksessД"
+
+#, fuzzy
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Valitse uusi koko"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Sinulla ei ole tarpeeksi tilaa Lnx4win:lle"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U Mt"
+
+#~ msgid "Automated"
+#~ msgstr "Automaattinen"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# '\204' is 'Д' (adiaeresis) in cp437 encoding.
+# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Tervetuloa LILO k└ytt■j└rjestelm└nvalitsijaan!\n"
+#~ "\n"
+#~ "Listataksesi mahdolliset valinnat paina <TAB>.\n"
+#~ "\n"
+#~ "Ladataksesi jonkun niist└ kirjoita sen nimi ja paina <ENTER>\n"
+#~ "tai odota %d sekuntia oletusk└ynnistyst└.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Tervetuloa SILO kayttojarjestelmanvalitsijaan!\n"
+#~ "\n"
+#~ "Listataksesi mahdolliset valinnat paina <TAB>.\n"
+#~ "\n"
+#~ "Ladataksesi jonkun niista kirjoita sen nimi ja paina <ENTER>\n"
+#~ "tai odota %d sekuntia oletuskaynnistysta.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILOn pДДasetukset"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "TДssД ovat SILO:n asetustietueet.\n"
+#~ "Voit lisДtД uusia tai muuttaa olemassaolevia."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Otsikko on jo kДytЖssД"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO:n asennus epДonnistu. Seuraava virhe tapahtui:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX yrittДД ensin etsiД yhtД tai useampaa PCI\n"
+#~ "SCSI-ohjainta. Jos ohjelma lЖytДД ohjaimia ja tietДД mitД\n"
+#~ "ajureita ne kДyttДvДt ohjaimet otetaan kДyttЖЖn automaattisesti.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos SCSI-ohjaimesi on ISA-vДylДssД, tai PCI-vДylДssД, mutta\n"
+#~ "DrakX ei tiedД mitД ajuria kДyttДisi ohjaimelle, tai jos sinulla ei ole\n"
+#~ "SCSI ohjaimia ollenkaan, sinulta kysytДДn erikseen onko sinulla\n"
+#~ "ohjaimia vai ei. Jos ohjaimia ei ole, vastaa \"Ei\". Jos sinulla on yksi\n"
+#~ "tai useampia, vastaa \"KyllД\". Saat tДmДn jДlkeen listan ajureista, joista\n"
+#~ "sinun tulee valita yksi.\n"
+#~ "\n"
+#~ "\n"
+#~ "Valittuasi ajurin DrakX kysyy haluatko mДДritellД ajurille\n"
+#~ "optioita. Anna ajurin ensin itse hakea laitteita:\n"
+#~ "tДmД toimii yleensД hienosti.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jos tДmДkДДn ei toimi ДlД unohda tietoja laitteistasi joita voit saada\n"
+#~ "ohjeista tai Windowsista (jos sinulla on se asennettuna),\n"
+#~ "kuten asennusohje neuvoo. NДmД ovat asetuksia joita sinun tulee\n"
+#~ "antaa ajurille."
+
+#~ msgid "Shutting down"
+#~ msgstr "Sammutan"
+
#~ msgid "useless"
#~ msgstr "kДyttЖkelvoton"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index feb9f1f9f..2aff585a1 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,4 +1,4 @@
-# SOME DESCRIPTIVE TITLE.
+# Irish translations for DrakX, the Mandrake Installer.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Irish Linux Users Group <ilug@linux.ie>, 1999
#
@@ -7,13 +7,14 @@
# Donncha с'Caoimh <donncha.ocaoimh@tradesignals.com-nospam>
# Barra с'Caoimh <Care of donncha.ocaoimh@tradesignals.com-nospam>
# John McDonnell <johnmc@student.nuigalway.ie-nospam>
+# Alastair McKinstry <mckinstry@computer.org>
# Who've all contributed so far.
# Proinnsias 16-Dec-1999
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-12-16 10:33+0100\n"
"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
"Language-Team: Gaeilge <ga@li.org>\n"
@@ -21,44 +22,90 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Carta Grafach"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Roghnaigh carta grafachach"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Roghnaigh freastalaМ X"
-#: ../../Xconfigurator.pm_.c:174
-#, fuzzy
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
-msgstr "freastalaМ"
+msgstr "X freastalaМ"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree86 %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "CИn sort iontrАil a suimigh do"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "CumraМocht XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Roghnaigh an mИid cuimhne atА id' charta grafachach"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Roghnaigh cumraМocht an freastalaМ"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Roghnaigh scАileАn"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "ScАileАn"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -72,39 +119,39 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "RАta athnuachana cothromАnach"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "RАta athnuachana ingearach"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "NМl aon scАileАn cumraithe"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "NМl aon carta grafachach cumraithe"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
-msgstr ""
+msgstr "NМl aoin rИiteach cumraithe"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Trialaigh an cumraМocht"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -112,177 +159,168 @@ msgstr ""
"\n"
"bain trial as roinnt paraimИadair a athrЗ"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
-msgstr "Tharla EarrАid"
+msgstr "Tharla EarrАid:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Ag ИalЗ i %d siocand"
-#: ../../Xconfigurator.pm_.c:378
-#, fuzzy
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "An bhfuil seo ceart?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Tharla earrАid, bain trial as roinnt paraimИadair a athrЗ"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
-msgstr ""
+msgstr "RИiteach"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr ""
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "FreastalaМ XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "TaispИan gach ceann"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
+msgstr "RИiteachaМ"
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Leagan amach eocharchlАra: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "CineАl luchСg: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Gaireas luchСige: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "ScАileАn: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr ""
+msgstr "ScАileАn HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr ""
+msgstr "ScАileАn VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Carta Grafach: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Cuimhne grafach: %s kb\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "ScАileАn VertRefresh: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "RИiteachaМ"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "FreastalaМ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "FreastalaМ XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Ag ullmhЗ cumraМocht X-Windows"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Athraigh ScАileАn"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Athraigh carta grafach"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Athraigh cumraМocht an freastalaМ"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr ""
+msgstr "Athraigh RИiteach"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "TaispeАn Eolas"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Bain trial as arМs"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "иalaigh"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "CИard a theastaМonn uait a dhИanamh?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr ""
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Coimead an cumraМocht IP atА ann"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X ag tЗs"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -290,398 +328,554 @@ msgstr ""
"Is fИidir linn do rМomhaire a shocrЗ le X a thosnЗ i ndhiadh bootАil.\n"
"An dteastaМonn uait go dtosnСfar X nuair a aththosnМtear an rМomhaire?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Uath-Logann"
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Is fИidir linn do rМomhaire a shocrЗ le X a thosnЗ i ndhiadh bootАil.\n"
+"An dteastaМonn uait go dtosnСfar X nuair a aththosnМtear an rМomhaire?"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Roghnagih an ЗsАidoer gneАs:"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Roghnaigh an BainistИoir Fhuinneoga a ЗsАsd:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 dath (8 giotАin)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mМle dath (15 giotАin)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mМle dath (16 giotАin)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milliЗn dath (24 giotАin)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 billiЗn dath (32 giotАin)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB nС nМos mС"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "GnАth VGA, 640x480 ag 60Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 ag 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr ""
+msgstr "CinИal 8514, 1024x768 ag 87 Hz Idirdhuillith (gan 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 ag 87 Hz Idirdhuillithe, 800x600 ag 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "SVGA Leathnaithe, 800x600 ag 60 Hz, 640x480 ag 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA Neamh-idirdhuillithe, 1024x768 ag 60 Hz, 800x600 ag 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA d'Аrd minicМocht, 1024x768 ag 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "ScАileАn ilmhinicМocht a bhfuil in ann do 1280x1024 ag 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "ScАileАn ilmhinicМocht a bhfuil in ann do 1280x1024 ag 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "ScАileАn ilmhinicМocht a bhfuil in ann do 1280x1024 ag 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "ScАileАn a bhfuil in ann do 1600x1200 ag 70Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "ScАileАn a bhfuil in ann do 1600x1200 ag 76Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "default"
-msgstr " ? (gnАs %s)"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "tie"
-msgstr "GnМomhach"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "Uath-IP"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr ""
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Roghnaigh rang feistiЗ"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "FeistiЗ LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
-msgstr "CrМochnithe"
+msgstr "Ar bith"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
#, fuzzy
msgid "Which bootloader(s) do you want to use?"
msgstr "CИn tescАn ag a dteastaМonn uait И a bhogadh?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "FeistiЗ cСd tosnaithe"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
-msgstr ""
+msgstr "Gaireas bootАil"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
-msgstr ""
+msgstr "Compact"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
-msgstr ""
+msgstr "compact"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr ""
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
+msgstr "MСd fМs"
+
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Pasfhocal (arМs)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr ""
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
-msgstr ""
+msgstr "teorannaigh"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
-msgstr ""
+msgstr "PrМomhroghanna bootАil"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "NМ mar a chИile na pasfhocail"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
-msgstr ""
+msgstr "Suim"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "CrМochnithe"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "CИn sort iontrАil a suimigh do?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "CO Eile (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr ""
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
-msgstr ""
+msgstr "Iomha"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
-msgstr ""
+msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
-msgstr ""
+msgstr "Append"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
-msgstr ""
+msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
-msgstr ""
+msgstr "LИamh-ScrМobh"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
-msgstr ""
+msgstr "Table"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
-msgstr ""
+msgstr "Baolach"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
-msgstr ""
+msgstr "LipИad"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
-msgstr ""
+msgstr "GnАth"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
-msgstr ""
+msgstr "Scrios iontrАil"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
-msgstr ""
+msgstr "NМl ceadaigh an lipИad folamh ann"
-#: ../../any.pm_.c:167
-#, fuzzy
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Is ann cheana don ainm ЗsАideora seo"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Fuair %s %s comhИadan"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "An bhfuil ceann eile agat?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "An bhfuil comhИadan %s agat?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "NМl"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "TА"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "LeАmh an t-eolais crua-earra"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Ag feistАil tiomanaМ do %s, carta %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modМl %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr ""
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr ""
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Cumraigh roghanna"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr ""
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Roghachais modЗil:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr ""
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr ""
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "ClАr TosnЗ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d noimИaid"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 noimИad"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d soicМnd"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr ""
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Dealaigh"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FormАidigh"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "AthmИidigh"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "CineАl"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr ""
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "ScrМobh /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Aisig С comhad"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "SabhАil i gcomhad"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Aisig С dhiosca flapach"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "SabhАil ar dhiosca flapach"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "FormАidigh gach ceann"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "TА na ranna prМofa uilig ЗsАidthe"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "NМ fИidir liom rann eile a cur isteach"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -689,61 +883,63 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amhАin le bheith in ann "
"rannsМnithe a cruthЗ"
-#: ../../diskdrake.pm_.c:53
-#, fuzzy
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
-msgstr "Scriobh clАr-ranna"
+msgstr ""
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Cealaigh"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Scriobh clАr-ranna"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "AthlСdaigh"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Folamh"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Eile"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Malairte"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Folamh"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Eile"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "CineАl cСrais-comhadlanna"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "SonraМ"
-#: ../../diskdrake.pm_.c:138
-#, fuzzy
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -754,94 +950,94 @@ msgstr ""
"Molaim dhuit an rann sin a athmhИadЗ ar dtЗs\n"
"(roghnaigh an rann agus brЗ ar \"AthmИidigh\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "LИigh go curamach"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "EarrАid"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir DioscthiomАnt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "CineАl: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "TЗs: teascАn %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "MИid: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s teascАin"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "SorcСir %d go sorcСir %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "FormАidithe\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "NeamhformАidithe\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -849,81 +1045,79 @@ msgstr ""
"Rann tosaithe de ghnАth\n"
" (do thosnЗ MS-DOS, nМ lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "LeibhИal %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "MИid smutАn %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "DioscaМ RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake.pm_.c:259
-#, fuzzy
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
-msgstr "Cruthaigh rann nua"
+msgstr ""
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "MИid: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "CИimseasamh: %s sorcСir, %s ceann, %s teascАn\n"
-#: ../../diskdrake.pm_.c:267
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:273
+#, c-format
msgid "Partition table type: %s\n"
-msgstr "Rann FrИamhach"
+msgstr "CinИal tabla rann: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "ar bhЗs %d, id %d\n"
-#: ../../diskdrake.pm_.c:281
-#, fuzzy
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
-msgstr "ScАileАn"
+msgstr ""
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "GnМomhach"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Bain С RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Roghnaigh gnМomh"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -935,7 +1129,7 @@ msgstr ""
"MА tА tЗ ag ЗsАid LILO nМ oibrСidh sИ, nС nМl /boot uait muna n-ЗsАideann tЗ "
"LILO"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -946,201 +1140,207 @@ msgstr ""
"sorcСir ar an dhiosca, agus nМl aon rann /boot agat.\n"
"MА tА tЗ chun LILO a ЗsАid, beidh ort rann /boot a cruthЗ ar ball."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
+#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "caillfear gach sonra ar an rann seo"
+msgstr ""
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon nСs?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "иalaigh gan sabhАil"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "иalaigh gan an clАr-ranna a scrМobh?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Athraigh cineАl ranna"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "CИn rann atА uait?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:490
+#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "CИn tescАn ag a dteastaМonn uait И a bhogadh?"
+msgstr ""
-#: ../../diskdrake.pm_.c:485
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:491
+#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "CИn tescАn ag a dteastaМonn uait И a bhogadh?"
+msgstr ""
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:509
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:515
+#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "caillfear gach sonra ar an rann seo"
+msgstr ""
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Ag formАidiЗ"
-#: ../../diskdrake.pm_.c:512
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:518
+#, c-format
msgid "Formatting loopback file %s"
-msgstr "Ag formАidiЗ rann %s"
+msgstr ""
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formАidiЗ rann %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "I ndhiadh na rann ar fad formАidiЗ,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "caillfear gach sonra ar na ranna"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "CИn diosca ag a dteastaМonn uait И a bhogadh?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "TeascАn"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "CИn tescАn ag a dteastaМonn uait И a bhogadh?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "ScrМobhfar clАr diosca %s go dhiosca!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an rМomhaire a aththosnЗ sula ndИanfar an athrЗ"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Ag rМomhadh teorainn na cСrais-comhadlanna FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Ag athmИadЗ"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Scriobh clАr-ranna"
+
+#: ../../diskdrake.pm_.c:597
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake.pm_.c:588
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:599
+#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "caillfear gach sonra ar an rann seo"
+msgstr ""
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Roghnaigh an mИid nua"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "TeascАn tosasch: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "MИid i MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "CineАl cСras-comhadlanna"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "TosaМocht: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1148,11 +1348,11 @@ msgstr ""
"NМl an mИid cИanna ar an rann cЗltaca\n"
"Lean ar aghaidh ar aon nСs?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1160,77 +1360,77 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clАr-ranna a tarrthАil"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "gaireas"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "leibhИal"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "mИid smutАn"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID atА ann le mИadЗ"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nua"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "FormАidiЗ %s de %s teipithe"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nМl a fhios agam conas %s a formАidiЗ go %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr ""
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr ""
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "EarrАid ag oscailt %s do scrМobh: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1239,51 +1439,80 @@ msgstr ""
"nua a cruthu. Ba chСir duit do chuid crua-earraМ a seiceАil le cЗis an fadhb "
"a aimsiЗ"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "NМl aon ranna agat!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr ""
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr ""
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1291,325 +1520,753 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
+msgstr ""
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:267
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:155
-msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:303
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:329
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:341
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:380
msgid ""
-"Enter:\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
+"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
msgstr ""
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
+"\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
+"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
+"\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
+msgstr ""
+
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:542
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1633,34 +2290,33 @@ msgid ""
"and maintenance purposes."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1671,7 +2327,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1688,14 +2344,45 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1707,57 +2394,61 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1766,324 +2457,346 @@ msgid ""
"the additional instructions."
msgstr ""
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Roghnaigh do theanga"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Roghnaigh rang feistiЗ"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr ""
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Cumraigh luchСg"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Roghnaigh mhИarchlАr"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Eile"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Socraigh cСras chomhad"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "FormАidigh ranna"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Roghnaigh pacАistМ ..."
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Feistigh cСras"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Cumraigh grИasАnЗ"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "RЗnscrМobhach"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Cumraigh crios ama"
-#: ../../install2.pm_.c:56
-#, fuzzy
+#: ../../install2.pm_.c:53
msgid "Configure services"
-msgstr "Cumraigh printИir"
+msgstr "Cumraigh seirbhisМ"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Cumraigh printИir"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
-msgstr "зsАideoir Nua ..."
+msgstr "Suimigh ЗsАideoir"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
-msgstr ""
+msgstr "Cruthaigh an diosca "
-#: ../../install2.pm_.c:63
-#, fuzzy
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
-msgstr "Feistigh cСras"
+msgstr "Feistigh cСd tosnaithe"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Cumraigh X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Eirigh as FeistiЗ"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "EarrАid ag lИamh comhad $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr ""
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr ""
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:41
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 ""
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
msgstr ""
-"Ni fИidir liom an tАbla rainn a lИamh, tА mАchaillМ ann :(\n"
-"Leanfaidh mИ orm ag cealЗ droch rainn"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"Theip ar DiskDrake an tabla rainn a lИamh i gceart.\n"
-"Lean ort, ar do phriacal fИin!"
+"NМl aon ranna malairte agat\n"
+"\n"
+"x1Lean ar aghaidh ar aon nСs?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Ag cЗrdach an rann frИamhach."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "зsАid spАs saor"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Eolas"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: NМ rann frИamhach atА anseo, roghnaigh ceann eile."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr ""
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "NМ fuaireathas rann frИamhach"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Ag iarraidh an clАr-ranna a tarrthАil"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ni feidir craoladh gan fearann NIS"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr ""
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "EarrАid ag lИamh comhad $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "CИn rann a bhfuil tЗ ag iarraidh ЗsАid mar rann frИamhach"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ta earraid ann, nМl a fhios agam conas И a cheartЗ.\n"
-"Lean ort, ar do phriacal fИin."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Roghnaigh an mИid nua"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Pointe taca dublach %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "MИid i MB do Rhann FrИamhach:"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "MИid i MB do rhann malairte:"
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "NМl dioscthiomАnt flapach ar fАil"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Ag rМomhadh teorainn na cСrais-comhadlanna FAT"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Ag tosnЗ ar cИim `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-#: ../../install_steps_graphical.pm_.c:287
-#, fuzzy
-msgid "Choose the size you want to install"
-msgstr "Roghnaigh pacАistМ ..."
-
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "MИid iomlАn: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Leagan: %s\n"
+msgid "partition %s"
+msgstr "rann %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "MИid: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "Theip ar uathathmhИadЗ FAT: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Eolas"
-
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Fan tamall, "
-
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Am fagtha "
-
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Am iomlАn "
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Dealaigh Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:156
#, c-format
-msgid "Installing package %s"
+msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Lean ar aghaidh ar aon nСs?"
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "MСd SaineolaМ"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr ""
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "зsАid diskdrake"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Bain ЗsАid as an cumraМocht X11 atА ann?"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "зsАid fdisk"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:199
+#: ../../install_interactive.pm_.c:195
#, fuzzy
-msgid "You don't have any windows partitions!"
+msgid "You don't have enough free space on your Windows partition"
msgstr "NМl aon ranna agat!"
-#: ../../install_steps_gtk.pm_.c:201
+#: ../../install_interactive.pm_.c:210
#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "NМl aon ranna agat!"
+msgid "I can't find any room for installing"
+msgstr "NМ fИidir liom rann eile a cur isteach"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Theip ar rannЗ: %s"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Ag tosnЗ suas an ghrИasАn"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Ag dЗnadh sМos an ghreasАn"
+
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ta earraid ann, nМl a fhios agam conas И a cheartЗ.\n"
+"Lean ort, ar do phriacal fИin."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Pointe taca dublach %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Theip ar uathathmhИadЗ"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "FАilte go %s"
-#: ../../install_steps_gtk.pm_.c:265
-#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "CИn rann a bhfuil tЗ ag iarraidh ЗsАid mar rann frИamhach"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "NМl dioscthiomАnt flapach ar fАil"
-#: ../../install_steps_gtk.pm_.c:284
-#, fuzzy
-msgid "Choose the sizes"
-msgstr "Roghnaigh an mИid nua"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Ag tosnЗ ar cИim `%s'\n"
-#: ../../install_steps_gtk.pm_.c:286
-#, fuzzy
-msgid "Root partition size in MB: "
-msgstr "Rann FrИamhach"
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:288
-#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "MИid i MB: "
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2092,7 +2805,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2102,104 +2815,186 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:335
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
-msgstr "Roghnaigh pacАistМ ..."
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Eolas"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "FeistiЗ"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
-msgstr "%d pacАistМ"
+msgstr "PacАiste mМcheart"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
-msgstr ""
+msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Leagan: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "MИid: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
-msgstr ""
+msgstr "TАbhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
-#, fuzzy, c-format
+#: ../../install_steps_gtk.pm_.c:363
+#, c-format
msgid "Total size: %d / %d MB"
-msgstr "MИid iomlАn: "
+msgstr "MИid iomlАn: %d / %d MB"
+
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Roghnaigh pacАistМ ..."
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:496
-#, fuzzy
-msgid "The following packages are going to be installed/removed"
-msgstr "Roghnaigh pacАistМ ..."
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Ag FeistiЗ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Ag meastЗ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Fan tamall, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Am fagtha "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Am iomlАn "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Cealaigh"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pacАistМ"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Ag feistiАl pacАiste %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2209,368 +3004,403 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "AthmИidigh"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Lean ar aghaidh ar aon nСs?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Tharla earrАid"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "EocharclАr"
-#: ../../install_steps_interactive.pm_.c:73
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "CИn leagan amach atА ar d'eocharchlАrsa"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Rann FrИamhach"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "CИard И an rann frИamhach (/) ded' chСras?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
-msgstr ""
+msgstr "Rann FeistiЗ"
-#: ../../install_steps_interactive.pm_.c:100
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
-msgstr "CИn teanga atА uait?"
-
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr ""
+msgstr "CИn rann feistiЗ atА uait?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
+msgstr "FeistiЗ"
-#: ../../install_steps_interactive.pm_.c:110
+#: ../../install_steps_interactive.pm_.c:183
#, fuzzy
-msgid "Automated"
-msgstr "Uath-IP"
+msgid "Is this an install or an update?"
+msgstr "Is iad an Feistigh nС tarrthАil ?"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Molta"
+
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Socraithe"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "SaineolaМ"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "UasgrАdЗ"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "GnАth"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "StАisiЗn Oibre"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Forbairt"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "FreastalaМ"
-#: ../../install_steps_interactive.pm_.c:141
+#: ../../install_steps_interactive.pm_.c:228
#, fuzzy
-msgid "Which usage is your system used for ?"
+msgid "What is your system used for?"
msgstr "CИn ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:152
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "CИn cinИal luchСg atА agat?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Gaireas luchСige"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:172
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Cumraigh CАrtaМ PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
-msgstr "Trialaigh an cumraМocht"
+msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nМl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-#, fuzzy
-msgid "Please choose a partition to use as your root partition."
-msgstr "CИn rann a bhfuil tЗ ag iarraidh ЗsАid mar rann frИamhach"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:210
-msgid "You need to reboot for the partition table modifications to take place"
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
msgstr ""
+"Ni fИidir liom an tАbla rainn a lИamh, tА mАchaillМ ann :(\n"
+"Leanfaidh mИ orm ag cealЗ droch rainn"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"Theip ar DiskDrake an tabla rainn a lИamh i gceart.\n"
+"Lean ort, ar do phriacal fИin!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Rann FrИamhach"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "CИard И an rann frИamhach (/) ded' chСras?"
+
+#: ../../install_steps_interactive.pm_.c:352
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "Beidh ort an rМomhaire a aththosnЗ sula ndИanfar an athrЗ"
+
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna atА le formАidiЗ"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
-msgstr "Ag formАidiЗ rann %s"
+msgstr "Ag formАidiЗ ranna"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Ag curdach do na pacАistМ atА ar fАil"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Ag cЗrdach pacАistМ le hЗasgrАdЗ"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "CrМochnaithe (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "мosta (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Molta (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Socraithe"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "RoghnЗ GrЗpa PacАistМ"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
+"Ag feisteАil pacАiste %s\n"
+"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
-msgstr "Trialaigh an cumraМocht"
-
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Coimead an cumraМocht IP atА ann"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Athchumraigh an grИasАnЗ anois"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "NА cumraigh grИasАnЗ anois"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "CumraМocht GrИasАnЗ"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "TА grИasАnЗ lСganta cumraithe cheana fИin. An dteastaМonn uait:"
-
-#: ../../install_steps_interactive.pm_.c:421
-#, fuzzy
-msgid "Do you want to configure a local network for your system?"
-msgstr "An dteastaМonn uait grИasАnЗ a chumrЗ ded' chСras?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "nМ fuaireathas cАrta grИasАnЗ"
-
-#: ../../install_steps_interactive.pm_.c:449
-#, fuzzy
-msgid "Modem Configuration"
-msgstr "Trialaigh an cumraМocht"
-
-#: ../../install_steps_interactive.pm_.c:450
-#, fuzzy
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "An dteastaМonn uait grИasАnЗ a chumrЗ ded' chСras?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Ag cumrЗ glИas grИasАnЗ %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Uath-IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "Seoladh IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Ag cumrЗ an ghrИasАn"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "DИan iarracht mСideam a aimsiЗ?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Uimhir fСn"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Script-bhunaithe"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2609,89 +3439,92 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:592
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
-msgstr "Roghnaigh pacАistМ ..."
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "CИn ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Bain ЗsАid as scАilcomhad"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "scАil"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Bain ЗsАid as pasfhocail MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Bain ЗsАid as NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "leathanaigh buМ"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
-msgstr ""
+msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
-msgstr ""
+msgstr "FreastalaМ NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
-msgstr ""
+msgstr "Suimigh ЗsАideoir"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -2699,62 +3532,79 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "FМor ainm"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Ainm ЗsАideora"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
-msgstr ""
+msgstr "Blaosc"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
-msgstr ""
+msgstr "Dealbh"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "TА an pasfhocal seo ro-shimplМ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Is ann cheana don ainm ЗsАideora seo"
-#: ../../install_steps_interactive.pm_.c:747
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
#, fuzzy
msgid "Second floppy drive"
-msgstr "SabhАil ar dhiosca flapach"
+msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
-msgstr ""
+msgstr "ScipeАil"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -2768,192 +3618,156 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "BrСn orm, nМl aon dioscthiomАnt flapach ar fАil"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
+#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
+msgstr "Roghnaigh na ranna atА le formАidiЗ"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:806
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
-msgid "Do you want to use SILO?"
-msgstr "CИard a theastaМonn uait a dhИanamh?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:858
-#, fuzzy
-msgid "Partition"
-msgstr "Rann FrИamhach"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:902
msgid "Preparing bootloader"
-msgstr ""
+msgstr "Feistigh cСras"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "CИard a theastaМonn uait a dhИanamh?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
-msgstr ""
+msgstr "Bocht"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
-msgstr ""
+msgstr "Bun"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
-msgstr ""
+msgstr "GnАth"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
-msgstr ""
+msgstr "аrd"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
-msgstr ""
+msgstr "ParanСid"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Ceisteanna eile"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
+#, fuzzy
msgid "Use hard drive optimisations?"
-msgstr ""
+msgstr "Athraigh cumraМocht an freastalaМ"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
-msgstr ""
+msgstr "Glan /tmp nuair a thosnaigh an corАis"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
+#, fuzzy
msgid "Enable num lock at startup"
-msgstr ""
+msgstr "X ag tЗs"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Bain ЗsАid as an cumraМocht X11 atА ann?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1030
+#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "Cur isteach diosca sa dioscthiomant %s"
+msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -2966,140 +3780,17 @@ msgid ""
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Ag dЗnadh sМos"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "DИan iarracht cartaМ PCMCIA a lorg?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Cumraigh CАrtaМ PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, fuzzy, c-format
-msgid "Try to find %s devices?"
-msgstr "DИan iarracht mСideam a aimsiЗ?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "An bhfuil ceann eile agat?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "An bhfuil comhИadan %s agat?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr ""
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
-msgstr ""
+msgstr "FeistiЗ Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Fan tamall"
@@ -3109,7 +3800,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "DИbhrМoch (%s), bМ nМos cruinn\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Droch rogha, aththrialaigh\n"
@@ -3123,533 +3814,1037 @@ msgstr " ? (gnАs %s)"
msgid "Your choice? (default %s) "
msgstr "Do rogha? (gnАs %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Do rogha? (gnАs %s ЗsАid `none' do ceann ar bith) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
-msgstr ""
+msgstr "CeichМs"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
-msgstr ""
+msgstr "GearmАinis"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
-msgstr ""
+msgstr "SpАinnis"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
-msgstr ""
+msgstr "Fionnlainnis"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
-msgstr ""
+msgstr "Francais"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
-msgstr ""
+msgstr "Ioruais"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
-msgstr ""
+msgstr "Polainnis"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
-msgstr ""
+msgstr "RuislМs"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
-msgstr ""
+msgstr "MИarchlАr UK"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
-msgstr ""
+msgstr "MeАrchlАr US"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
-msgstr ""
+msgstr "AirmИinis (sean)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
+#, fuzzy
msgid "Armenian (typewriter)"
-msgstr ""
+msgstr "AirmИinis (typewriter)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
+#, fuzzy
msgid "Armenian (phonetic)"
-msgstr ""
+msgstr "AirmИinis (phonetic)"
+
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AsarbaidseАnais (laidin)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:127
+#, fuzzy
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AsarbaidseАnais (cyrillic)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
-msgstr ""
+msgstr "Beilgeach"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
-msgstr ""
+msgstr "BulgАiris"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr ""
+msgstr "BealarЗisis"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (MeiriceА)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
-msgstr ""
+msgstr "GreicМs"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
-msgstr ""
+msgstr "UngАiris"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
-msgstr ""
+msgstr "CrСitis"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Peirsis"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
-msgstr ""
+msgstr "мoslainnis"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
-msgstr ""
+msgstr "IodАilis"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "SeapАinis (106 eochair)"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
-msgstr ""
+msgstr "мsiltМris"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "LiotuАinis AZERTY (nua)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
+#, fuzzy
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "LiotuАinis \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
+msgstr "LiotuАinis \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "Polainnis (qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "Polainnis (qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
-msgstr ""
+msgstr "PortaingИilis"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
-msgstr ""
+msgstr "RЗisis (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
-msgstr ""
+msgstr "Sualainnis"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
-msgstr ""
+msgstr "SlСbhИinis"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
-msgstr ""
+msgstr "SlСbaicis"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
-msgstr ""
+msgstr "TИalainnis"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
+#, fuzzy
msgid "Turkish (traditional \"F\" model)"
-msgstr ""
+msgstr "TUircis (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
+#, fuzzy
msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+msgstr "Tuircis (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
-msgstr ""
+msgstr "зcrАinis"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
-msgstr ""
+msgstr "MearchlАr US (idirnaisiЗnta)"
+
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "BhМtneamis"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr ""
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
-msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
-"\n"
-msgstr ""
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "LuchСg - Sun"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../mouse.pm_.c:31
+msgid "Standard"
msgstr ""
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr ""
+#: ../../mouse.pm_.c:32
+#, fuzzy
+msgid "Logitech MouseMan+"
+msgstr "LuchСg Bus Logitech"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+#, fuzzy
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse (PS/2)"
+
+#: ../../mouse.pm_.c:34
+#, fuzzy
+msgid "GlidePoint"
+msgstr "ALPS GlidePoint (PS/2)"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#, fuzzy
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse (PS/2)"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#, fuzzy
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse (PS/2)"
+
+#: ../../mouse.pm_.c:38
+#, fuzzy
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll (PS/2)"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "GnАth"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "leibhИal"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../mouse.pm_.c:49
+#, fuzzy
+msgid "Generic 2 Button Mouse"
+msgstr "LuchСg 3-cnaipe (PS/2)"
+
+#: ../../mouse.pm_.c:50
+#, fuzzy
+msgid "Generic 3 Button Mouse"
+msgstr "LuchСg 3-cnaipe (PS/2)"
+
+#: ../../mouse.pm_.c:52
+#, fuzzy
+msgid "Logitech MouseMan"
+msgstr "LuchСg Bus Logitech"
+
+#: ../../mouse.pm_.c:53
+#, fuzzy
+msgid "Mouse Systems"
+msgstr "Mouse Systems (srathach)"
+
+#: ../../mouse.pm_.c:55
+#, fuzzy
+msgid "Logitech CC Series"
+msgstr "LuchСg Logitech CC (srathach)"
+
+#: ../../mouse.pm_.c:56
+#, fuzzy
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+
+#: ../../mouse.pm_.c:58
+#, fuzzy
+msgid "MM Series"
+msgstr "MM Series (srathach)"
+
+#: ../../mouse.pm_.c:59
+#, fuzzy
+msgid "MM HitTablet"
+msgstr "MM HitTablet (srathach)"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "LuchСg Logitech (srathach, sИan cinИal C7)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "LuchСg ar bith"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
msgstr ""
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
msgstr ""
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ar bith"
+
+#: ../../mouse.pm_.c:72
+#, fuzzy
+msgid "No mouse"
+msgstr "LuchСg ar bith"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "An bhfuil seo ceart?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Cumraigh IdirlМon"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "Cumraigh ISDN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
msgstr ""
-#: ../../mouse.pm_.c:21
+#: ../../netconnect.pm_.c:158
#, fuzzy
-msgid "Sun - Mouse"
-msgstr "LuchСg ar bith"
+msgid "Connection Configuration"
+msgstr "CumraМocht IdirlМon."
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
msgstr ""
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ na Carta"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "I/A Carta"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "I/A_0 Carta"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "I/A_1 Carta"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
msgstr ""
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Uimhir fСn"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
msgstr ""
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
msgstr ""
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Pasfhocal"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Pasfhocal (arМs)"
+
+#: ../../netconnect.pm_.c:208
+#, fuzzy
+msgid "Europe"
+msgstr "Eorap (EDS11)"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Eorap (EDS11)"
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Trialaigh an cumraМocht"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "NМl fhМos agam"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "CИn cinИal c atА uait?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Lean"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Tobscoir"
+
+#: ../../netconnect.pm_.c:245
+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 ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "CИn sort carta ISDN atА uait?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Roghnaigh an clАrИadan ghrИasАn"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "ClАrИadan GrИasАn"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "Cumraigh ADSL"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
msgstr ""
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "DИan iarracht mСideam a aimsiЗ?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
msgstr ""
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Roghanna 'Dialup'"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Ainm Nasc"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Uimhir fСn"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Ainm Login:"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "DeimniЗ"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Script-bhunaithe"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "TeirminИal-bhunaithe"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Ainm Fearannas"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Cead FreastalaМ DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Dara FreastalaМ DNS"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Bainteach le hIdirlМon"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Bainteach le hIdirlМon"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Nasc na hIdirlМon agus cumraМocht"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Carta ISDN inmheАnamach"
+
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "MСideam seantrach"
+
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
msgstr ""
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "LuchСg ar bith"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Fraince"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "TМr Eile"
+
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
msgstr ""
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "mСideim alcatel"
+
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "mСideim ECI"
+
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "ЗsАid pppoe"
+
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "nА ЗsАid pppoe"
+
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Cumraigh nasc ghrИasАn"
+
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Cumraigh grИasАnЗ АitiЗl"
+
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "CumraМocht GrИasАnЗ"
+
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
msgstr ""
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nasc na hIdirlМon agus cumraМocht"
+
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "TА grИasАnЗ lСganta cumraithe cheana fИin. An dteastaМonn uait:"
+
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
msgstr ""
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "CumraМocht GrИasАnЗ"
+
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
msgstr ""
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "nМ fuaireathas cАrta grИasАnЗ"
+
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Cumraigh grИasАnЗ"
+
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "сstainm"
+
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
+#: ../../network.pm_.c:302
+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 ""
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Ag cumrЗ glИas grИasАnЗ %s"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Uath-IP"
+
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "Seoladh IP"
+
+#: ../../network.pm_.c:314
+msgid "Netmask"
msgstr ""
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
+#: ../../network.pm_.c:341
+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 ""
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "freastalaМ DNS"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Inneal Geata:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Gaireas na hInneal Geata:"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Cumraigh seach-freastalaМ"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Seach-HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Seach-FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
msgstr ""
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "An bhfuil seo ceart?"
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr ""
-#: ../../partition_table.pm_.c:528
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "EarrАid ag lИamh comhad %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
-msgstr ""
+msgstr "Droch comhad chЗltaca"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
-msgstr ""
+msgstr "EarrАidh ag scrМobh comhad %s"
#: ../../pkgs.pm_.c:20
msgid "mandatory"
-msgstr ""
+msgstr "sainordaitheach"
#: ../../pkgs.pm_.c:21
msgid "must have"
-msgstr ""
+msgstr "riachtanas"
#: ../../pkgs.pm_.c:22
msgid "important"
-msgstr ""
+msgstr "tАbhachtach"
#: ../../pkgs.pm_.c:24
msgid "very nice"
-msgstr ""
+msgstr "an-dheas"
#: ../../pkgs.pm_.c:25
-#, fuzzy
msgid "nice"
-msgstr "gaireas"
+msgstr "deas"
#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-#, fuzzy
msgid "interesting"
-msgstr "ag athmИadЗ"
+msgstr "suimiЗil"
#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
#: ../../pkgs.pm_.c:31
msgid "maybe"
-msgstr ""
+msgstr "b'fhИidir"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
-msgstr ""
+msgstr "i18n (tАbhachtach)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
-msgstr ""
+msgstr "i18n (an-dheas)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
-msgstr ""
+msgstr "i18n (deas)"
+
+#: ../../printer.pm_.c:19
+msgid "Local printer"
+msgstr "PrintИir АitiЗl"
-#: ../../placeholder.pm_.c:5
+#: ../../printer.pm_.c:20
#, fuzzy
-msgid "Show less"
-msgstr "TaispИan gach ceann"
+msgid "Remote printer"
+msgstr "Scrios iontrАil"
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:244
-msgid "Local printer"
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr ""
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "PrintИir GrИasАn (soicИad)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
-msgstr ""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
-msgstr ""
+msgstr "NetWare"
+
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "URI Gaireas PrintИir"
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
@@ -3664,45 +4859,44 @@ msgstr ""
msgid "A printer, model \"%s\", has been detected on "
msgstr ""
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
-msgstr ""
+msgstr "Gaireas na PrintИir аitiЗl"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-#: ../../printerdrake.pm_.c:47
-#, fuzzy
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
-msgstr "PrintИir"
+msgstr "Gaireas PrintИir"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr ""
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
-msgstr ""
+msgstr "Scrios ciЗ"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
+msgstr "Roghanna PrintИir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3711,30 +4905,27 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:81
-#, fuzzy
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
-msgstr "freastalaМ"
+msgstr "freastalaМ Сstann SMB"
-#: ../../printerdrake.pm_.c:82
-#, fuzzy
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
-msgstr "freastalaМ"
+msgstr "IP freastalaМ SMP"
-#: ../../printerdrake.pm_.c:83
-#, fuzzy
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
-msgstr "FМor ainm"
+msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
-msgstr ""
+msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
-msgstr ""
+msgstr "Roghanna PrintИir NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3742,145 +4933,204 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:107
-#, fuzzy
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
-msgstr "PrintИir"
+msgstr "FreastalaМ PrintИir"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "сstainm PrintИir"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Poirt"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "CИn sort printИir atА ort?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#, fuzzy
+msgid "Do you want to test printing?"
+msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr ""
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr ""
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr ""
+msgstr "Cumraigh PrintИir"
-#: ../../printerdrake.pm_.c:163
-#, fuzzy
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
-msgstr "PrintИir"
+msgstr "Roghanna PrintИir"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
-msgstr ""
+msgstr "MИid PАipИir"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr ""
-#: ../../printerdrake.pm_.c:170
-#, fuzzy
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
-msgstr "Athraigh cumraМocht an freastalaМ"
+msgstr "Roghanna tiomАnaМ Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr ""
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr ""
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr ""
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr ""
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr ""
-#: ../../printerdrake.pm_.c:198
-#, fuzzy
-msgid "Do you want to test printing?"
-msgstr "An bhfuil tЗ ag iarraidh an cumraМocht a thrial?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:238
-#, fuzzy
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "PrintИir"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "An dteastaЛonn uait printИir a chumrЗ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Ag meastЗ"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Nasc PrintИir"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
-msgstr "Bog"
+msgstr "Scrios ciЗ"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Ainm PrintИir"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Cuntas"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "аit"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -3888,59 +5138,57 @@ msgid ""
"connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
-msgstr ""
+msgstr "Ainm ciЗ"
-#: ../../printerdrake.pm_.c:277
-#, fuzzy
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
-msgstr "TeascАn"
+msgstr ""
-#: ../../printerdrake.pm_.c:278
-#, fuzzy
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
-msgstr "PrintИir"
+msgstr "Nasc PrintИir"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
-msgstr ""
+msgstr "teip ar 'mkraid'"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -3948,7 +5196,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -3956,13 +5204,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -3972,51 +5220,51 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4024,7 +5272,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4032,92 +5280,240 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
+msgstr ""
+"Ni fИidir liom an tАbla rainn a lИamh, tА mАchaillМ ann :(\n"
+"Leanfaidh mИ orm ag cealЗ droch rainn"
+
+#: ../../standalone/drakboot_.c:25
+msgid "Configure LILO/GRUB"
+msgstr "Cumraigh LILO/GRUB"
+
+#: ../../standalone/drakboot_.c:26
+msgid "Create a boot floppy"
+msgstr "Cruthaigh flapach bootАil"
+
+#: ../../standalone/drakboot_.c:28
+msgid "Format floppy"
+msgstr "Formadaigh flapach"
+
+#: ../../standalone/drakboot_.c:40
+msgid "Choice"
+msgstr "Rogha"
+
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
"\n"
+"What would you like to do?"
msgstr ""
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
#, fuzzy
-msgid "Configure LILO/GRUB"
+msgid "disable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
msgstr "Cumraigh X"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
#, fuzzy
-msgid "Create a boot floppy"
-msgstr "SabhАil ar dhiosca flapach"
+msgid "enable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
#, fuzzy
-msgid "Format floppy"
-msgstr "FormАidigh gach ceann"
+msgid "using module"
+msgstr "LuchСg ar bith"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "NМl aon gaireas ghreasАn san do chorАs!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
#, fuzzy
-msgid "Choice"
-msgstr "gaireas"
+msgid "Configuring..."
+msgstr "Ag cumraigh IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Comhghairdeas!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
#: ../../standalone/draksec_.c:28
msgid ""
@@ -4166,55 +5562,58 @@ msgstr ""
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "CИn leagan amach atА ar d'eocharchlАrsa"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Athraigh RИiteach"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "CИn cinИal luchСg atА agat?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr ""
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr ""
#: ../../standalone/rpmdrake_.c:25
-#, fuzzy
msgid "reading configuration"
-msgstr "Trialaigh an cumraМocht"
+msgstr "ag leАmh cumraМocht"
#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
#: ../../standalone/rpmdrake_.c:253
msgid "File"
-msgstr ""
+msgstr "Comhad"
#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
-msgstr ""
+msgstr "Cuardaigh"
#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-#, fuzzy
msgid "Package"
-msgstr "%d pacАistМ"
+msgstr "PacАiste"
#: ../../standalone/rpmdrake_.c:51
-#, fuzzy
msgid "Text"
-msgstr "saineolaМ"
+msgstr "Teacs"
#: ../../standalone/rpmdrake_.c:53
-#, fuzzy
msgid "Tree"
-msgstr "Cruthaigh"
+msgstr "Crann"
#: ../../standalone/rpmdrake_.c:54
msgid "Sort by"
@@ -4222,41 +5621,35 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:55
msgid "Category"
-msgstr ""
+msgstr "Saghas"
#: ../../standalone/rpmdrake_.c:58
-#, fuzzy
msgid "See"
-msgstr "FreastalaМ"
+msgstr "Amharc"
#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-#, fuzzy
msgid "Installed packages"
-msgstr "%d pacАistМ"
+msgstr "PacАistМ feistiЗ"
#: ../../standalone/rpmdrake_.c:60
-#, fuzzy
msgid "Available packages"
-msgstr "Ag curdach do na pacАistМ atА ar fАil"
+msgstr "PacАistМ le fАil"
#: ../../standalone/rpmdrake_.c:62
-#, fuzzy
msgid "Show only leaves"
-msgstr "TaispИan gach ceann"
+msgstr ""
#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
msgstr ""
#: ../../standalone/rpmdrake_.c:68
-#, fuzzy
msgid "Collapse all"
-msgstr "Glan gach ceann"
+msgstr ""
#: ../../standalone/rpmdrake_.c:70
-#, fuzzy
msgid "Configuration"
-msgstr "Trialaigh an cumraМocht"
+msgstr "cumraМocht"
#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
@@ -4267,18 +5660,16 @@ msgid "Update location"
msgstr ""
#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-#, fuzzy
msgid "Remove"
-msgstr "Bog"
+msgstr "ScrМos"
#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
msgstr ""
#: ../../standalone/rpmdrake_.c:103
-#, fuzzy
msgid "Find Package"
-msgstr "%d pacАistМ"
+msgstr "Cuardaigh PacАiste"
#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
@@ -4290,17 +5681,15 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:139
msgid "Files:\n"
-msgstr ""
+msgstr "Comhaid:\n"
#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-#, fuzzy
msgid "Uninstall"
msgstr "Eirigh as FeistiЗ"
#: ../../standalone/rpmdrake_.c:163
-#, fuzzy
msgid "Choose package to install"
-msgstr "Roghnaigh pacАistМ ..."
+msgstr "Roghnaigh pacАistМ a feistiЗ ..."
#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
@@ -4308,12 +5697,11 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
-msgstr ""
+msgstr "Fan tamall"
#: ../../standalone/rpmdrake_.c:209
-#, fuzzy
msgid "The following packages are going to be uninstalled"
-msgstr "Roghnaigh pacАistМ ..."
+msgstr ""
#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
@@ -4321,7 +5709,7 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
msgid "Regexp"
-msgstr ""
+msgstr "Regexp"
#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
@@ -4331,7 +5719,7 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:278
#, c-format
msgid "%s not found"
-msgstr ""
+msgstr "Teip ag cuardach %s"
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
@@ -4362,9 +5750,8 @@ msgid "Give a name (eg: `extra', `commercial')"
msgstr ""
#: ../../standalone/rpmdrake_.c:291
-#, fuzzy
msgid "Directory"
-msgstr "TeascАn"
+msgstr "FillteАn"
#: ../../standalone/rpmdrake_.c:294
msgid "No cdrom available (nothing in /mnt/cdrom)"
@@ -4407,66 +5794,308 @@ msgstr ""
msgid "Finding leaves takes some time"
msgstr ""
-#~ msgid "Recommended"
-#~ msgstr "Molta"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Cumraigh IdirlМon"
#, fuzzy
-#~ msgid "Choose other CD to install"
-#~ msgstr "Roghnaigh pacАistМ ..."
+msgid "Internet"
+msgstr "suimiЗil"
-#~ msgid "Help"
-#~ msgstr "Cabhair"
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Ag thМoslСdАil pacАistМ rЗneolaМochta"
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
-#~ msgid "Setup SCSI"
-#~ msgstr "Cumraigh SCSI"
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
-#~ msgid "Which language do you want?"
-#~ msgstr "CИn teanga atА uait?"
+msgid "Office"
+msgstr "Oifig"
-#~ msgid "Local LAN"
-#~ msgstr "GrИasАn LСgАnta"
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
-#~ msgid "Windows(TM)"
-#~ msgstr "Windows(TM)"
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
-#~ msgid "Partitioning failed: no root filesystem"
-#~ msgstr "Theip ar rannЗ: nМ ann do comhadchoras frИamach"
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "IlmheАnach"
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Droch comhad kickstart %s (theip %s)"
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
-#~ msgid "Size: %s MB"
-#~ msgstr "MИid: %s MB"
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
-#~ msgid "resizing"
-#~ msgstr "ag athmИadЗ"
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
-#~ msgid "formatting"
-#~ msgstr "ag formАidiЗ"
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
-#~ msgid "changing type of"
-#~ msgstr "athraigh an cineАl de"
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
-#~ msgid "After %s partition %s,"
-#~ msgstr "I ndhiadh %s rann %s,"
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
-#~ msgid "server"
-#~ msgstr "freastalaМ"
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
-#~ msgid "expert"
-#~ msgstr "saineolaМ"
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "IlmheАnach"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "IlmheАnach"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "IlmheАnach"
-#~ msgid "developer"
-#~ msgstr "foirbreoir"
+msgid "Gnome"
+msgstr "Gnome"
-#~ msgid "beginner"
-#~ msgstr "tosaitheoir"
+msgid "Documentation"
+msgstr "DoicimИid KDE agus Mandrake"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "IlmheАnach"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Total size: "
+#~ msgstr "MИid iomlАn: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Athchumraigh an grИasАnЗ anois"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Bainteach le hIdirlМon"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Bainteach le hIdirlМon"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Bainteach le hIdirlМon"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Bainteach le hIdirlМon"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Uath-RИiteach"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Uath-cuardaigh rИiteach"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "FeistiЗ/TarrthАil"
+
+#~ msgid "Rescue"
+#~ msgstr "TarrthАil"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "LuchСg ADB Apple"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "LuchСg ADB Apple (2 CnaipМ)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "LuchСg Apple ADB (3+ CnaipМ)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "LuchСg USB Apple"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "LuchСg USB Apple (2 CnaipМ)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "LuchСg USB Apple (3+ CnaipМ)"
+
+#~ msgid "Generic Mouse (PS/2)"
+#~ msgstr "Mouse GnАth (PS/2)"
+
+#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
+#~ msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+
+#~ msgid "ASCII MieMouse (PS/2)"
+#~ msgstr "ASCII MieMouse (PS/2)"
+
+#~ msgid "Genius NetMouse Pro (PS/2)"
+#~ msgstr "Genius NetMouse Pro (PS/2)"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "LuchСg Bus ATI"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "LuchСg Bus Microsoft"
+
+#~ msgid "USB Mouse"
+#~ msgstr "LuchСg USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "LuchСg USB (3 cnaipМ nС nМos mС)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A nС barr (srathach)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (srathach)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (srathach)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (srathach)"
+
+#~ msgid "Microsoft IntelliMouse (serial)"
+#~ msgstr "Microsoft IntelliMouse (srathach)"
+
+#~ msgid "Logitech MouseMan/FirstMouse (serial)"
+#~ msgstr "Logitech MouseMan/FirstMouse (srathach)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "LuchСg de gnАth (srathach)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft nС comhoriЗnach (srathach)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "LuchСg 3-cnaipe de gnАth (srathach)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (srathach)"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "CИard a theastaМonn uait a dhИanamh?"
+
+#~ msgid "Host name:"
+#~ msgstr "Ainm ЗsАideora"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "CИn cinИal luchСg atА agat?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "RЗnscrМobhach"
+
+#~ msgid "Configure LAN"
+#~ msgstr "Cumraigh LAN"
+
+#~ msgid "End configuration"
+#~ msgstr "иirigh as cumraМocht"
+
+#, fuzzy
+#~ msgid "Do not set up networking"
+#~ msgstr "Cumraigh grИasАnЗ"
+
+#, fuzzy
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "An dteastaМonn uait grИasАnЗ a chumrЗ ded' chСras?"
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Feistigh nС uasgrАdaigh ?"
+#~ msgid "Show less"
+#~ msgstr "TaispИan nМos lЗ"
-#~ msgid "What usage do you want?"
-#~ msgstr "CИn ЗsАid atА uait?"
+#~ msgid "Show more"
+#~ msgstr "TaispeАn nМos mo"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 95e8b406f..f83ed203f 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-06-08 18:14+0200\n"
"Last-Translator: JesЗs Bravo аlvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -15,43 +15,91 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "XenИrico"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Tarxeta grАfica"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Elixa unha tarxeta grАfica"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Elixa un servidor X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Servidor XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "©Que tipo de entrada desexa engadir?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "ConfiguraciСn despois da instalaciСn"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Seleccione a cantidade de memoria da sua tarxeta grАfica"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Escolla as opciСns para o servidor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Elixa o monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -74,39 +122,40 @@ msgstr ""
"pode daЯa-lo seu monitor.\n"
"No caso de dЗbida, elixa unha configuraciСn conservadora."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Frecuencia de recorrido horizontal"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Frecuencia de recorrido vertical"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "O monitor non estА configurado"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "A tarxeta grАfica aМnda non estА configurada"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "ResoluciСns aМnda non elexidas"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "©Desexa proba-la configuraciСn?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Aviso: probar И perigoso nesta tarxeta grАfica"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Proba da configuraciСn"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -114,184 +163,168 @@ msgstr ""
"\n"
"probe a cambiar algЗns parАmetros"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Ocorreu un erro:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "SaМndo en %d segundos"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "©и esta a configuraciСn correcta?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Ocorreu un erro, probe a cambiar algЗns parАmetros"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "ResoluciСns automАticas"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Para atopa-las resoluciСns dispoЯibles vanse probar varias.\n"
-"A sЗa pantalla vai palpebrexar...\n"
-"Pode apagala se o desexa, escoitarА un pitido cando estea rematado"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "ResoluciСn"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Elixa a resoluciСn e a profundidade de cor"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Tarxeta grАfica: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Servidor XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Ver todo"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "ResoluciСns"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Podo tratar de atopa-las resoluciСns dispoЯibles (ex. 800x600).\n"
-"Non obstante, isto pode ocasionar que a mАquina se bloquee.\n"
-"©Desexa intentalo?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"NingЗn modo vАlido atopado\n"
-"Intente con outra tarxeta de video ou monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "ElecciСn do tipo de teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de rato: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do rato: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical do monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Tarxeta grАfica: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memoria da tarxeta grАfica: %s KB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "OpciСns da profundidade de cor"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "ResoluciСns"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Servidor XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Preparando a configuraciСn de X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Troca-lo monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Troca-la tarxeta grАfica"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Troca-las opciСns do servidor"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Troca-la resoluciСn"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "BЗsqueda automАtica de resoluciСns"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Amosar informaciСn"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Probar de novo"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "SaМr"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "©QuИ desexa facer?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "©Esquece-los trocos?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Conserva-la configuraciСn IP actual"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Por favor, entre de novo en %s para activa-los trocos"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Por favor, saia e entСn use Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Lanzar X11 С arrincar"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -299,228 +332,228 @@ msgstr ""
"PСdese configura-lo seu ordenador para que lance automАticamente\n"
"as X С arrincar. ©Desexa que se executen as X С reiniciar?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"PСdese configura-lo seu ordenador para que lance automАticamente\n"
+"as X С arrincar. ©Desexa que se executen as X С reiniciar?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Escoller o tamaЯo novo"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Elixa a utilidade que quere usar"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 millСns de cores (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 mil millСns de cores (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 KB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 KB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ou mАis"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA estАndar, 640x480 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Compatible 8514, 1024x768 a 87 Hz entrelazado (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 a 87 Hz entrelazado, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Super VGA estendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA non-entrelazado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA alta-frecuencia, 1024x768 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Monitor multi-frecuencia soportando 1280x1024 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Monitor multi-frecuencia soportando 1280x1024 a 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Monitor multi-frecuencia soportando 1280x1024 a 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor soportando 1600x1200 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor soportando 1600x1200 a 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "crecho"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "por omisiСn"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "gravata"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "morena"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "rapaza"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "loira"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automАxico"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Primeiro sector da particiСn de arranque"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "InstalaciСn de LILO/grub"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "©Onde quere instalar o cargador de arrinque?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "InstalaciСn de LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "NingЗn"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "©Que cargador(es) de arrinque quere usar?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "OpciСns principais do cargador de arrinque"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funcion en BIOS antigas)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Retardo antes de arrinca-la imaxe por omisiСn"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Modo de vМdeo"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Retardo antes de arrinca-la imaxe por omisiСn"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Restrinxir opciСns da liЯa de comandos"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "restrinxido"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "OpciСns principais do cargador de arrinque"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opciСn ╚restrinxir opciСns da liЯa de comandos╩ non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "TИnteo de novo por favor"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -528,167 +561,357 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas mАis ou cambia-las que xa existen."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "©Que tipo de entrada desexa engadir?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "©Que tipo de entrada desexa engadir?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "RaМz"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lectura/escritura"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "TАboa"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Por omisiСn"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Aceptar"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Quitar entrada"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Esta etiqueta xa se estА a usar"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s interfaces %s atopadas"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "©Ten algunha outra?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "©Ten algunha interface %s?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Non"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Si"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "InformaciСn sobre o hardware"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalando controlador para a tarxeta %s %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(mСdulo %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "©Que controlador de %s desexa que se probe?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"NalgЗns casos, o controlador de %s necesita informaciСn extra\n"
+"para funcionar correctamente, aМnda que normalmente funcione sin ela.\n"
+"©Desexa especificar informaciСn extra para o controlador ou deixar que el\n"
+"analice o seu equipo e atope a informaciСn que necesita? аs veces,\n"
+"analizar o equipo pode provocar que se pare, pero non deberМa\n"
+"causar ningЗn dano."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "AutodetecciСn"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Especificar as opciСns"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Agora pode dar as opciСns para o mСdulo %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"AquМ deben ir as diferentes opciСns para o mСdulo %s.\n"
+"As opciСns son da forma ╚nome=valor nome2=valor2 ...╩.\n"
+"Por exemplo pode ter ╚io=0x300 irq=7╩"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "OpciСns do mСdulo:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Fallo o carga-lo mСdulo %s\n"
+"©Desexa reintentalo con outros parАmetros?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Benvido a %s, o selector de sistema operativo!\n"
+"\n"
+"Para mira-las posibles selecci╒ns, prema <TAB>.\n"
+"\n"
+"Para arrincar unha delas, teclee o seu nome e prema <ENTER>\n"
+"ou espere %d segundos para que arrinque o sistema por omision.\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "╜Benvido a GRUB, o escolledor de sistemas operativos!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Use as teclas %c e %c para cambiar a entrada marcada."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "comandos antes de arrincar, ou 'c' para unha li╓a de comandos."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "A entrada marcada arrincarase autom═ticamente en %d segundos."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "non hai espacio dabondo en /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Escritorio"
+
+# (Puxen o З en cp437 porque creo que asМ o garda a FAT)
+# No, long names are in vfat, that is unicode.
+# The Linux, according to default locale, will do the proper conversion;
+# that is, the string must be in the encoding of the 'gl' locale.
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "MenЗ Inicio"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "SaМndo en %d segundos"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Borrar"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Punto de montaxe"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Escribir /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Trocar С modo experto"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Trocar С modo normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Gardar nun ficheiro"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formatar todas"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "AsignaciСn automАtica"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "TСdalas particiСns primarias estАn usadas"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Non podo engadir mАis particiСns"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -696,59 +919,63 @@ msgstr ""
"Para ter mАis particiСns, por favor borre unha para poder crear unha "
"particiСn estendida"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "TАboa de particiСn de rescate"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Re-Facer"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Escribir tАboa de particiСn"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Re-Cargar"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Valdeiro"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Outros"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Intercambio"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Valdeiro"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Outros"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detalles"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -760,17 +987,17 @@ msgstr ""
"AconsИllaselle que primeiro a redimensione\n"
"(prema nela, e entСn en \"Redimensionar\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Por favor, faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "║Lea con cuidado!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -779,77 +1006,77 @@ msgstr ""
"Se ten pensado usar aboot, teЯa coidado de deixar un espacio libre (2048\n"
"sectores son abondo) no comezo do disco"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "TeЯa coidado: esta operaciСn И perigosa."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Erro"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Punto de montaxe: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximaciСn)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Comezo: sector %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "TamaЯo: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -857,79 +1084,79 @@ msgstr ""
"ParticiСn de arrinque por omisiСn\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "TamaЯo do bloque de datos %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Prema nunha particiСn"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "TamaЯo: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "XeometrМa: %s cilindros, %s testas, %s sectores\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de tАboa de particiСn: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Activar"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Engadir С RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Modifica-lo RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Escolla a acciСn"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -940,7 +1167,7 @@ msgstr ""
"(nun cilindro > 1024). Se vostede usa LILO, non vai funcionar, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -952,68 +1179,70 @@ msgstr ""
"Se pensa usar o selector de SO de arranque LILO, tome en conta de\n"
"engadir unha particiСn /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
+#, fuzzy
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Vostede seleccionou unha particiСn RAID software como raМz (/).\n"
"Non hai ningЗn cargador de arrinque que poida manexar isto sen unha\n"
"particiСn /boot.\n"
"Lembre por tanto engadir unha particiСn /boot se quere usar lilo ou grub"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"с cambia-lo tipo da particiСn %s, perderanse tСdolos datos desta particiСn"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "©Continuar de calquera xeito?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "SaМr sen gardar"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "©SaМr do programa sen garda-la tАboa de particiСns?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Trocar tipo de particiСn"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "©QuИ tipo de particiСn desexa?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particiСns mАis pequenas que 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "©Onde desexa monta-lo ficheiro loopback %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "©Onde desexa monta-lo dispositivo %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1022,140 +1251,145 @@ msgstr ""
"usar de loopback.\n"
"Quite o loopback primeiro"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "с formata-la particiСn %s, perderanse tСdolos datos desta particiСn"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a particiСn %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Logo de formatar tСdalas particiСns,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "perderanse os datos nesas particiСns"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "©A que disco desexa desprazala?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "©A que sector desexa desprazala?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Desprazando particiСn..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "║Escribirase С disco a tabla de particiСn da unidade %s!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesita reinicia-lo equipo para que a modificaciСn sexa tomada en conta"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os lМmites do sistema de ficheiros FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "©QuИ tipo de particiСn desexa?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "DeberМa facerse unha copia de seguridade dos datos desta particiСn"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"с redimensiona-la particiСn %s, perderanse tСdolos datos desta particiСn"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Escoller o tamaЯo novo"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Crear unha particiСn nova"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Sector de comezo: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "TamaЯo en MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Esta particiСn non pode usarse para loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa estА a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. ©Usalo?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Elixa un ficheiro"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1163,11 +1397,11 @@ msgstr ""
"A tАboa de particiСns de socorro non ten\n"
"o mesmo tamaЯo. ©Desexa continuar igual?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1175,79 +1409,79 @@ msgstr ""
"Inserte un disquete no lector\n"
"Perderanse tСdolos datos no disquete"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Tratando de recupera-la tАboa de particiСns"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "nivel"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "tamaЯo do bloque de datos"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "novo"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "DescoЯИcese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "montaxe de nfs fallou"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "mount fallou: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben comezar con /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha particiСn con punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Puntos de montaxe circulares %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro o abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1255,76 +1489,81 @@ msgstr ""
"Ocorreu un erro - non se atopou ningЗn dispositivo vАlido para crear novos "
"sistemas de ficheiros. Verifique o seu equipo para ver a razСn deste problema"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "║Non ten ningunha particiСn!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Escolla o idioma para a instalaciСn e para o sistema."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Escolla a disposiciСn do teclado que corresponde С seu na lista"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Escolla a disposiciСn do teclado que corresponde С seu na lista"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Elixa \"InstalaciСn\" se non hai ningunha versiСn de Linux anterior,\n"
-"ou se desexa instalar mАis dunha distribuciСn ou versiСn.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Elixa \"ActualizaciСn\" se desexa actualizar a partir dunha versiСn\n"
-"anterior de Linux Mandrake:\n"
-"5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"ou 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Elixa:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - AutomАtica: Se nunca instalou Linux antes, escolla esta. NOTA:\n"
-" a rede non se configurarА durante a instalaciСn, utilice \"LinuxConf\"\n"
-" para configurala cando a instalaciСn estea completa.\n"
"\n"
-" - Personalizada: Se xa estА familiarizado con GNU/Linux, pode entСn "
-"escoller\n"
-" o uso primario da sЗa mАquina. Mire abaixo para os detalles.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Experto: Isto supСn que vostede se manexa con GNU/Linux e quere facer\n"
-" unha instalaciСn altamente personalizada. Do mesmo xeito que coa\n"
-" clase de instalaciСn \"Personalizada\", poderА escolle-lo uso do seu\n"
-" sistema. Pero, por favor, ║NON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-" ESTа A FACER!\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1332,12 +1571,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Elixa:\n"
"\n"
@@ -1345,37 +1585,36 @@ msgstr ""
"escoller\n"
" o uso primario da sЗa mАquina. Mire abaixo para os detalles.\n"
"\n"
+"\n"
" - Experto: Isto supСn que vostede se manexa con GNU/Linux e quere facer\n"
" unha instalaciСn altamente personalizada. Do mesmo xeito que coa\n"
" clase de instalaciСn \"Personalizada\", poderА escolle-lo uso do seu\n"
" sistema. Pero, por favor, ║NON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
-" ESTа A FACER!\n"
+" ESTа A FACER!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"As diferentes posibilidades para o uso da sЗa mАquina (supoЯendo que "
"escolleu\n"
@@ -1399,159 +1638,347 @@ msgstr ""
" de bases de datos... Como tal, non espere que haxa cousas como KDE ou\n"
" GNOME instaladas.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX tentarА primeiro atopa-lo(s) adaptador(es) SCSI en bus PCI.\n"
-"Se o(s) atopa e sabe que controlador(es) usar, o(s) aplicarА\n"
-"automaticamente.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
-"Se o seu adaptador SCSI И ISA, ou se И PCI pero DrakX non sabe\n"
-"que controlador usar para esa tarxeta, ou se non ten adaptadores SCSI,\n"
-"preguntarАselle se ten algЗn ou non. Se non ten ningЗn responda ╚Non╩.\n"
-"Se ten un ou varios responda ╚Si╩. AparecerА entСn unha lista de\n"
-"controladores, dos que ten que seleccionar un.\n"
"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
-"Unha vez que seleccione o controlador, DrakX preguntaralle se quere\n"
-"especificar algЗn parАmetro. Primeiro, probe e deixe que o controlador\n"
-"analice o hardware: normalmente funciona ben.\n"
"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
-"Se non, non esqueza a informaciСn que pode obter da sЗa documentaciСn\n"
-"ou a partir de Windows (se o ten instalado no seu sitema), coma se\n"
-"suxire na guМa de instalaciСn. Eses son os parАmetros que terА que\n"
-"lle dar С controlador."
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Neste punto, vostede pode escolle-la(s) particiСn(s) que desexa usar para\n"
-"instala-lo seu sistema Linux-Mandrake, se xa foron definidas (por unha\n"
-"instalaciСn anterior de Linux ou por outra utilidade de particionamento).\n"
-"Noutros casos, deberanse defini-las particiСns do disco duro. Esta "
-"operaciСn\n"
-"consiste en dividir lСxicamente a capacidade do disco duro en Аreas "
-"separadas\n"
-"para o seu uso.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Se ten que crear novas particiСns, use \"AsignaciСn automАtica\" para crear\n"
-"automАticamente as particiСns para Linux. Pode escolle-lo disco que quere\n"
-"particionar premendo en \"hda\" para a primeira unidade IDE, \"hdb\" para\n"
-"a segunda, ou \"sda\" para a primeira unidade SCSI, e asМ o resto.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"DЗas particiСns habituais son: a particiСn raМz (/), que И o punto inicial\n"
-"da xerarquМa de directorios do sistema de ficheiros, e /boot, que contИn\n"
-"tСdolos ficheiros necesarios para principa-lo sistema operativo cando se\n"
-"acende o ordenador.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"Xa que os efectos deste proceso son normalmente irreversibles, facer\n"
-"particiСns pode intimidar e poЯer nervioso a un usuario non experimentado.\n"
-"A utilidade DiskDrake simplifica o proceso para que o usuario non teЯa que\n"
-"selo. Consulte a documentaciСn e tСmese o seu tempo antes de continuar.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Pode usar calquera opciСn co teclado: percorra as particiСns usando Tab e\n"
-"as frechas Arriba/Abaixo. Se unha particiСn estА seleccionada, pode usar:\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c para crear unha nova particiСn (cando a escollida estА baleira)\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-d para borrar unha particiСn\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-m para establece-lo punto de montaxe\n"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"As particiСns recИn creadas deben ser formatadas para que o sistema\n"
-"poda usalas (formatar significa crear un sistema de ficheiros). Agora\n"
-"tamИn pode formatar particiСns creadas anteriormente e en uso, se desexa\n"
-"borrar tСdolos datos que conten. Nota: non И necesario formatar as\n"
-"particiСns que xa existen, en particular se desexa conserva-los datos\n"
-"que conten. TМpicamente mantИЯense /home e /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Agora pode selecciona-lo grupo de paquetes que desexa instalar\n"
"ou actualizar.\n"
@@ -1562,139 +1989,153 @@ msgstr ""
"с final da lista pode marca-la opciСn \"SelecciСn individual de paquetes\";\n"
"neste caso terА que percorrer mАis de 1000 paquetes..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Se ten tСdolos CDs na lista superior, prema Aceptar.\n"
"Se non ten ningЗn deses CDs, prema Cancelar.\n"
"Se sС faltan algЗns dos CDs, desmАrqueos, e prema Aceptar."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"Os paquetes escollidos estАn agora a seren instalados. Esta\n"
-"operaciСn deberМa levar algЗns minutos, agАs que vostede escollese\n"
-"actualizar un sistema que xa existe, neste caso pode que lle leve\n"
-"mАis tempo incluso antes de que a actualizaciСn comece."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Se DrakX non puido atopa-lo seu rato, ou se vostede quere\n"
-"comprobar quИ И o que fixo, presentarАselle a lista de ratos\n"
-"enriba.\n"
-"\n"
-"\n"
-"Se vostede estА de acordo cos parАmetros do DrakX, vaia А\n"
-"seguinte secciСn que queira, premendo no menЗ da esquerda. Noutro\n"
-"caso, escolla no menЗ un tipo de rato que vostede pense que И o\n"
-"mellor para o seu.\n"
-"\n"
-"\n"
-"No caso dun rato de porto serie, terА que lle dicir С DrakX o\n"
-"porto serie С que estА conectado."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Por favor, escolla o porto correcto. Por exemplo, o porto COM1 en MS\n"
"Windows chАmase ttyS0 en Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Esta secciСn adМcase a configurar unha rede de Аrea local (LAN)\n"
-"ou un mСdem.\n"
-"\n"
-"Escolla \"Rede local\" e DrakX tentarА atopar un adaptador Ethernet\n"
-"na sЗa mАquina. Os adaptadores PCI deberМan ser atopados e inicializados\n"
-"automАticamente. Nembargantes, se o seu perifИrico И ISA, a\n"
-"autodetecciСn non funcionarА, e terА que escoller un controlador\n"
-"da lista que aparecerА entСn.\n"
-"\n"
-"\n"
-"Do mesmo xeito que para os adaptadores SCSI, vostede pode deixar que o\n"
-"controlador analice o adaptador de primeiras, ou senСn vostede terА que\n"
-"indica-las opciСns С controlador que vostede terА que obter da\n"
-"documentaciСn do seu aparato.\n"
-"\n"
-"\n"
-"Se instala un sistema Linux-Mandrake nunha mАquina que И parte dunha\n"
-"rede que xa existe, o administrador da rede xa lle darМa toda a\n"
-"informaciСn necesaria (direcciСn IP, submАscara ou simplemente mАscara\n"
-"de rede, e o nome da mАquina). Se estА activando unha rede privada na\n"
-"sЗa casa, por exemplo, terА que escolle-las direcciСns.\n"
-"\n"
-"\n"
-"Escolla \"Chamar cun mСdem\" e configurarase unha conexiСn a Internet\n"
-"cun mСdem. DrakX tentarА atopa-lo seu mСdem, e se non pode, vostede terА\n"
-"que indica-lo porto serie correcto onde estА conectado o seu mСdem."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Vostede pode agora introduci-las opciСns de chamada. Se non estА seguro de\n"
+"que escribir, a informaciСn correcta pode obtela do seu ISP."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Introduza:\n"
"\n"
@@ -1710,7 +2151,22 @@ msgstr ""
"esta opciСn. Neste caso, non И necesario ningЗn valor en \"DirecciСn IP\".\n"
"Se non estА seguro, pregunte С seu administrador de rede ou ISP.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Se a sЗa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregЗntelle С\n"
+"seu administrador de rede."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1718,7 +2174,7 @@ msgstr ""
"Vostede pode agora introduci-las opciСns de chamada. Se non estА seguro de\n"
"que escribir, a informaciСn correcta pode obtela do seu ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1726,13 +2182,15 @@ msgstr ""
"Se vai usar proxys, configЗreos agora. Se non sabe se vai usar proxys,\n"
"pregunte С seu administrador de rede ou С seu ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1743,13 +2201,19 @@ msgstr ""
"PercАtese de que ten que escolle-lo espello e os paquetes criptogrАficos\n"
"de acordo coa sЗa lexislaciСn."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Agora pode escolle-la sЗa zona horaria dependendo de onde viva.\n"
"\n"
@@ -1757,15 +2221,22 @@ msgstr ""
"Linux xestiona a hora en GMT ou \"Hora do Meridiano de Greenwich\", e a\n"
"traslada А hora local dependendo da zona que vostede escolla."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"Agora poderА escoller que servicios quere que sexan arrincados С inicio.\n"
"Cando o seu rato pasa por riba dun elemento, unha pequena axuda aparecerА\n"
@@ -1775,81 +2246,159 @@ msgstr ""
"coma un servidor: probablemente non quererА iniciar servicios que non "
"precisa."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux pode utilizar varios tipos de impresoras. Cada un deles\n"
-"necesita unha configuraciСn diferente. Dese conta que o spooler\n"
-"de impresiСn usa 'lp' como o nome por omisiСn da impresora;\n"
-"por tanto ten que ter unha impresora con ese nome; pero pode\n"
-"darlle varios nomes a unha impresora, separados por caracteres '|'.\n"
-"De xeito que se vostede prefere ter un nome mАis significativo, sС ten\n"
-"que poЯelo С principio, p.ex: \"Impresora|lp\".\n"
-"A impresora que teЯa \"lp\" nos seus nomes serА a impresora por defecto.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"Se a sЗa impresora estА conectada directamente С seu ordenador,\n"
-"elixa ╚Impresora local╩. Logo terА que indicar o porto no que estА\n"
-"conectada a sЗa impresora, e escolle-lo filtro de impresiСn adecuado.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Se desexa acceder a unha impresora situada nunha mАquina Unix remota,\n"
-"elixa ╚Impresora remota╩. Para que poida utilizala non И necesario\n"
-"un nome de usuario ou contrasinal, pero necesitarА sabe-lo nome da\n"
-"fila de impresiСn no servidor de impresiСn remoto.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"Se desexa acceder a unha impresora SMB (И dicir, a unha impresora conectada\n"
-"a unha mАquina remota con Windows 9x/NT), deberА especifica-lo seu nome\n"
-"SMB (que non И o seu nome TCP/IP), e posiblemente tamИn a sЗa direcciСn IP,\n"
-"asМ como o nome de usuario, de grupo de traballo e o contrasinal necesarios\n"
-"para acceder А impresora; e, por suposto, o nome da impresora mesma.\n"
-"O mesmo serve para unha impresora Netware, agАs que non necesita a\n"
-"informaciСn sobre o grupo de traballo."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Agora pode introduci-lo contrasinal do superusuario para o seu sistema\n"
"Linux Mandrake. O contrasinal deberА ser tecleado dЗas veces para\n"
@@ -1865,7 +2414,7 @@ msgstr ""
"polo menos. NUNCA debe ser anotado. Non escolla un contrasinal longo\n"
"de mАis ou complicado: ten que ser capaz de lembralo sen moito esforzo."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1874,7 +2423,7 @@ msgstr ""
"shadow\"\n"
"e \"Usar contrasinais MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1882,7 +2431,7 @@ msgstr ""
"Se a sЗa rede usa NIS, escolla \"Usar NIS\". Se non o sabe, pregЗntelle С\n"
"seu administrador de rede."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1925,22 +2474,18 @@ msgstr ""
"vai crear aquМ, e conectarse como root sС para as tarefas de administraciСn\n"
"que o precisen."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"RecomИndase encarecidamente que responda \"Si\" aquМ. Se vostede instala\n"
-"Microsoft Windows mАis adiante, sobrescribirase o sector de arrinque.\n"
-"A menos que fixese un disquete de arrinque coma se lle suxere, non serА\n"
-"capaz de voltar a arrincar Linux."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1953,7 +2498,7 @@ msgstr ""
"A menos que sepa exactamente o que fai, elixa sempre\n"
"\"Primeiro sector do disco (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1963,10 +2508,11 @@ msgstr ""
"\"/dev/hda\" (a unidade mestra da canle primaria) ou \"/dev/sda\" (primeiro\n"
"disco SCSI)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
+#, fuzzy
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1989,7 +2535,8 @@ msgstr ""
"poidendo borrar as entradas correspondentes. Pero neste caso, precisarА\n"
"un disquete de arrinque para poder usalos."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2006,7 +2553,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"As opciСns principais do LILO e do grub son:\n"
@@ -2028,10 +2577,72 @@ msgstr ""
" * normal: escoller modo de texto normal 80x25.\n"
" * <nЗmero>: usa-lo modo de texto correspondente."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+#, fuzzy
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"LILO (O LInux LOader) e Grub son cargadores de arrinque: poden arrincar\n"
+"Linux ou outro sistema operativo presente no seu ordenador.\n"
+"Normalmente, estes outros sitemas son detectados correctamente e "
+"instalados.\n"
+"Se non И o caso, pode engadir unha entrada a man nesta pantalla. Sexa\n"
+"coidadoso na escolla dos parАmetros correctos.\n"
+"\n"
+"\n"
+"TamИn pode non querer dar acceso a eses outros sitemas operativos a "
+"calquera,\n"
+"poidendo borrar as entradas correspondentes. Pero neste caso, precisarА\n"
+"un disquete de arrinque para poder usalos."
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"As opciСns principais do LILO e do grub son:\n"
+" - Dispositivo de arrinque: Establece o nome do dispositivo (p.ex unha\n"
+"particiСn dun disco duro) que contИn o sector de arrinque. A menos que\n"
+"saiba especМficamente que И outro, escolla \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Retardo antes de arrinca-la imaxe por omisiСn: Indica o nЗmero de\n"
+"dИcimas de segundo que agardarА o cargador de inicio antes de arrincar a\n"
+"primeira imaxe. Isto И Зtil nos sistemas que arrincan inmediatamente do\n"
+"disco duro tras activa-lo teclado. O boot loader non agarda se o "
+"\"retardo\"\n"
+"И cero ou non se indica.\n"
+"\n"
+"\n"
+" - Modo de vМdeo: Indica o modo de texto VGA que serА utilizado С\n"
+"arrincar. Os seguintes valores estАn dispoЯibles:\n"
+" * normal: escoller modo de texto normal 80x25.\n"
+" * <nЗmero>: usa-lo modo de texto correspondente."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2055,7 +2666,7 @@ msgstr ""
"Se non, pode voltar atrАs e troca-la configuraciСn; tantas\n"
"veces como sexa necesario."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2063,7 +2674,7 @@ msgstr ""
"Se algo vai mal coa configuraciСn das X, use estas opciСns para configurar\n"
"correctamente o Sistema X Window."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2071,42 +2682,47 @@ msgstr ""
"Se vostede prefere usar un login grАfico, escolla \"Si\". Doutro xeito,\n"
"escolla \"Non\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Vostede pode agora escoller algunhas opciСns diversas para o sistema.\n"
"\n"
@@ -2144,7 +2760,7 @@ msgstr ""
" tralo arrinque, escolla esta opciСn (Nota: Bloq Num pode ou non pode\n"
" funcionar nas X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2158,191 +2774,131 @@ msgstr ""
"automАticamente. Se vostede quere iniciar noutro sistema operativo que xa\n"
"exista, por favor, lea as instrucciСns adicionais."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Escolle-la lingua"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Clase de instalaciСn"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Detectar discos duros"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Configura-lo rato"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Escoller teclado"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Varios"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Sistemas de ficheiros"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatar particiСns"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Seleccionar paquetes"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalar sistema"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Configura-la rede"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "CriptografМa"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Zona horaria"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Configurar servicios"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Configurar impresora"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Engadir usuario"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Crear disquete de arrinque"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Cargador de arrinque"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Configurar as X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Disquete de auto-instalaciСn"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "SaМr da instalaciСn"
-#: ../../install2.pm_.c:337
-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 ""
-"Vostede ten que ter unha particiСn raМz.\n"
-"Para iso, cree unha particiСn (ou prema nunha que xa exista).\n"
-"EntСn escolla a acciСn ``Punto de montaxe'', e pСЯaa a `/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Non podo le-la sЗa tАboa de particiСns, estА demasiado deteriorada :-(\n"
-"Probarase a ir poЯendo en branco as particiСns malas"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Erro o le-lo ficheiro $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake non puido ler correctamente a tАboa de particiСns.\n"
-"║ContinЗe С seu risco!"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Escolla o seu tipo de rato."
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Buscando a particiСn raМz."
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Escolla o seu tipo de rato."
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformaciСn"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s : Esta non И unha particiСn raМz, elixa outra por favor."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Non se atopou ningunha particiСn raМz"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Non se pode usar broadcast sen un dominio NIS"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Erro o le-lo ficheiro $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Ocorreu un erro, e o programa non sabe como manexalo de\n"
-"maneira limpa. ContinЗe С seu risco."
-
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
-"AlgЗns paquetes importantes non se instalaron correctamente.\n"
-"A sЗa unidade de cdrom ou o seu cdrom estАn defectuosos.\n"
-"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Benvido a %s"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Ningunha disqueteira dispoЯible"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando na etapa '%s'\n"
+"Vostede ten que ter unha particiСn raМz.\n"
+"Para iso, cree unha particiСn (ou prema nunha que xa exista).\n"
+"EntСn escolla a acciСn ``Punto de montaxe'', e pСЯaa a `/'"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Debe ter unha particiСn de intercambio"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2352,98 +2908,78 @@ msgstr ""
"\n"
"©Desexa continuar de tСdolos xeitos?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Escolla o tamaЯo que quere instalar"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Usar para loopback"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "TamaЯo total: "
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "VersiСn: %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Formatando as particiСns"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "TamaЯo: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Tratando de recupera-la tАboa de particiСns"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Elixa os paquetes que desexa instalar"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "Usar para loopback"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "©Que particiСn desexa usar para poЯer Linux4Win?"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalar"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Escolla os tamaЯos"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instalando"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "TamaЯo da particiСn raМz en MB: "
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Agarde, por favor, "
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "TamaЯo da particiСn de intercambio en MB: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Tempo restante "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Tempo total "
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "©QuИ tipo de particiСn desexa?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Preparando a instalaciСn"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Calculando os lМmites do sistema de ficheiros FAT"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Instalando o paquete %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "©Seguir adiante?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Houbo un erro С ordea-los paquetes:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "©Usar a configuraciСn existente para X11?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Escolla unha das seguintes clases de instalaciСn:"
-
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "║Non ten ningunha particiСn de windows!"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "║Non ten espacio dabondo para Lnx4win!"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
+#, fuzzy
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2458,33 +2994,153 @@ msgstr ""
"seguridade dos seus datos.\n"
"Cando estea seguro, prema Ok."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "©A que sector desexa desprazala?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "ParticiСn"
+
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "Fallou o redimensionamento automАtico"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "©Que particiСn desexa usar para poЯer Linux4Win?"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Escolla os tamaЯos"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "TamaЯo da particiСn raМz en MB: "
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "TamaЯo da particiСn de intercambio en MB: "
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"с redimensiona-la particiСn %s, perderanse tСdolos datos desta particiСn"
+
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Experto"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Pode agora particionar o seu disco duro %s\n"
+"Cando remate, non olvide gravar usando `w'"
+
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "║Non ten ningunha particiСn de windows!"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Non podo engadir mАis particiСns"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Tipo de tАboa de particiСn: %s\n"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Activando a rede"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Desactivando a rede"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ocorreu un erro, e o programa non sabe como manexalo de\n"
+"maneira limpa. ContinЗe С seu risco."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"AlgЗns paquetes importantes non se instalaron correctamente.\n"
+"A sЗa unidade de cdrom ou o seu cdrom estАn defectuosos.\n"
+"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Benvido a %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Ningunha disqueteira dispoЯible"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entrando na etapa '%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Escolla unha das seguintes clases de instalaciСn:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "O tamaЯo total dos grupos que seleccionou И aproximadamente %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2498,7 +3154,7 @@ msgstr ""
"Un porcentaxe baixo instalarА sС os paquetes mАis importantes;\n"
"un porcentaxe dun 100%% instalarА tСdolos paquetes seleccionados."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2514,58 +3170,102 @@ msgstr ""
"Un porcentaxe baixo instalarА sС os paquetes mАis importantes;\n"
"un porcentaxe de %d%% instalarА tСdolos paquetes posibles."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Vostede poderА escollelos mАis especМficamente no seguinte paso."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Porcentaxe de paquetes a instalar"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Elixa os paquetes que desexa instalar"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalar"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Dependencias automАticas"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Expandir аrbore"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Pechar аrbore"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Trocar entre lista completa e ordenada por grupos"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Paquete errСneo"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "VersiСn: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "TamaЯo: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "TamaЯo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
+"instalalo"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Os seguintes paquetes van ser desinstalados"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Vanse instalar/borrar os seguintes paquetes"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Non pode seleccionar/deseleccionar este paquete"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este И un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquetes. Xa estА instalado"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2573,46 +3273,89 @@ msgstr ""
"Este paquete ten que ser actualizado\n"
"©EstА seguro de querer deseleccionarlo?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquetes. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
-"instalalo"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Vanse instalar/borrar os seguintes paquetes"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Non pode seleccionar/deseleccionar este paquete"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Agarde, por favor, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tempo restante "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Tempo total "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Cancelar"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Preparando a instalaciСn"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalando o paquete %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Aceptar usuario"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2627,187 +3370,391 @@ msgstr ""
"cando estea.\n"
"Se non o ten, prema Cancelar para omitir a instalaciСn deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Redimensionar"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "©Seguir adiante?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Houbo un erro С ordea-los paquetes:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Houbo un erro С instala-los paquetes:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Ocorreu un erro"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Escolla a lingua que queira usar."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Escolla a sЗa disposiciСn de teclado."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Pode escoller outras linguas que estarАn dispoЯibles trala instalaciСn"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "ParticiСn raМz"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "©Cal И a particiСn raМz (/) do seu sistema?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Clase de InstalaciСn"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "©QuИ clase de instalaciСn desexa?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instalar/Actualizar"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "©и unha instalaciСn ou unha actualizaciСn?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "AutomАtica"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Personalizada"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"©EstА seguro de ser un experto? \n"
"AquМ permitirАselle facer cousas mАis potentes pero perigosas."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "ActualizaciСn"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "InformaciСn"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Desenvolvemento"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "© Cal И o uso do seu sistema ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie С que estА conectado o seu rato."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Configurando tarxetas PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Configurando o IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "ningunha particiСn dispoЯible"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Escolla a particiСn para usar como particiСn raМz."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Non podo le-la sЗa tАboa de particiСns, estА demasiado deteriorada :-(\n"
+"Probarase a ir poЯendo en branco as particiСns malas"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake non puido ler correctamente a tАboa de particiСns.\n"
+"║ContinЗe С seu risco!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "ParticiСn raМz"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "©Cal И a particiСn raМz (/) do seu sistema?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reinicia-lo equipo para que a modificaciСn da tАboa\n"
"de particiСns se tome en conta"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Elixa as particiСns que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "©Comproba-los bloques errСneos?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatando as particiСns"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para remata-la instalaciСn,\n"
"por favor, engada algЗn"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Buscando os paquetes dispoЯibles"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Atopando os paquetes a actualizar"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"с seu sistema non lle queda espacio dabondo para a instalaciСn ou "
"actualizaciСn"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normal"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Normal"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Personalizada"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Escolla o tamaЯo que quere instalar"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "SelecciСn dos Grupos de Paquetes"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "SelecciСn individual de paquetes"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2817,12 +3764,12 @@ msgstr ""
"Se non ten ningЗn deses CDs, prema Cancelar.\n"
"Se sС faltan algЗns dos CDs, desmАrqueos, e prema Aceptar."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2830,173 +3777,11 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "ConfiguraciСn despois da instalaciСn"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Conserva-la configuraciСn IP actual"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Reconfigura-la rede agora"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Non configura-la rede"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "ConfiguraciСn da Rede"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "A rede local xa foi configurada. Desexa:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "©Quere configurar unha rede local no seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "non se atopou ningunha tarxeta de rede"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "ConfiguraciСn do MСdem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "©Quere configurar unha conexiСn con mСdem para o seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurar o dispositivo de rede %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Introduza a direcciСn IP desta mАquina, por favor.\n"
-"Cada valor ten que ser introducido coma unha direcciСn IP en\n"
-"notaciСn decimal con puntos (por exemplo: 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP automАtica"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "DirecciСn IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "MАscara de rede:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "As direcciСns IP deben estar no formato 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Configurando a rede"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Introduza o nome da sЗa mАquina.\n"
-"Ese nome debe ser un nome completamente cualificado,\n"
-"como ╚ mimaquina.milab.micomp.es ╩.\n"
-"Pode tamИn introduci-la direcciСn IP da pasarela se usa unha"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Servidor DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Dispositivo de pasarela de rede:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Pasarela:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Nome de mАquina:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "©Desexa que se tente atopar un mСdem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Escolla o porto serie С que estА conectado o seu mСdem."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "OpciСns de chamada"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nome da conexiСn"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "NЗmero de telИfono"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "ID de Login"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AutenticaciСn"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Baseado nun script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Baseado nun terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nome do dominio"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Primeiro Servidor DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Segundo Servidor DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3067,89 +3852,95 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que colle-los paquetes"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Contactando co espello para obte-la lista dos paquetes dispoЯibles"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Elixa os paquetes que desexa instalar."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "©Cal И a sua zona horaria?"
+msgstr "© Cal И o uso do seu sistema ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "©O reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "©QuИ tipo de particiСn desexa?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Usar ficheiro shadow"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Usar contrasinais MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "pАxinas amarelas (yp)"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal И demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "AutenticaciСn NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3159,60 +3950,89 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nome e apelidos"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nome de usuario"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Icona"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Este contrasinal И demasiado simple"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Entre o nome de usuario"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) sС debe conter letras, nЗmeros, '-' o '_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Este nome de usuario xa estА engadido"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Un disco de arrinque personalizado dАlle a posibilidade de arrincar o seu\n"
+"equipo baixo Linux sen depender do cargador de arrinque normal. Isto pode "
+"ser\n"
+"Зtil se non desexa instalar LILO (ou grub) no seu sistema, ou se outro "
+"sistema\n"
+"operativo o borra ou se LILO non funciona coa configuraciСn do seu equipo.\n"
+"Un disco de arrinque personalizado tamИn pode ser usado coa imaxe de "
+"rescate\n"
+"de Mandrake, facendo asМ moito mАis fАcil a recuperaciСn no caso de fallo\n"
+"grave do sistema. ©Desexa crear un disco de arrinque para o seu sistema?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Saltar"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3236,64 +4056,33 @@ msgstr ""
"de Mandrake, facendo asМ moito mАis fАcil a recuperaciСn no caso de fallo\n"
"grave do sistema. ©Desexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Disculpe, pero non hai ningunha disqueteira dispoЯible"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Elixa o lector que desexa usar para crea-lo disco de arranque"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Inserte un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Fallou a instalaciСn de LILO. Ocorreu o erro seguinte:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "©Desexa usar SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "OpciСns principais de SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"AquМ estАn as seguintes entradas no SILO.\n"
-"Pode engadir algunhas mАis ou cambia-las que xa existen."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "ParticiСn"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Esta etiqueta xa se estА a usar"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Fallou a instalaciСn de SILO. Ocorreu o seguinte erro:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "©Quere usar aboot?"
+msgstr "©Desexa usar SILO?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3301,126 +4090,114 @@ msgstr ""
"Erro instalando aboot, \n"
"©probar a forza-la instalaciСn mesmo se iso destrЗe a primeira particiСn?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "ConfiguraciСn dos proxys"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "O proxy deberМa ser http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "O proxy deberМa ser ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Fallou a instalaciСn de LILO. Ocorreu o erro seguinte:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Benvida Сs Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Pobre"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Baixo"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Medio"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Alto"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Preguntas varias"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(pode provocar corrupciСn dos datos)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Usar optimizaciСns de disco duro"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Escoller un nivel de seguridade"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "TamaЯo exacto de memoria se se necesita (atopАronse %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automonta-las unidades extraМbles"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Limpar /tmp en cada arrinque"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Activar perfМs mЗltiples"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Activar Bloq Num С iniciar"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Dar o tamaЯo da memoria en MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Non se pode usar supermount no nivel de seguridade alto"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX xerarА ficheiros de configuraciСn para XFree 3.3 e XFree 4.0.\n"
-"Por defecto Зsase o servidor 3.3 porque funciona con mАis tarxetas "
-"grАficas.\n"
-"\n"
-"©Quere probar XFree 4.0?"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "©Desexa que se tenten atopar dispositivos PCI?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "©Usar a configuraciСn existente para X11?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "©Quere realmente xerar un disquete de instalaciСn para replicar linux?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Creando un disquete de auto-instalaciСn"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3430,7 +4207,7 @@ msgstr ""
"\n"
"©Desexa realmente saМr agora?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3453,154 +4230,18 @@ msgstr ""
"da instalaciСn, hai un capМtulo na GuМa do Usuario Oficial\n"
"de Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Apagando"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando controlador para a tarxeta %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(mСdulo %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "©Que controlador de %s desexa que se probe?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"NalgЗns casos, o controlador de %s necesita informaciСn extra\n"
-"para funcionar correctamente, aМnda que normalmente funcione sin ela.\n"
-"©Desexa especificar informaciСn extra para o controlador ou deixar que el\n"
-"analice o seu equipo e atope a informaciСn que necesita? аs veces,\n"
-"analizar o equipo pode provocar que se pare, pero non deberМa\n"
-"causar ningЗn dano."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "AutodetecciСn"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Especificar as opciСns"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Agora pode dar as opciСns para o mСdulo %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"AquМ deben ir as diferentes opciСns para o mСdulo %s.\n"
-"As opciСns son da forma ╚nome=valor nome2=valor2 ...╩.\n"
-"Por exemplo pode ter ╚io=0x300 irq=7╩"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "OpciСns do mСdulo:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Fallo o carga-lo mСdulo %s\n"
-"©Desexa reintentalo con outros parАmetros?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "©Desexa que se atopen tarxetas PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando tarxetas PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "©Desexa que se tenten atopar dispositivos %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s interfaces %s atopadas"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "©Ten algunha outra?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "©Ten algunha interface %s?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Non"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Si"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "InformaciСn sobre o hardware"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Activando a rede"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Desactivando a rede"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "InstalaciСn de Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> entre elementos | <Space> escoller | <F12> seguinte "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Pode agora particionar o seu disco duro %s\n"
-"Cando remate, non olvide gravar usando `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Agarde, por favor"
@@ -3610,7 +4251,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "AmbigЭidade (%s), sexa mАis preciso\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "ElecciСn incorrecta, tente de novo\n"
@@ -3624,449 +4265,969 @@ msgstr " ? (por omisiСn %s) "
msgid "Your choice? (default %s) "
msgstr "©A sЗa elecciСn? (por omisiСn %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "©A sЗa elecciСn? (por omisiСn %s, teclee 'none' para ningunha)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Checo"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "AlemАn"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "EspaЯol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "FinlandИs"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "FrancИs"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Noruego"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "BritАnico"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armenio (mАquina de escribir)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armenio (fonИtico)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BЗlgaro"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Suizo (alemАn)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Suizo (francИs)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "AlemАn (sen teclas de tiles)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DanИs"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Teclado dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Noruego"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (cirМlico)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (latino)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "HЗngaro"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "IsraelМ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "IsraelМ (FonИtico)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ucraniano"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IslandИs"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "HolandИs"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de nЗmeros\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonИtico\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposiciСn qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposiciСn qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortuguИs"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadiano (QuИbec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Eslovaco"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Lituano \"ringleira de nЗmeros\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Iugoslavo (latino)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '\255' is '║' (inversed !) in cp437 encoding
-# '\242' is 'С' (oacute) in cp437 encoding
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Rato Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "XenИrico"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "nivel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serie"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Rato de 2 botones xenИrico"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Rato de 3 botones xenИrico"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Rato Logitech (serie, antigo tipo C7)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "NingЗn rato"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "ningЗn"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "NingЗn rato"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "©и isto correcto?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "ConfiguraciСn dos proxys"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "©Desexa proba-la configuraciСn?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Configura-la rede"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Non configura-la rede"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Nome da conexiСn"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "ConfiguraciСn"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "ConfiguraciСn dos proxys"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "NЗmero de telИfono"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Nome do dominio"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Punto de montaxe"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Contrasinal"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Contrasinal"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Proba da configuraciСn"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "©QuИ tipo de particiСn desexa?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "©QuИ tipo de impresora ten?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "©Continuar de calquera xeito?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "©Cal И a sua zona horaria?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Escoller o tamaЯo novo"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Escolla o porto serie С que estА conectado o seu rato."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-"╜Benvido a LILO, o selector de sistema operativo!\n"
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "©Desexa proba-la configuraciСn?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "ConfiguraciСn"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "©Quere usar aboot?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "©Desexa que se tente atopar un mСdem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Escolla o porto serie С que estА conectado o seu mСdem."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "OpciСns de chamada"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nome da conexiСn"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "NЗmero de telИfono"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "ID de Login"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AutenticaciСn"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Baseado nun script"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Baseado nun terminal"
+
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "Nome da conexiСn"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Primeiro Servidor DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Segundo Servidor DNS"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Para mira-las posibles selecci╒ns, prema <TAB>.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Nome da conexiСn"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Configura-la rede"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Non configura-la rede"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
"\n"
-"Para arrincar un deles, teclee o seu nome e prema <ENTER>\n"
-"ou espere %d segundos para que arrinque o sistema por omisi╒n.\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "╜Benvido a GRUB, o escolledor de sistemas operativos!"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Non configura-la rede"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Use as teclas %c e %c para cambiar a entrada marcada."
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Nome da conexiСn"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Prema enter para arrincar o SO seleccionado, 'e' para editar os"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Nome da conexiСn"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandos antes de arrincar, ou 'c' para unha li╓a de comandos."
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Configura-la rede"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "A entrada marcada arrincarase autom═ticamente en %d segundos."
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "ConexiСn da Impresora"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "non hai espacio dabondo en /boot"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Escritorio"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Configura-la rede"
-# Puxen o З en cp437 porque creo que asМ o garda a FAT
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Menё Inicio"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Rato Sun"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Rato Applet ADB"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Experto"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Rato Apple ADB (2 BotСns)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Nome da conexiСn"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Rato Apple ADB (3 ou mАis botСns)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "©A quИ porto serie estА conectado o rato?"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Rato Apple USB"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Rato Apple USB (2 BotСns)"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Cancelar"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Rato Apple USB (3 ou mАis botСns)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Rato xenИrico (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Rato de 3 botones xenИrico (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Experto"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "©QuИ tipo de particiСn desexa?"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "Rato Bus ATI"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ConfiguraciСn da Rede"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Rato Bus Microsoft"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "©Desexa proba-la configuraciСn?"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Rato Bus Logitech"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Configura-la rede"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Rato USB"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nome da conexiСn"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Rato USB (3 ou mАis botСns)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "A rede local xa foi configurada. Desexa:"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "NingЗn rato"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "©A que disco desexa desprazala?"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft rev 2.1A ou superior (serie)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "ConfiguraciСn da Rede"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (serie)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serie)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "non se atopou ningunha tarxeta de rede"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serie)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Configurando a rede"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serie)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Introduza o nome da sЗa mАquina.\n"
+"Ese nome debe ser un nome completamente cualificado,\n"
+"como ╚ mimaquina.milab.micomp.es ╩.\n"
+"Pode tamИn introduci-la direcciСn IP da pasarela se usa unha"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serie)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Nome de mАquina:"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serie)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serie)"
+#: ../../network.pm_.c:302
+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 ""
+"Introduza a direcciСn IP desta mАquina, por favor.\n"
+"Cada valor ten que ser introducido coma unha direcciСn IP en\n"
+"notaciСn decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Rato Logitech (serie, antigo tipo C7)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Configurar o dispositivo de rede %s"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serie)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP automАtica"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Rato xenИrico (serie)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "DirecciСn IP:"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Compatible Microsoft (serie)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "MАscara de rede:"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Rato de 3 botСns xenИrico (serie)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (serie)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "As direcciСns IP deben estar no formato 1.2.3.4"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "©и isto correcto?"
+#: ../../network.pm_.c:341
+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 ""
+"Introduza o nome da sЗa mАquina.\n"
+"Ese nome debe ser un nome completamente cualificado,\n"
+"como ╚ mimaquina.milab.micomp.es ╩.\n"
+"Pode tamИn introduci-la direcciСn IP da pasarela se usa unha"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Servidor DNS:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "Pasarela:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Dispositivo de pasarela de rede:"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "ConfiguraciСn despois da instalaciСn"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Proxy FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "O proxy deberМa ser http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "O proxy deberМa ser ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "As particiСns estendidas non estАn soportadas nesta plataforma"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4076,21 +5237,21 @@ msgstr ""
"A Зnica soluciСn И despraza-las sЗas particiСns primarias para que\n"
"o burato estИ despois das particiСns estendidas"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Erro o le-lo ficheiro %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Fallou a restauraciСn a partir do ficheiro %s: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Ficheiro de backup incorrecto"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Erro С escribir С ficheiro %s"
@@ -4124,42 +5285,56 @@ msgstr "interesante"
msgid "maybe"
msgstr "indiferente"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (importante)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (moi bo)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (bo)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Ver menos"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Ver mАis"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Impresora local"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "OpciСns impresora remota lpd"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Fila de impresiСn remota"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "OpciСns de impresiСn NetWare"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "Impresora Netware"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Dispositivo da Impresora"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
@@ -4173,11 +5348,11 @@ msgstr "Probar portos"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Unha impresora, de modelo ╚%s╩, foi detectada en "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Dispositivo de impresiСn local"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4185,15 +5360,15 @@ msgstr ""
"©A que dispositivo estА conectada a sua impresora?\n"
"(teЯa en conta que /dev/lp0 И equivalente al LPT1:)\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Dispositivo da Impresora"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "OpciСns impresora remota lpd"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4204,19 +5379,19 @@ msgstr ""
"da fila, nese servidor, no que os traballos de impresiСn\n"
"estarАn colocados."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Nome da mАquina remota"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Fila de impresiСn remota"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "OpciСns impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4231,27 +5406,27 @@ msgstr ""
"a impresora que se quere usar, asМ como calquera nome de usuario,\n"
"grupo de traballo e contrasinal que faga falta."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "MАquina servidora SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "OpciСns de impresiСn NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4265,130 +5440,155 @@ msgstr ""
"de impresiСn que desexa usar, asМ como calquera nome de usuario\n"
"e contrasinal que faga falta."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Servidor de ImpresiСn"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Nome da Fila de ImpresiСn"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "OpciСns de impresiСn NetWare"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "OpciСns da impresora"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Pobre"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "©QuИ tipo de impresora ten?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "©Desexa proba-la impresiСn?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Imprimindo pАxina(s) de proba..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"A(s) pАxina(s) de proba enviАronse С servidor de impresiСn.\n"
+"Pode que lle leve un pouco ata que a impresora comece.\n"
+"Estado da impresiСn:\n"
+"%s\n"
+"\n"
+"©Funciona correctamente?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"A(s) pАxina(s) de proba enviАronse С servidor de impresiСn.\n"
+"Pode que lle leve un pouco ata que a impresora comece.\n"
+"©Funciona correctamente?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Si, imprimir unha pАxina ASCII de proba"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Si, imprimir unha pАxina PostScript de proba"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Si, imprimir Аmbalas dЗas pАxinas de proba"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Configura-la impresora"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "©QuИ tipo de impresora ten?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "OpciСns da impresora"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "TamaЯo do papel"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "©Saca-la pАxina despois da impresiСn?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "OpciСns do controlador Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "OpciСns da profundidade de cor"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "©Imprimir texto como PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Inverter a orde das pАxinas"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "©Corrixir o efecto escaleira?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "NЗmero de pАxinas por pАxina de saМda"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Marxes Dereita/Esquerda en puntos (1/72 dunha polgada)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Marxes Superior/Inferior en puntos (1/72 dunha polgada)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "OpciСns de Ghostscript extra"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "OpciСns de Texto extra"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "©Desexa proba-la impresiСn?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Imprimindo pАxina(s) de proba..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"A(s) pАxina(s) de proba enviАronse С servidor de impresiСn.\n"
-"Pode que lle leve un pouco ata que a impresora comece.\n"
-"Estado da impresiСn:\n"
-"%s\n"
-"\n"
-"©Funciona correctamente?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"A(s) pАxina(s) de proba enviАronse С servidor de impresiСn.\n"
-"Pode que lle leve un pouco ata que a impresora comece.\n"
-"©Funciona correctamente?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "©Desexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4396,19 +5596,69 @@ msgstr ""
"Estas son as filas de impresiСn.\n"
"Pode engadir algunhas mАis ou cambia-las que xa existen."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Estimando"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Seleccionar ConexiСn da Impresora"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "©Como estА conectada a impresora?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Seleccionar ConexiСn da Impresora"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Quitar fila"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Cada fila de impresiСn (А que se dirixen os traballos de impresiСn)\n"
+"necesita un nome (frecuentemente lp) e un directorio spool asociado\n"
+"a el. ©QuИ nome e directorio quere que se utilicen para esta fila e como\n"
+"estА conectada a impresora?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Impresora local"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Especificar as opciСns"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "InformaciСn"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4420,45 +5670,45 @@ msgstr ""
"a el. ©QuИ nome e directorio quere que se utilicen para esta fila e como\n"
"estА conectada a impresora?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nome da fila"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Directorio spool"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "ConexiСn da Impresora"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Non se pode engadir unha particiСn С RAID _formatado_ md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Non se pode escribi-lo ficheiro $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid fallou"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid fallou (©pode que non estean as raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particiСns dabondo para o nivel RAID %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, un xestor de comandos periСdicos."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4466,7 +5716,7 @@ msgstr ""
"apmd Зsase para monitoriza-lo estado da baterМa e rexistralo polo syslog.\n"
"TamИn pode usarse para apaga-la mАquina cando a baterМa estА baixa."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4475,7 +5725,7 @@ msgstr ""
"se executou at, e lanza comandos de lotes cando a carga media И baixa\n"
"dabondo."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4487,7 +5737,7 @@ msgstr ""
"caracterМsticas С cron bАsico de UNIX, incluindo mellor seguridade e\n"
"opciСns de configuraciСn mАis potentes."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4498,7 +5748,7 @@ msgstr ""
"o Midnight Commander. TamИn permite operaciСns de cortar e pegar co rato\n"
"na consola, e inclЗe soporte para menЗs na consola."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4506,7 +5756,7 @@ msgstr ""
"Apache И un servidor de World Wide Web. зsase para servir ficheiros HTML\n"
"e CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4521,7 +5771,7 @@ msgstr ""
"moitos servicios, incluindo telnet, ftp, rsh, e rlogin. Desactivar inetd\n"
"desactiva tСdolos servicios de internet dos que И responsable."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4532,7 +5782,7 @@ msgstr ""
"Este pode escollerse usando a utilidade kbdconfig. DeberМa deixar isto\n"
"activado para a maiorМa das mАquinas."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4541,7 +5791,7 @@ msgstr ""
"и bАsicamente un servidor que arbitra os traballos de impresiСn А(s)\n"
"impresora(s)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4549,7 +5799,7 @@ msgstr ""
"named (BIND) И un Servidor de Nomes de Dominio (DNS), que se emprega\n"
"para resolve-los nomes de mАquinas a enderezos IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4557,7 +5807,7 @@ msgstr ""
"Monta e desmonta tСdolos puntos de montaxe de sistemas de\n"
"ficheiros de Rede (NFS), SMB (Lan Manager/Windows) e NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4565,7 +5815,7 @@ msgstr ""
"Activa/Desactiva tСdalas interfaces de rede configuradas para\n"
"seren activadas С inicio."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4576,7 +5826,7 @@ msgstr ""
"Este servicio fornece funcionalidade de servidor NFS, que se configura co\n"
"ficheiro /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4584,7 +5834,7 @@ msgstr ""
"NFS И un protocolo popular para compartir ficheiros a travИs de\n"
"redes TCP/IP. Este servicio fornece funcionalidade de bloqueo de ficheiros."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4595,7 +5845,7 @@ msgstr ""
"portАtiles. Non serА arrincado ata que non estea configurado de xeito\n"
"que non haxa problemas С telo instalado en mАquinas que non o precisan."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4606,7 +5856,7 @@ msgstr ""
"como NFS e NIS. O servidor portmap ten que estar a se executar en mАquinas\n"
"que actЗan de servidores de protocolos que usan o mecanismo RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4614,7 +5864,7 @@ msgstr ""
"Postfix И un Axente de Transporte de Correo (MTA), que И o programa\n"
"que move o correo dunha mАquina a outra."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4622,7 +5872,7 @@ msgstr ""
"Garda e restaura o estado da entropМa do sistema para unha xeraciСn\n"
"de nЗmeros aleatorios de calidade."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4634,7 +5884,7 @@ msgstr ""
"outros protocolos mАis complexos de encamiЯado precМsanse para redes mАis\n"
"complexas."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4642,7 +5892,7 @@ msgstr ""
"O protocolo rstat permite Сs usuarios dunha rede obter\n"
"mИtricas de rendemento de calquera mАquina desa rede."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4650,7 +5900,7 @@ msgstr ""
"O protocolo rusers permite Сs usuarios dunha rede identificar quen\n"
"estА conectado noutras mАquinas activas."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4659,7 +5909,7 @@ msgstr ""
"tСdolos usuarios conectados a unha mАquina executando o demo rwho\n"
"(similar С finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4668,61 +5918,201 @@ msgstr ""
"Сs diversos ficheiros de rexistro do sistema. и unha boa idea executar\n"
"sempre o syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
"Este script de inicializaciСn tenta carga-los mСdulos para o seu rato usb."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Executa e para o Servidor de Fontes X no arrinque e С apagar."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Escolle-los servicios a lanzar С arrinca-lo sistema"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '\255' is '║' (inversed !) in cp437 encoding
-# '\242' is 'С' (oacute) in cp437 encoding
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"╜Benvido a SILO, o selector de sistema operativo!\n"
-"\n"
-"Para mira-las posibles selecci╒ns, prema <TAB>.\n"
-"\n"
-"Para arrincar unha delas, teclee o seu nome e prema <ENTER>\n"
-"ou espere %d segundos para que arrinque o sistema por omisi╒n.\n"
+"Non podo le-la sЗa tАboa de particiСns, estА demasiado deteriorada :-(\n"
+"Probarase a ir poЯendo en branco as particiСns malas"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "ConfiguraciСn de LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "CreaciСn dun disquete de arrinque"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formatar disquete"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Escolla"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Fallou a instalaciСn de LILO. Ocorreu o erro seguinte:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "TАboa"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Configurar as X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "TАboa"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "ConexiСn da Impresora"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Nome do dominio"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "lendo a configuraciСn"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Configurando o IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "║Noraboa!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4785,23 +6175,36 @@ msgstr "Establecendo o nivel de seguridade"
msgid "Choose the tool you want to use"
msgstr "Elixa a utilidade que quere usar"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "©Cal И o seu tipo de teclado?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Troca-la resoluciСn"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "©Cal И o tipo do seu rato?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"║Cambie o seu Cd-Rom!\n"
+"\n"
+"Por favor, insira o Cd-Rom etiquetado \"%s\" na sЗa unidade e prema Aceptar "
+"cando estea.\n"
+"Se non o ten, prema Cancelar para omitir a instalaciСn deste Cd-Rom."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "non se atopou ningЗn serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "©Emula-lo terceiro botСn?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "©A quИ porto serie estА conectado o rato?"
@@ -5013,3 +6416,893 @@ msgstr "Buscando as pСlas"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "A busca das pСlas leva un tempo"
+
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Internet"
+
+msgid "Internet"
+msgstr "Internet"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Office"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "DocumentaciСn"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Escolla o tamaЯo que quere instalar"
+
+#~ msgid "Total size: "
+#~ msgstr "TamaЯo total: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Reconfigura-la rede agora"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Nome da conexiСn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Nome da conexiСn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Nome da conexiСn"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Nome da conexiСn"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "AlemАn"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "AlemАn"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "©QuИ desexa facer?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Instalar"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Redimensionar"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "©QuИ tipo de particiСn desexa?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Elixa \"InstalaciСn\" se non hai ningunha versiСn de Linux anterior,\n"
+#~ "ou se desexa instalar mАis dunha distribuciСn ou versiСn.\n"
+#~ "\n"
+#~ "Elixa \"ActualizaciСn\" se desexa actualizar a partir dunha versiСn\n"
+#~ "anterior de Linux Mandrake:\n"
+#~ "%s ou %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Elixa:\n"
+#~ "\n"
+#~ " - AutomАtica: Se nunca instalou Linux antes, escolla esta. NOTA:\n"
+#~ " a rede non se configurarА durante a instalaciСn, utilice \"LinuxConf\"\n"
+#~ " para configurala cando a instalaciСn estea completa.\n"
+#~ "\n"
+#~ " - Personalizada: Se xa estА familiarizado con GNU/Linux, pode entСn "
+#~ "escoller\n"
+#~ " o uso primario da sЗa mАquina. Mire abaixo para os detalles.\n"
+#~ "\n"
+#~ " - Experto: Isto supСn que vostede se manexa con GNU/Linux e quere facer\n"
+#~ " unha instalaciСn altamente personalizada. Do mesmo xeito que coa\n"
+#~ " clase de instalaciСn \"Personalizada\", poderА escolle-lo uso do seu\n"
+#~ " sistema. Pero, por favor, ║NON ESCOLLA ISTO A MENOS QUE SAIBA O QUE\n"
+#~ " ESTа A FACER!\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "Neste punto, vostede pode escolle-la(s) particiСn(s) que desexa usar para\n"
+#~ "instala-lo seu sistema Linux-Mandrake, se xa foron definidas (por unha\n"
+#~ "instalaciСn anterior de Linux ou por outra utilidade de particionamento).\n"
+#~ "Noutros casos, deberanse defini-las particiСns do disco duro. Esta "
+#~ "operaciСn\n"
+#~ "consiste en dividir lСxicamente a capacidade do disco duro en Аreas "
+#~ "separadas\n"
+#~ "para o seu uso.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se ten que crear novas particiСns, use \"AsignaciСn automАtica\" para crear\n"
+#~ "automАticamente as particiСns para Linux. Pode escolle-lo disco que quere\n"
+#~ "particionar premendo en \"hda\" para a primeira unidade IDE, \"hdb\" para\n"
+#~ "a segunda, ou \"sda\" para a primeira unidade SCSI, e asМ o resto.\n"
+#~ "\n"
+#~ "\n"
+#~ "DЗas particiСns habituais son: a particiСn raМz (/), que И o punto inicial\n"
+#~ "da xerarquМa de directorios do sistema de ficheiros, e /boot, que contИn\n"
+#~ "tСdolos ficheiros necesarios para principa-lo sistema operativo cando se\n"
+#~ "acende o ordenador.\n"
+#~ "\n"
+#~ "\n"
+#~ "Xa que os efectos deste proceso son normalmente irreversibles, facer\n"
+#~ "particiСns pode intimidar e poЯer nervioso a un usuario non experimentado.\n"
+#~ "A utilidade DiskDrake simplifica o proceso para que o usuario non teЯa que\n"
+#~ "selo. Consulte a documentaciСn e tСmese o seu tempo antes de continuar.\n"
+#~ "\n"
+#~ "\n"
+#~ "Pode usar calquera opciСn co teclado: percorra as particiСns usando Tab e\n"
+#~ "as frechas Arriba/Abaixo. Se unha particiСn estА seleccionada, pode usar:\n"
+#~ "\n"
+#~ "- Ctrl-c para crear unha nova particiСn (cando a escollida estА baleira)\n"
+#~ "\n"
+#~ "- Ctrl-d para borrar unha particiСn\n"
+#~ "\n"
+#~ "- Ctrl-m para establece-lo punto de montaxe\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "As particiСns recИn creadas deben ser formatadas para que o sistema\n"
+#~ "poda usalas (formatar significa crear un sistema de ficheiros). Agora\n"
+#~ "tamИn pode formatar particiСns creadas anteriormente e en uso, se desexa\n"
+#~ "borrar tСdolos datos que conten. Nota: non И necesario formatar as\n"
+#~ "particiСns que xa existen, en particular se desexa conserva-los datos\n"
+#~ "que conten. TМpicamente mantИЯense /home e /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Os paquetes escollidos estАn agora a seren instalados. Esta\n"
+#~ "operaciСn deberМa levar algЗns minutos, agАs que vostede escollese\n"
+#~ "actualizar un sistema que xa existe, neste caso pode que lle leve\n"
+#~ "mАis tempo incluso antes de que a actualizaciСn comece."
+
+#, fuzzy
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Se DrakX non puido atopa-lo seu rato, ou se vostede quere\n"
+#~ "comprobar quИ И o que fixo, presentarАselle a lista de ratos\n"
+#~ "enriba.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vostede estА de acordo cos parАmetros do DrakX, vaia А\n"
+#~ "seguinte secciСn que queira, premendo no menЗ da esquerda. Noutro\n"
+#~ "caso, escolla no menЗ un tipo de rato que vostede pense que И o\n"
+#~ "mellor para o seu.\n"
+#~ "\n"
+#~ "\n"
+#~ "No caso dun rato de porto serie, terА que lle dicir С DrakX o\n"
+#~ "porto serie С que estА conectado."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Esta secciСn adМcase a configurar unha rede de Аrea local (LAN)\n"
+#~ "ou un mСdem.\n"
+#~ "\n"
+#~ "Escolla \"Rede local\" e DrakX tentarА atopar un adaptador Ethernet\n"
+#~ "na sЗa mАquina. Os adaptadores PCI deberМan ser atopados e inicializados\n"
+#~ "automАticamente. Nembargantes, se o seu perifИrico И ISA, a\n"
+#~ "autodetecciСn non funcionarА, e terА que escoller un controlador\n"
+#~ "da lista que aparecerА entСn.\n"
+#~ "\n"
+#~ "\n"
+#~ "Do mesmo xeito que para os adaptadores SCSI, vostede pode deixar que o\n"
+#~ "controlador analice o adaptador de primeiras, ou senСn vostede terА que\n"
+#~ "indica-las opciСns С controlador que vostede terА que obter da\n"
+#~ "documentaciСn do seu aparato.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se instala un sistema Linux-Mandrake nunha mАquina que И parte dunha\n"
+#~ "rede que xa existe, o administrador da rede xa lle darМa toda a\n"
+#~ "informaciСn necesaria (direcciСn IP, submАscara ou simplemente mАscara\n"
+#~ "de rede, e o nome da mАquina). Se estА activando unha rede privada na\n"
+#~ "sЗa casa, por exemplo, terА que escolle-las direcciСns.\n"
+#~ "\n"
+#~ "\n"
+#~ "Escolla \"Chamar cun mСdem\" e configurarase unha conexiСn a Internet\n"
+#~ "cun mСdem. DrakX tentarА atopa-lo seu mСdem, e se non pode, vostede terА\n"
+#~ "que indica-lo porto serie correcto onde estА conectado o seu mСdem."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux pode utilizar varios tipos de impresoras. Cada un deles\n"
+#~ "necesita unha configuraciСn diferente. Dese conta que o spooler\n"
+#~ "de impresiСn usa 'lp' como o nome por omisiСn da impresora;\n"
+#~ "por tanto ten que ter unha impresora con ese nome; pero pode\n"
+#~ "darlle varios nomes a unha impresora, separados por caracteres '|'.\n"
+#~ "De xeito que se vostede prefere ter un nome mАis significativo, sС ten\n"
+#~ "que poЯelo С principio, p.ex: \"Impresora|lp\".\n"
+#~ "A impresora que teЯa \"lp\" nos seus nomes serА a impresora por defecto.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se a sЗa impresora estА conectada directamente С seu ordenador,\n"
+#~ "elixa ╚Impresora local╩. Logo terА que indicar o porto no que estА\n"
+#~ "conectada a sЗa impresora, e escolle-lo filtro de impresiСn adecuado.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se desexa acceder a unha impresora situada nunha mАquina Unix remota,\n"
+#~ "elixa ╚Impresora remota╩. Para que poida utilizala non И necesario\n"
+#~ "un nome de usuario ou contrasinal, pero necesitarА sabe-lo nome da\n"
+#~ "fila de impresiСn no servidor de impresiСn remoto.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se desexa acceder a unha impresora SMB (И dicir, a unha impresora conectada\n"
+#~ "a unha mАquina remota con Windows 9x/NT), deberА especifica-lo seu nome\n"
+#~ "SMB (que non И o seu nome TCP/IP), e posiblemente tamИn a sЗa direcciСn IP,\n"
+#~ "asМ como o nome de usuario, de grupo de traballo e o contrasinal necesarios\n"
+#~ "para acceder А impresora; e, por suposto, o nome da impresora mesma.\n"
+#~ "O mesmo serve para unha impresora Netware, agАs que non necesita a\n"
+#~ "informaciСn sobre o grupo de traballo."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "RecomИndase encarecidamente que responda \"Si\" aquМ. Se vostede instala\n"
+#~ "Microsoft Windows mАis adiante, sobrescribirase o sector de arrinque.\n"
+#~ "A menos que fixese un disquete de arrinque coma se lle suxere, non serА\n"
+#~ "capaz de voltar a arrincar Linux."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "©Esquece-los trocos?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "ConexiСn da Impresora"
+
+#~ msgid "Host name:"
+#~ msgstr "Nome de mАquina:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "©Cal И o tipo do seu rato?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "ResoluciСns automАticas"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Para atopa-las resoluciСns dispoЯibles vanse probar varias.\n"
+#~ "A sЗa pantalla vai palpebrexar...\n"
+#~ "Pode apagala se o desexa, escoitarА un pitido cando estea rematado"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Podo tratar de atopa-las resoluciСns dispoЯibles (ex. 800x600).\n"
+#~ "Non obstante, isto pode ocasionar que a mАquina se bloquee.\n"
+#~ "©Desexa intentalo?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "NingЗn modo vАlido atopado\n"
+#~ "Intente con outra tarxeta de video ou monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "BЗsqueda automАtica de resoluciСns"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Rato Applet ADB"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Rato Apple ADB (2 BotСns)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Rato Apple ADB (3 ou mАis botСns)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Rato Apple USB"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Rato Apple USB (2 BotСns)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Rato Apple USB (3 ou mАis botСns)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Rato xenИrico"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "Rato Bus ATI"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Rato Bus Microsoft"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Rato Bus Logitech"
+
+#~ msgid "USB Mouse"
+#~ msgstr "Rato USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "Rato USB (3 ou mАis botСns)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft rev 2.1A ou superior (serie)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serie)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serie)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serie)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Rato xenИrico (serie)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Compatible Microsoft (serie)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Rato de 3 botСns xenИrico (serie)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "montaxe de nfs fallou"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#, fuzzy
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX xerarА ficheiros de configuraciСn para XFree 3.3 e XFree 4.0.\n"
+#~ "Por defecto Зsase o servidor 3.3 porque funciona con mАis tarxetas "
+#~ "grАficas.\n"
+#~ "\n"
+#~ "©Quere probar XFree 4.0?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "CriptografМa"
+
+#, fuzzy
+#~ msgid "Configure LAN"
+#~ msgstr "Configurar as X"
+
+#, fuzzy
+#~ msgid "End configuration"
+#~ msgstr "ConfiguraciСn"
+
+#, fuzzy
+#~ msgid "Do not set up networking"
+#~ msgstr "Configura-la rede"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "©Quere configurar unha rede local no seu sistema?"
+
+#~ msgid "Show less"
+#~ msgstr "Ver menos"
+
+#~ msgid "Show more"
+#~ msgstr "Ver mАis"
+
+#, fuzzy
+#~ msgid "URI for Local printer"
+#~ msgstr "Impresora local"
+
+#, fuzzy
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Dispositivo de impresiСn local"
+
+#, fuzzy
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "©A que dispositivo estА conectada a sua impresora?\n"
+#~ "(teЯa en conta que /dev/lp0 И equivalente al LPT1:)\n"
+
+#~ msgid "curly"
+#~ msgstr "crecho"
+
+#~ msgid "default"
+#~ msgstr "por omisiСn"
+
+#~ msgid "tie"
+#~ msgstr "gravata"
+
+#~ msgid "brunette"
+#~ msgstr "morena"
+
+#~ msgid "girl"
+#~ msgstr "rapaza"
+
+#~ msgid "woman-blond"
+#~ msgstr "loira"
+
+#~ msgid "automagic"
+#~ msgstr "automАxico"
+
+#, fuzzy
+#~ msgid "Network:"
+#~ msgstr "MАscara de rede:"
+
+#, fuzzy
+#~ msgid "Everything configured!"
+#~ msgstr "lendo a configuraciСn"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "©Cal И o seu tipo de teclado?"
+
+#~ msgid "Normal"
+#~ msgstr "Normal"
+
+#, fuzzy
+#~ msgid "Configure my card"
+#~ msgstr "Configurar as X"
+
+#, fuzzy
+#~ msgid "pptp alcatel"
+#~ msgstr "AsignaciСn automАtica"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "©Desexa que se atopen tarxetas PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "©Desexa que se tenten atopar dispositivos %s?"
+
+#, fuzzy
+#~ msgid "Small(%dMB)"
+#~ msgstr "(%d MB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "ConfiguraciСn do MСdem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "©Quere configurar unha conexiСn con mСdem para o seu sistema?"
+
+#, fuzzy
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "©Quere configurar unha rede local no seu sistema?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "©Desexa que se tenten atopar dispositivos PCI?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Buscando a particiСn raМz."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s : Esta non И unha particiСn raМz, elixa outra por favor."
+
+#~ msgid "No root partition found"
+#~ msgstr "Non se atopou ningunha particiСn raМz"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Non se pode usar broadcast sen un dominio NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Escolla a particiСn para usar como particiСn raМz."
+
+#, fuzzy
+#~ msgid "Autologin at startup"
+#~ msgstr "Lanzar X11 С arrincar"
+
+#, fuzzy
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Escoller o tamaЯo novo"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "║Non ten espacio dabondo para Lnx4win!"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "AutomАtica"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# '\255' is '║' (inversed !) in cp437 encoding
+# '\242' is 'С' (oacute) in cp437 encoding
+# '╓' is the 'Я' (ntilde) in cp437 encoding.
+# '\240' is 'А' (aacute) in cp437 encoding
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "╜Benvido a LILO, o selector de sistema operativo!\n"
+#~ "\n"
+#~ "Para mira-las posibles selecci╒ns, prema <TAB>.\n"
+#~ "\n"
+#~ "Para arrincar un deles, teclee o seu nome e prema <ENTER>\n"
+#~ "ou espere %d segundos para que arrinque o sistema por omisi╒n.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Benvido a SILO, o selector de sistema operativo!\n"
+#~ "\n"
+#~ "Para mira-las posibles selecci╒ns, prema <TAB>.\n"
+#~ "\n"
+#~ "Para arrincar unha delas, teclee o seu nome e prema <ENTER>\n"
+#~ "ou espere %d segundos para que arrinque o sistema por omision.\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "OpciСns principais de SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "AquМ estАn as seguintes entradas no SILO.\n"
+#~ "Pode engadir algunhas mАis ou cambia-las que xa existen."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Esta etiqueta xa se estА a usar"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Fallou a instalaciСn de SILO. Ocorreu o seguinte erro:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX tentarА primeiro atopa-lo(s) adaptador(es) SCSI en bus PCI.\n"
+#~ "Se o(s) atopa e sabe que controlador(es) usar, o(s) aplicarА\n"
+#~ "automaticamente.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se o seu adaptador SCSI И ISA, ou se И PCI pero DrakX non sabe\n"
+#~ "que controlador usar para esa tarxeta, ou se non ten adaptadores SCSI,\n"
+#~ "preguntarАselle se ten algЗn ou non. Se non ten ningЗn responda ╚Non╩.\n"
+#~ "Se ten un ou varios responda ╚Si╩. AparecerА entСn unha lista de\n"
+#~ "controladores, dos que ten que seleccionar un.\n"
+#~ "\n"
+#~ "\n"
+#~ "Unha vez que seleccione o controlador, DrakX preguntaralle se quere\n"
+#~ "especificar algЗn parАmetro. Primeiro, probe e deixe que o controlador\n"
+#~ "analice o hardware: normalmente funciona ben.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se non, non esqueza a informaciСn que pode obter da sЗa documentaciСn\n"
+#~ "ou a partir de Windows (se o ten instalado no seu sitema), coma se\n"
+#~ "suxire na guМa de instalaciСn. Eses son os parАmetros que terА que\n"
+#~ "lle dar С controlador."
+
+#~ msgid "Shutting down"
+#~ msgstr "Apagando"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 720df5094..ec0f5532a 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -1,56 +1,107 @@
# KTranslator Generated File
-# KTranslator Generated File
# Copyright (c) 1999 MandrakeSoft
# Vladimir Vuksan <vuksan@veus.hr>, 1999.
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: Mon May 15 2000 16:41:41+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: Tue Aug 29 2000 12:52:56+0200\n"
"Last-Translator: Vladimir Vuksan <vuksan@veus.hr>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KTranslator v 0.5.0\n"
+"X-Generator: KTranslator v 0.6.0\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "GrafiХka kartica"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Odaberite grafiХku karticu"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Odaberite X poslu╬itelj"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X poslu╬itelj"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kakvu vrstu zapisa ╬elite dodati"
+
+#: ../../Xconfigurator.pm_.c:232
+#, fuzzy, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Va╧a video kartica mo╬e imati 3D ubrzanje samo sa XFree 3.3.\n"
+"Da li stoga ╬elite koristiti XFree 3.3 umjesto XFree 4.0?"
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, fuzzy, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Da li ╬elite podr╧ku za hardverske 3D ubrzivaХe?"
+
+#: ../../Xconfigurator.pm_.c:245
+#, fuzzy, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Va╧a video kartica mo╬e imati 3D ubrzanje samo sa XFree 3.3.\n"
+"Da li stoga ╬elite koristiti XFree 3.3 umjesto XFree 4.0?"
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Postava nakon instalacije"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Odaberite koliХinu memorije na grafiХkoj kartici"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Postavke poslu╬itelja"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -64,39 +115,40 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Niste podesili monitor"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Niste podesili grafiХku karticu"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Niste podesili rezoluciju"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Da li ╬elite isku╧ati postavu ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Upozorenje: opasno je isku╧avati rezolucije na ovoj grafiХkoj kartici"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Isku╧aj postavu"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -104,185 +156,168 @@ msgstr ""
"\n"
"provjerite parametre koje ste unjeli"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Pojavila se gre╧ka:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Zatvaram nakon %d sekundi"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Da li je ovo ispravno?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Pojavila se gre╧ka, provjerite parametre koje ste unjeli"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automatski odabir rezolucije"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Kako bih prona╧ao dostupne rezolucije moram poku╧ati par razliХitih.\n"
-"Monitor Фe tokom pretrage treptati...\n"
-"Ukoliko ╬elite slobodno iskljuХite monitor. Nakon ╧to je sve gotovo Хuti Фe "
-"te pip."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Odaberite rezoluciju i color depth"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "GrafiХka kartica: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 poslu╬itelj: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Poka╬i sve"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Mogu poku╧ati pronaФi dostupnu rezoluciju (npr. 800x600).\n"
-"MeПutim ponekad takva pretraga mo╬e zamrznuti raХunalo.\n"
-"Da li ste sigurni da ╬elite nastaviti?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Niti jedan valjan mode nije naПen\n"
-"Probajte sa drugom grafiХkom karticom ili monitorom"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tipkovnice: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Vrsta mi╧a: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "UreПaj mi╧a: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "GrafiХka kartica: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "GrafiХka memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "Monitor VertRefresh: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Rezolucije"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 poslu╬itelj: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 poslu╬itelj: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Pripremam X-Window postavu"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Promijeni monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Promijeni grafiХku karticu"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Promijeni postavke poslu╬itelja"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Promijeni rezoluciju"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Automatski tra╬i rezoluciju"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Prika╬i informacije"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Isku╧aj ponovo"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Zavr╧i"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "╘to ╬elite napraviti?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Odbaci promjene?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Zadr╬i postojeФu IP postavu"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -290,228 +325,225 @@ msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li ╬elite da se X automatski pokreФe?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Auto-prijava"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"RaХunalo se mo╬e podesiti da se automatski prijavi kod podizanja sustava "
+"npr. neФe biti potrebno unositi nikakvu korisniХko ime ili lozinku.\n"
+"Pritisnite Odustani ako ne ╬elite aktivirati automatsku prijavu ?"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Izaberite uobiХajenog korisnika:"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Izaberite alat koje ╬elite koristiti"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tisuФa boja (15 bita)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tisuФa boja (16 bita)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milijuna boja (24 bita)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ili vi╧e"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standardni VGA, 640x480 na 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 na 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 kompatibilan, 1024x768 na 87 Hz interlaced (bez 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 na 87 Hz interlaced, 800x600 na 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Visoko frekvencijski SVGA, 1024x768 na 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frekvencijski - ide do 1280x1024 na 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frekvencijski - ide do 1280x1024 na 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frekvencijski - ide do 1280x1024 na 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor ide do 1600x1200 na 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor ide do 1600x1200 na 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "curly"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "uobiХajeno"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "tie"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "crnka"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "djevojka"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "plavu╧a"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automagijski"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalacija"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO instalacija"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Gdje ╬elite instalirati bootloader?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub instalacija"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Niti jedan"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Koji bootloader(e) ╬elite koristiti?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Bootloader instalacija"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Boot ureПaj"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Zbijeno"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Odgoda prije bootiranja uobiХajenog imagea"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr ""
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Odgoda prije bootiranja uobiХajenog imagea"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Lozinka(provjera)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "OgraniХene opcije na komandnoj liniji"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ograniХi"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Postavka ``OgraniХene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Molim poku╧ajte ponovo"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -519,167 +551,346 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Mo╬ete dodati jo╧ koji ili urediti postojeФi."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Kakvu vrstu zapisa ╬elite dodati"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Drugi OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Kakvu vrstu zapisa ╬elite dodati"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "UobiХajeno"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "U redu"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Ukloni zapis"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Ova oznaka veФ postoji"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Prona╧ao sam %s %s interfacea"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Da li imate jo╧ koji?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Da li imate %s interface?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ne"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Da"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Poka╬i info o hardveru"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instaliram upravljaХki program %s za karticu %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Koji %s upravljaХki program ╬elite isporbati?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Auto. ispitaj"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Odredi postavke"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Sada mo╬ete unijeti postavke za modul %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Sada mo╬ete unijeti postavke za modul %s.\n"
+"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Postavke modula:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"UХitavanje modula %s nije uspjelo.\n"
+"Da li ╬elite poku╧ati ponovo sa drugim parametrima?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Dobrodosli u %s izbornik operativnih sustava!\n"
+"\n"
+"Za popis dostupnih sustava pritisnite <TAB>.\n"
+"\n"
+"Ako zelite ucitati neki od operativnih sustava upisite njegovo ime\n"
+"i pritisnite <ENTER> oili pricekajte %d sekundi za podrazumijevani\n"
+"operativni sustav.\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Dobrodosli u GRUB izbornik operativnih sustava."
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Za mijenjanje izabranog sustava pritisnite tipke %c i %c."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Pritisnite ENTER za bootiranje izabranog OS, 'e' za promjenu"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "naredbe prije bootiranja ili 'c' za komandnu liniju"
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Osvjetljeni zapis biti Фe bootiran automatski za %d sekundi."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nema dovoljno mjesta u /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Radna povr╧ina"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr ""
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Zatvaram nakon %d sekundi"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Obri╧i"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Promijeni veliХinu"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Vrsta"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "ToХka montiranja"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Zapi╧i u /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Ekspert > Normalno"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Vrati postavke iz datoteke"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Spremi u datoteku"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Vrati postavke sa diskete"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "OХisti sve"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formatiraj sve"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskori╧tene"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -688,59 +899,63 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Zapi╧i particijsku tabelu"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Ponovo uХitaj"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Prazno"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Ostali"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap (zamjenska memorija)"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Prazno"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Ostali"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Vrste datoteХnih sustava:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -752,94 +967,97 @@ msgstr ""
"PreporuХam da promijenite veliХinu particije\n"
"(kliknite prvo na particiju te onda na \"Promijeni veliХinu\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "ProХitajte pa╬ljivo!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
+"Ukoliko ╬elite koristiti aboot morate ostaviti dovoljno mjesta (npr. 2048 "
+"sektora) na\n"
+"poХetku diska"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni ova operacija je opasna"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Gre╧ka"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Mjesto montiranja:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "UreПaj:"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drive slovo: %s (nagaПanje)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "PoХetak: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "VeliХina: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cilindar %d do cilindra %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback datoteka(e): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -847,79 +1065,79 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk veliХina %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "VeliХina: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometry: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktivno"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Izaberite akciju"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -931,7 +1149,7 @@ msgstr ""
"Imate dvije opcije ili Фe te koristiti LILO pa neФe raditi ili neФe te\n"
"koristiti LILO pa vam /boot neФe ni trebati."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -939,23 +1157,23 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -963,183 +1181,188 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti Фe "
"obrisani"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Da zavr╧im bez spremanja"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Da zavr╧im bez zapisivanje particijske tablice?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Koji tip particije ╬elite?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Kojoj particiji ╬elite promijeniti veliХinu?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
+msgstr "ReiserFS se ne mo╬e koristiti na particijama koje su manje od 32 MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje ╬elite montirati loopback datoteku %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje ╬elite montirati ureПaj %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti Фe obrisani"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Poslije formatiranja svih particija,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "svi podaci na ovim particijama biti Фe izgubljeni"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se ╬elite premjestiti?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor ╬elite premjestiti?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Premje╧tam"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Premje╧tam particiju..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s Фe sada biti zapisana na disk!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "IzraХunavam granice fat datoteХnog sustava"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Mijenjam veliХinu"
-#
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Kojoj particiji ╬elite promijeniti veliХinu?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "PreporuХam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja veliХine particije %s svi podaci na ovoj particiji biti Фe "
"izgubljeni"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Odaberite novu veliХinu"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "PoХetni sektor:"
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "VeliХina u MB:"
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Vrsta datoteХnog sustava:"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne mo╬e koristiti za loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Datoteka veФ postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1147,11 +1370,11 @@ msgstr ""
"Backup particijske tablice nema istu veliХinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1159,79 +1382,79 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti Фe izbrisani"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Poku╧avam spasiti particijsku tablicu"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "ureПaj"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr ""
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "chunk veliХina"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeФi RAID na koji ╬elite dodati "
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "novi"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ne znam kako formatirati %s kao vrstu %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs montiranje nije uspjelo"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "montiranje nije uspjelo:"
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "gre╧ka kod demontiranja %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora poХeti sa /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "VeФ postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
+msgstr "Kru╬no montiranje %s\n"
+
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Treba vam istinski datoteХni sustav (ex2, reiserfs) za ovo mjesto "
"monitranja\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gre╧ka prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1240,75 +1463,82 @@ msgstr ""
"bih mogao instalirati datoteХni sustav. Provjerite da li je sa va╧im "
"hardverom sve u redu."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Nemate niti jednu particiju!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Izaberite preferirani jezik za instalaciju i kori╧tenje sustava."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr ""
"Izaberite raspored tipkovnice koji se podudara sa va╧om na gornjem popisu"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
-"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
-"\n"
-"\n"
-"Select:\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Izaberite \"Instaliraj\" ukoliko nemate Linux instaliran ili ako\n"
-"╬elite imati vi╧e razliХitih distribucija ili inaХica Linux na sustavu.\n"
"\n"
-"Izaberite \"Nadogradi\" ako ╬elite nadograditi postojeФu inaХicu Mandrake\n"
-"Linuxa: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus)\n"
-"6.1 (Helios), Gold 2000 or 7.0 (Air).\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-"Odaberite:\n"
"\n"
-" - Automatski: Ukoliko nikada niste instalirali Linux.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - PrilagoПeno: Ukoliko vam je Linux poznat kori╧tenjem ove\n"
-"opcije moФi Фe te odabrati kakvu instalaciju ╬elite npr. normalna, "
-"programer\n"
-"ili poslu╬itelj. Odaberite \"Normalna\" za sustav opФe namjene.\n"
-"Odaberite \"Programer\" ako ╬elite koristiti raХunalo primarno za razvoj\n"
-"softvera ili odaberite \"Poslu╬itelj\" ako ╬elite koristiti raХunalo kao\n"
-"poslu╬itelj opФe namjene npr. za mail, web, ispisivanje itd.\n"
"\n"
-" - StruХnjak: Ukoliko ste vrlo dobro upoznati sa Linuxom i ╬elite\n"
-"imati potpunu kontrolu nad instalacijom Linuxa odaberite opciju\n"
-"\"PrilagoПeno\".\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1316,16 +1546,17 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Odaberite:\n"
"\n"
-" - PrilagoПeno: Ukoliko vam je Linux poznat kori╧tenjem ove\n"
+" - PrilagoПeno: Ukoliko ste upoznati s Linuxom kori╧tenjem ove\n"
"opcije moФi Фe te odabrati kakvu instalaciju ╬elite npr. normalna, "
"programer\n"
"ili poslu╬itelj. Odaberite \"Normalna\" za sustav opФe namjene.\n"
@@ -1336,230 +1567,528 @@ msgstr ""
"\n"
" - StruХnjak: Ukoliko ste vrlo dobro upoznati sa Linuxom i ╬elite\n"
"imati potpunu kontrolu nad instalacijom Linuxa odaberite opciju\n"
-"\"PrilagoПeno\".\n"
+"\"StruХnjak\". SliХno kao i sa \"PrilagoПeno-m\" instalacijom moФi\n"
+"Фe te odabrati kako Фe se sustav upotrebljavati meПutim sa dodatnim opcijama."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Sve novo definirane particije moraju biti formatirane za\n"
-"uporabu tj. moraju imati ispravni datoteХni sustav. TakoПer ukoliko\n"
-"╬elite obrisati podatke s odreПene particije odaberite reformatiranje.\n"
-"Opaska: nije potrebno reformatirati postojeФe particije osobito\n"
-"ako sadr╬e datoteke ili podatke koje ╬elite saХuvati.\n"
-"Na primjer obiХno /home i /usr/local sadr╬e podatke koje treba saХuvati."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:358
+#, fuzzy
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"PoХela je instalacija paketa koje ste odabrali. Ova\n"
-"operacija Фe potrajati par minuta osim ako ste odabrali\n"
-"nadogradnju postojeФeg sustava. U tom sluХaju instalacija\n"
-"Фe izvr╧iti odreПene provjere prije same nadogradnje."
+"Ako imate sve dolje navedene CDove kliknite U redu.\n"
+"Ako nemate niti jedan od dolje navedenih CD kliknite Odustani.\n"
+"Ako imate samo neke od dolje navedenih CDa odznaХite one koje nemate i "
+"kliknite U redu."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:363
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Molim odaberite ispravni port. Npr. COM1 port u Windows-ima\n"
"je ttyS0 u Linuxima, COM2 ttyS1 itd."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Sada mo╬ete podesiti dial-up postavke. Ako niste sigurni ╧to treba\n"
+"unijeti, raspitajte se kod svog ISP-a."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"Unesite::\n"
+"Unesite:\n"
"\n"
-" - IP adresu: ukoliko ne znate adresu pitajte svojeg mre╬nog "
-"administratora\n"
-"ili ISP-a.\n"
+" - IP adresu: ukoliko ne znate adresu pitajte svojeg mre╬nog administratora "
+"ili ISP-a.\n"
"\n"
"\n"
" - Mre╬na maska: ObiХno je maska \"255.255.255.0\". Ako niste sigurni \n"
@@ -1571,7 +2100,22 @@ msgstr ""
"sigurni\n"
"raspitajte se kod mre╬nog administratora ili ISP-a.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Ukoliko va╧a mre╬a koristi NIS odaberite \"Koristi NIS\". Ako niste sigurni\n"
+"raspitajte se kod svog mre╬nog administratora."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1579,7 +2123,7 @@ msgstr ""
"Sada mo╬ete podesiti dial-up postavke. Ako niste sigurni ╧to treba\n"
"unijeti, raspitajte se kod svog ISP-a."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1587,13 +2131,15 @@ msgstr ""
"Ako ╬elite koristiti proxye unesite ih sada. Ako niste sigurni\n"
"da li imate proxye raspitajte se kod mre╬nog administratora ili ISP-a."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1605,81 +2151,198 @@ msgstr ""
"Opaska: Morate odabrati mirror i kriptografske pakete ovisno\n"
"o zakonima zemlje u kojoj se nalazite."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Sada mo╬ete odabrati vremensku zonu u kojoj ╬ivite.\n"
"\n"
"\n"
-"Linux koristi GMT (Greenwich Mean Time) koje onda preraХunava\n"
+"Linux koristi GMT (Srednje vrijeme po Greenwichu) koje onda preraХunava\n"
"u vrijeme u va╧oj vremenskoj zoni. "
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:542
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You need to enter some informations here.\n"
+"\n"
"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
msgstr ""
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
+msgstr ""
+
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1688,7 +2351,7 @@ msgstr ""
"datoteku\" i\n"
"\"Koristi MD5 lozinke\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1696,7 +2359,7 @@ msgstr ""
"Ukoliko va╧a mre╬a koristi NIS odaberite \"Koristi NIS\". Ako niste sigurni\n"
"raspitajte se kod svog mre╬nog administratora."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1720,18 +2383,17 @@ msgid ""
"and maintenance purposes."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1744,16 +2406,18 @@ msgstr ""
"Ako ne znate ╧to odabrati odaberite \"Prvi sektor \n"
"diska (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
+"Ako niste sigurni uobiХajeni izbor je \"/dev/hda\" (primarni \n"
+"master IDE disk) ili \"/dev/sda\" (prvi SCSI disk)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1764,7 +2428,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1781,14 +2445,45 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1800,7 +2495,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1808,7 +2503,7 @@ msgstr ""
"Ukoliko je X pogre╧no pode╧en kori╧tenjem ovih opcija mo╬ete\n"
"ispravno podesiti X Window sustav."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -1816,45 +2511,49 @@ msgstr ""
"Ukoliko preferirate grafiХku prijavu odaberite \"Da\". U protivnom, "
"odaberite \"Ne\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1869,183 +2568,131 @@ msgstr ""
"proХitajte\n"
"dodatne upute."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Odaberite jezik"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Odaberite razred instalacije"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Otkrivanje hard diskova"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Podesi mi╧"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Odaberite tipkovnicu"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Razno"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Podesi datoteХne sustave"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatiraj particije"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Izabir instaliranih paketa"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instaliraj sustav"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Podesi mre╬u"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kriptografski"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Podesi vremensku zonu"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Pode╧avanje servisa"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Podesi pisaХ"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Pode╧avanje root lozinke"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Dodaj korisnika"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Napravi boot disketu"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Instaliraj bootloader"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Podesi X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
-msgstr "IzaПi iz instalacije"
-
-#: ../../install2.pm_.c:337
-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 ""
-"Morate imati root particiju.\n"
-"Prvo napravite particiju (ili kliknite na postojeФu) te\n"
-"odaberite akciju ``Mjesto monitranja'' te odaberite `/'"
+msgstr "Izlaz iz instalacije"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Gre╧ka prilikom Хitanja datoteke $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake nije uspio proХitati va╧u particijsku tablice.\n"
-"Nastavite o vlastitoj odgovornosti."
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Molim izaberite koju vrstu mi╧a koristite."
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Tra╬im root particiju."
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Molim izaberite koju vrstu mi╧a koristite."
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informacije"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Ovo nije root particija, molim odaberite drugu."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Niti jedna root particija nije pronaПena"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Ne mogu koristiti broadcast bez NIS domene"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Gre╧ka prilikom Хitanja datoteke $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dupliciraj mjesto monitranja %s"
-
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
+"Morate imati root particiju.\n"
+"Prvo napravite particiju (ili kliknite na postojeФu) te\n"
+"odaberite akciju ``Mjesto monitranja'' te odaberite `/'"
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Dobrodo╧li u %s"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Disketni pogon nije dostupan"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "PokreФem korak `%s'\n"
-
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Morate imati swap particiju"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2055,98 +2702,75 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Izaberite veliХinu koji ╬elite instalirati"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Koristi za loopback"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Ukupna veliХina:"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "InaХica: %s\n"
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Koristi postojeФe particije"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "VeliХina: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Nema postojeФih particija koje bih mogao upotrijebiti"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Odaberite pakete koje ╬elite instalirati"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Koristi Windows particiju za loopback"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Koju particiju ╬elite smjestiti Linux4Win?"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instaliraj"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Odaberite veliХinu"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instaliram"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "VeliХina korijenske particije u MB: "
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Molim priХekajte,"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "VeliХina swap particiju u MB: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Preostalo vrijeme"
+#: ../../install_interactive.pm_.c:102
+#, fuzzy
+msgid "Use the free space on the Windows partition"
+msgstr "Iskoristi slobodan prostor na FAT particiji"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Ukupno vrijeme"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Kojoj particiji ╬elite promijeniti veliХinu?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Pripremam instalaciju"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "IzraХunavam granice fat datoteХnog sustava"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Instaliram paket %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Da ipak nastavim?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr ""
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Da koristim postojeФu postavu X11?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Nemate niti jednu Windows particiju!"
-
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Nemate dovoljno mjesta za Lnx4win"
+#: ../../install_interactive.pm_.c:112
+#, fuzzy
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "Va╧e Windows particija je prefragmentirana, molim defragmentirajte ju."
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2162,33 +2786,146 @@ msgstr ""
"Windows particije.\n"
"Kada ste sigurni da ╬elite nastaviti, pritisnite U redu."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automatsko mijenjanje veliХine nije uspjelo"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "Na koji se sektor ╬elite premjestiti?"
+
+#: ../../install_interactive.pm_.c:123
+#, c-format
+msgid "partition %s"
+msgstr "particija %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Koju particiju ╬elite smjestiti Linux4Win?"
+#: ../../install_interactive.pm_.c:129
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Mijenjanje FAT veliХine nije uspjelo: %s"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Odaberite veliХinu"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "VeliХina korijenske particije u MB: "
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "VeliХina swap particiju u MB: "
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Ukloni Windowse(TM)"
+
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Imate vi╧e od jednog hard diska, na koji ╬elite instalirati Linux?"
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Svi podaci i postojeФe particije biti Фe izgubljeni na disku %s"
+
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Vanjski modem"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Koristi diskdrake"
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Koristi fdisk"
+
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Sada mo╬ete razdijeliti %s.\n"
+"Kada ste gotovi ne zaboravite spremiti postavu sa `w'"
+
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Iskoristi slobodan prostor na FAT particiji"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Ne mogu dodati niti jednu dodatnu particiju"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Vrsta particijske tabele: %s\n"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Podi╬em mre╬u"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "OnemoguФujem mre╬u"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Dupliciraj mjesto monitranja %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Dobrodo╧li u %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Disketni pogon nije dostupan"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "PokreФem korak `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Molim izaberite jedan od slijedeФih razreda instalacije:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Ukupna veliХina izabranih grupa je otprilike %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2197,7 +2934,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2207,58 +2944,102 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Detaljniji izbor nalazi se u slijedeФem koraku."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Odaberite postotak paketa koje ╬elite instalirati"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Odaberite pakete koje ╬elite instalirati"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instaliraj"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automatski odabir ovisnosti"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Pro╧iri stablo"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Sa╬mi stablo"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Lo╧ paket"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "InaХica: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "VeliХina: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "ZnaХaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veliХina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Ne mo╬ete oznaХiti ovaj paket buduФi da nema dovoljno mjesta gdje ga se mo╬e "
+"instalirati"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "SlijedeФi paketi Фe biti deinstalirani"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "SlijedeФi paketi Фe biti instalirani/uklonjeni"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Ne mo╬ete oznaХiti/odznaХiti ovaj paket"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "BuduФi da je ovo obvezni paket ne mo╬ete ga odznaХiti"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Ne mo╬ete odznaХiti ovaj paket buduФi da je veФ instaliran"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2266,46 +3047,89 @@ msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga ╬elite odznaХiti?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne mo╬ete odznaХiti ovaj paket buduФi da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Ne mo╬ete oznaХiti ovaj paket buduФi da nema dovoljno mjesta gdje ga se mo╬e "
-"instalirati"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "SlijedeФi paketi Фe biti instalirani/uklonjeni"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Ne mo╬ete oznaХiti/odznaХiti ovaj paket"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Molim priХekajte,"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Preostalo vrijeme"
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Ukupno vrijeme"
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Odustani"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Pripremam instalaciju"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instaliram paket %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Prihvati korisnika"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2315,194 +3139,401 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Promijeni veliХinu"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Da ipak nastavim?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Javila se gre╧ka prilikom sortiranja paketa:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Pojavila se gre╧ka kod instalacije paketa:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Pojavila se gre╧ka"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Molim izaberite jezik koji ╬elite koristiti."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Tipkovnica"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Molim izaberite raspored tipkovnice."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Mo╬ete izabrati druge jezike koji Фe biti dostupni nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Korijenska particija"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Koja je korijenska particija (/) va╧eg sustava?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Instalacijski razred"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Koji instalacijski razred ╬elite?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instaliraj/Nadogradi"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Instalacija ili nadogradnja?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatski"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "PrilagoПeno"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Dogradnja"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normalno"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "Informacije"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Razvojno"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Poslu╬itelj"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Koja je namjena ovog sustava ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu mi╧a koristite."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Port mi╧a"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je mi╧ prikljuХen."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Pode╧avam PCMCIA kartice..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Pode╧avam IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
msgstr ""
-"Izaberite particiju koju ╬elite koristiti kao korijensku particiju (/)."
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake nije uspio proХitati va╧u particijsku tablice.\n"
+"Nastavite o vlastitoj odgovornosti."
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Korijenska particija"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Koja je korijenska particija (/) va╧eg sustava?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje ╬elite formatirati"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za zavr╧etak instalacije, molim dodajte jo╧"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Tra╬im dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Tra╬im pakete koje mogu nadograditi"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
+"Ne mo╬ete oznaХiti ovaj paket buduФi da nema dovoljno mjesta gdje ga se mo╬e "
+"instalirati"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normalno"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Normalno"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "PrilagoПeno"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Izaberite veliХinu koji ╬elite instalirati"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
+#, fuzzy
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 ""
+"Ako imate sve dolje navedene CDove kliknite U redu.\n"
+"Ako nemate niti jedan od dolje navedenih CD kliknite Odustani.\n"
+"Ako imate samo neke od dolje navedenih CDa odznaХite one koje nemate i "
+"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2510,173 +3541,11 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Zadr╬i postojeФu IP postavu"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Promijeni mre╬ne postavke"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ne pode╧avaj mre╬u"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Mre╬ne postavke"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Lokalna mre╬a je veФ pode╧ena. Da li ╬elite:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Da li ╬elite podesiti mre╬ne postavke sustava?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "ne mogu pronaФi niti jednu mre╬nu karticu"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Postavke modema"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Pode╧avam mre╬ni ureПaj %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Molim unesite IP postavke za ovaj stroj.\n"
-"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
-"toХkama (npr. 1.2.3.4)"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatski IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP adresa:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresa treba biti oblika 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Pode╧avam mre╬u"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Molim unesite ime raХunala.\n"
-"Ime raХunala treba biti puno ime raХunala,\n"
-"primjerice mojeracunalo.odjel.domena.hr.\n"
-"TakoПer unesite IP adresu gateway raХunala ako gateway postoji"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS poslu╬itelj:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Gateway ureПaj:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Ime raХunala:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Da poku╧am pronaФi modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Izaberite serijski port na kojemu se nalazi modem."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Podesi dialup"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Ime veze"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telef. broj"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Prijavno ime"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Provjera autentiХnosti"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Temeljem skripta"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminal-zasnovano"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Ime domene"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Prvi DNS poslu╬itelj"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Drugi DNS poslu╬itelj"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2715,89 +3584,95 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg ╬elite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Spajam se na mirror kako bih pribavio popis dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Odaberite pakete za instalaciju."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "U kojoj ste vremenskoj zoni?"
+msgstr "Koja je namjena ovog sustava ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Da li je va╧ hardverski sat namje╧ten na GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Kojoj particiji ╬elite promijeniti veliХinu?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Koristi shadow datoteku"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Koristi MD5 lozinke"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Koristi NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "yellow pages"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadr╬avati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Provjera autentiХnosti NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS poslu╬itelj"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(veФ postoji %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -2807,60 +3682,78 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Puno ime"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "KorisniХko ime"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Ljuska"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisniХko ime"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "KorisniХko ime mo╬e sadr╬avati samo mala slova, brojeve, `-' i `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Ovaj korisnik veФ postoji"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "PreskoХi"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -2874,184 +3767,147 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "╝alim, meПutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Izaberite disketni pogon koji ╬elite koristiti za izradu boot diskete"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalacija LILO-a nije uspjela. Prijavljena je slijedeФa gre╧ska:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Da li ╬elite koristiti SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO glavne postavke"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ovo su trenutni zapisi u SILO-u.\n"
-"Mo╬ete dodati jo╧ koji ili urediti postojeФi."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Particija"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Ova oznaka veФ postoji"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalacija SILO-a nije uspjela. Prijavljena je slijedeФa gre╧ska:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Da li ╬elite koristiti aboot?"
+msgstr "Da li ╬elite koristiti SILO?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Postavke proxya"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy treba biti http://"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://"
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalacija LILO-a nije uspjela. Prijavljena je slijedeФa gre╧ska:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Dobrodo╧li u Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Slab"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Nizak"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Srednji"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Visok"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Razna pitanja"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(mo╬e uzrokovati o╧teФenje podataka)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Koristi optimizacije hard diska?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Izaberite sigurnosni nivo"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veliХina RAM (pronaПeno %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automatsko montiranje uklonjivog (removable) medija"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "UkljuХi NumLock kod pokretanja"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Upi╧ite veliХinu RAM u Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Ne mo╬ete koristiti supermount u najvi╧em sigurnosnom nivou"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Da li tra╬im PCI ureПaje?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Da koristim postojeФu postavu X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
+#, fuzzy
msgid "Creating auto install floppy"
-msgstr ""
+msgstr "Napravi boot disketu"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3061,7 +3917,7 @@ msgstr ""
"\n"
"╝elite li zbilja zavr╧iti?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3074,146 +3930,18 @@ msgid ""
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Ga╧enje sustava"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instaliram upravljaХki program %s za karticu %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Koji %s upravljaХki program ╬elite isporbati?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Auto. ispitaj"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Odredi postavke"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Sada mo╬ete unijeti postavke za modul %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada mo╬ete unijeti postavke za modul %s.\n"
-"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Postavke modula:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"UХitavanje modula %s nije uspjelo.\n"
-"Da li ╬elite poku╧ati ponovo sa drugim parametrima?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Da li da tra╬im PCMCIA kartice?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Pode╧avam PCMCIA kartice..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Da li tra╬im %s ureПaje?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Prona╧ao sam %s %s interfacea"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Da li imate jo╧ koji?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Da li imate %s interface?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ne"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Da"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Poka╬i info o hardveru"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Podi╬em mre╬u"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "OnemoguФujem mre╬u"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake instalacija %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> izmeПu elemenata | <Space> bira | <F12> slijedeФi zaslon"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Molim priХekajte"
@@ -3223,7 +3951,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Dvosmislenost (%s), budite precizniji\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Krivi izbor, poku╧ajte ponovo\n"
@@ -3237,448 +3965,962 @@ msgstr " ? (uobiХajeno %s) "
msgid "Your choice? (default %s) "
msgstr "Va╧ izbor? (uobiХajeno %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Va╧ izbor? (uobiХajeno %s unesite `none' za nijedan)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "хe╧ka"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "NjemaХka"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "╘panjolska"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norve╧ka"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armenska (typewriter)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbejd╬anska (latinica)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "Azerbejd╬anska (Фirilica)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bugarska"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "Bugarska"
+msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "╘vicarska (NjemaХki raspored)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "╘vicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
-msgstr ""
+msgstr "NjemaХka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (USA)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Norve╧ka)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GrХka"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "MaПarska"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
-msgstr ""
+msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iranska"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japanska (106 tipaka)"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latino ameriХka"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "╘vedska"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SlovaХka"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vijetnamska \"numeric row\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Jugoslavenska (latiniХni raspored)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - mi╧"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr ""
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "Ljuska"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serijski"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "GeneriХki mi╧ s 2 gumba"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "GeneriХki mi╧ s 3 gumba"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mi╧ (serijski, stari C7 tip)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Nema mi╧a"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "niti jedan"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Nema mi╧a"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Da li je ovo ispravno?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Postava Interneta"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Da li ╬elite poku╧ati spajanje na Internet ?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Postavke Internet veze"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Ne spajaj se na Internet"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
-"\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Spoji se na Internet"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN postavke"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
msgstr ""
-"Dobrodosli u LILO izbornik operativnih sustava!\n"
+"Izaberite va╧eg pru╬atelja Internet usluga.\n"
+" Ako nije na popisu odaberite Drugi"
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "Postava Interneta"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ kartice"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO kartice"
+
+#: ../../netconnect.pm_.c:164
+#, fuzzy
+msgid "Card IO_0"
+msgstr "IO kartice"
+
+#: ../../netconnect.pm_.c:165
+#, fuzzy
+msgid "Card IO_1"
+msgstr "IO kartice"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Va╧ telefonski broj"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Ime ISP pru╬atelja npr. provider.hr"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Telef. broj pru╬atelja"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Pru╬ateljev DNS 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Pru╬ateljev DNS 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "NaХin biranja"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "KorisniХko ime"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Lozinka"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Potvrda lozinke"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Isku╧aj postavu"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Ostatak svijeta - bez D-kanala (za iznajmljene linije)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Koji protokol ╬elite koristiti ?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Ne znam"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Kakvu karticu posjedujete?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Da ipak nastavim?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Prekini"
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"Za popis dostupnih sustava pritisnite <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"Ako zelite ucitati neki od operativnih sustava upi╧ite njegovo ime\n"
-"i pritisnite <ENTER> oili pricekajte %d sekundi za podrazumijevani\n"
-"operativni sustav.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Kakvu ISDN karticu imate?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Prona╧ao sam ISDN karticu:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
+"Prona╧ao sam ISDN PCI karticu meПutim ne znam kojeg je tipa. Molim izaberite "
+"va╧u PCI karticu na slijedeФem ekranu."
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
+"Nisam na╧ao niti jednu ISDN PCI karticu. Molim izaberite va╧u PCI karticu na "
+"slijedeФem ekranu."
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Odaberite novu veliХinu"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Izaberite na kojem serijskom portu je mi╧ prikljuХen."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
msgstr ""
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Da li ╬elite isku╧ati postavu ?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "ISDN postavke"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
msgstr ""
+"Da li ╬elite da se sustav ve╬e na Internet kod svakog podizanja (boot) "
+"sustava ?"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Da poku╧am pronaФi modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Izaberite serijski port na kojemu se nalazi modem."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Podesi dialup"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Ime veze"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "Telef. broj pru╬atelja"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Prijavno ime"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Provjera autentiХnosti"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Temeljem skripta"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminal-zasnovano"
+
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "Ime veze"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Prvi DNS poslu╬itelj"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Drugi DNS poslu╬itelj"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Spoji se na Internet"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Postavke Internet veze"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Ne spajaj se na Internet"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Ne spajaj se na Internet"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Spoji se na Internet"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Prekini vezu na Internet"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Postavke Internet veze"
+
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internet veza & postava"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - mi╧"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Postavke Internet veze"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB mi╧"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Postavke Internet veze"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB mi╧ (2 gumba)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Interna ISDN kartica"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB mi╧ (3 gumba i vi╧e)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Vanjski modem"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB mi╧"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Spoji se na Internet"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB mi╧ (2 gumba)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Kakav tip ISDN veze koristite ?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB mi╧ (3 gumba i vi╧e)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Postavke Internet veze"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "GeneriХki mi╧ (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Francuska"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Ostale zemlje"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "GeneriХki mi╧ s 3 gumba (PS/2)"
+#: ../../netconnect.pm_.c:706
+#, fuzzy
+msgid "In which country are you located ?"
+msgstr "U kojoj se dr╬avi nalazite ?"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:712
+#, fuzzy
+msgid "Alcatel modem"
+msgstr "Vanjski modem"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Vanjski modem"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+#, fuzzy
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"Ako je va╧ modem adsl modem od alcatela one izaberite pptp alcatel. Ako "
+"nije, izaberite pppoe."
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Postavke Internet veze"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Koji protokol ╬elite koristiti ?"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus mi╧"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Postavke Internet veze"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus mi╧"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Podesi mre╬u"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus mi╧"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Mre╬ne postavke"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB mi╧"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Da li ╬elite isku╧ati postavu ?"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB mi╧ (3 gumba i vi╧e)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Podesi mre╬u"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Nema mi╧a"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Spoji se na Internet"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ili vi╧e (serijski)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "Lokalna mre╬a je veФ pode╧ena. Da li ╬elite:"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (serijski)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Kako se ╬elite spojiti na Internet?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serijski)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Mre╬ne postavke"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serijski)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serijski)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "ne mogu pronaФi niti jednu mre╬nu karticu"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serijski)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Pode╧avam mre╬u"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serijski)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Molim unesite ime raХunala.\n"
+"Ime raХunala treba biti puno ime raХunala,\n"
+"primjerice mojeracunalo.odjel.domena.hr.\n"
+"TakoПer unesite IP adresu gateway raХunala ako gateway postoji"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serijski)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Ime raХunala:"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mi╧ (serijski, stari C7 tip)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serijski)"
+#: ../../network.pm_.c:302
+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 ""
+"Molim unesite IP postavke za ovaj stroj.\n"
+"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
+"toХkama (npr. 1.2.3.4)"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "GeneriХki Mi╧ (serijski)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Pode╧avam mre╬ni ureПaj %s"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft compatible (serial)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatski IP"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Generic 3 Button Mouse (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "IP adresa:"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Netmask:"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Da li je ovo ispravno?"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti oblika 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Molim unesite ime raХunala.\n"
+"Ime raХunala treba biti puno ime raХunala,\n"
+"primjerice mojeracunalo.odjel.domena.hr.\n"
+"TakoПer unesite IP adresu gateway raХunala ako gateway postoji"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "DNS poslu╬itelj:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "Gateway:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Gateway ureПaj:"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Postava nakon instalacije"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy treba biti http://"
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy treba biti ftp://"
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -3688,21 +4930,21 @@ msgstr ""
"Jedino rje╧enje je da pomaknete va╧u primarnu particiju kako bi rupa bila\n"
"odmah do pro╧irenih particija."
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Gre╧ka prilikom Хitanja datoteke %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "VraФanje iz datoteke %s nije uspjelo: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Lo╧a backup datoteka"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Gre╧ka prilikom pisanja u datoteku %s"
@@ -3736,42 +4978,56 @@ msgstr "interesantno"
msgid "maybe"
msgstr "mo╬da"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (va╬no)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (vrlo lijepo)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (lijepo)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Prika╬i manje"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Prika╬i vi╧e"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Lokalni pisaХ"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "Postavke udaljenog lpd pisaХa"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Udaljeni red"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "Udaljeni lpd"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "Postavke NetWare pisaХa"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "UreПaj pisaХa"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Otkrivanje ureПaja..."
@@ -3785,11 +5041,11 @@ msgstr "Isku╧aj portove"
msgid "A printer, model \"%s\", has been detected on "
msgstr "PisaХ, model \"%s\", je otkriven na "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "UreПaj lokalnog pisaХa"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -3797,15 +5053,15 @@ msgstr ""
"Na koji ureПaj je va╧ pisaХ spojen \n"
"(napomena: /dev/lp0 je jednak LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "UreПaj pisaХa"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisaХa"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -3815,19 +5071,19 @@ msgstr ""
"ime ispisnog poslu╬itelja te ime reda na poslu╬itelju\n"
"na koji ╬elite ispisivati."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Udaljeno raХunalo"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Udaljeni red"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisaХa"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3836,27 +5092,27 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB poslu╬itelj"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP SMB poslu╬itelja"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisaХa"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3864,130 +5120,155 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Ispisni poslu╬itelj"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Ime reda pisaХa"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "Postavke NetWare pisaХa"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "Postavke pisaХa"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Slab"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Kakav tip pisaХa posjedujete?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Da li ╬elite isku╧ati pisaХ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Ispisujem probnu stranicu(e)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Probna stranica(e) poslana je na pisaХ.\n"
+"Ponekad je potrebno par sekundi prije nego pisaХ poХne s ispisom.\n"
+"Stanje ispisa:\n"
+"%s\n"
+"\n"
+"Da li sve radi kako spada?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Probna stranica(e) poslana je na pisaХ.\n"
+"Ponekad je potrebno par sekundi prije nego pisaХ poХne s ispisom.\n"
+"Da li sve radi kako spada?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Da, ispi╧i ASCII probnu stranicu"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Da, ispi╧i PostScript probnu stranicu"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Da, ispi╧i obje probne stranice"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Postavke pisaХa"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Kakav tip pisaХa posjedujete?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Postavke pisaХa"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "VeliХina papira"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr ""
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Postavke uniprinter pokretaХkog programa"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Ispi╧i tekst kao PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Obrni redoslijed stranica"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr ""
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Desna/lijeva margina u toХkama (1/72 inХa)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Gornja/donja margina u toХkama (1/72 inХa)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Dodatne GhostScript postavke"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Dodatne Tekst Postavke"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Da li ╬elite isku╧ati pisaХ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Ispisujem probnu stranicu(e)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Probna stranica(e) poslana je na pisaХ.\n"
-"Ponekad je potrebno par sekundi prije nego pisaХ poХne s ispisom.\n"
-"Stanje ispisa:\n"
-"%s\n"
-"\n"
-"Da li sve radi kako spada?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Probna stranica(e) poslana je na pisaХ.\n"
-"Ponekad je potrebno par sekundi prije nego pisaХ poХne s ispisom.\n"
-"Da li sve radi kako spada?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "PisaХ"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Da li ╬elite podesiti pisaХ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -3995,19 +5276,64 @@ msgstr ""
"SlijedeФe su redovi pisaХa.\n"
"Mo╬ete dodati jo╧ koji ili urediti postojeФi."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Procjenjujem"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Odaberi vezu pisaХa"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Kako je pisaХ povezan?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Odaberi vezu pisaХa"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Ukloni red"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Lokalni pisaХ"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Odredi postavke"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "Informacije"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4015,57 +5341,57 @@ msgid ""
"connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Ime reda"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "PosredniХki direktorij"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Veza pisaХa"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatirani_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Ne mogu pisati datoteku $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (mo╬da niste instalirali raidtools alate?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4073,7 +5399,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4081,7 +5407,7 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4089,7 +5415,7 @@ msgstr ""
"Apache je World Wide Web poslu╬itelj. Koristi se za poslu╬ivanje HTML\n"
"dokumenata i CGI skriptova."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4099,20 +5425,20 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4120,13 +5446,13 @@ msgstr ""
"named (BIND) je Domain Name Server (DNS) poslu╬itelj koji se upotrebljava\n"
"za razluХivanje imena raХunala u IP adrese."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4134,20 +5460,20 @@ msgstr ""
"Aktivira/Deaktivira sva pode╧ena mre╬na suХelja prilikom pokretanja\n"
"sustava."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4155,7 +5481,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4163,101 +5489,242 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Izaberite koji servisi trebaju biti startani automatski kod boot-a"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Dobrodosli u SILO izbornik operativnih sustava!\n"
-"\n"
-"Za popis dostupnih sustava pritisnite <TAB>.\n"
-"\n"
-"Ako zelite ucitati neki od operativnih sustava upi╧ite njegovo ime\n"
-"i pritisnite <ENTER> oili pricekajte %d sekundi za podrazumijevani\n"
-"operativni sustav.\n"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Podesi LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Napravi boot disketu"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formatiraj disketu"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Izbor"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalacija LILO-a nije uspjela. Prijavljena je slijedeФa gre╧ska:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tablica"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Podesi X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tablica"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Veza pisaХa"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "NaХin biranja"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "uХitavam postavu"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Pode╧avam skriptove, instaliram softver, pokreФem poslu╬itelje..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Pode╧avam IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Ne mogu instalirati ipchains RPM s urpmi-em."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Ne mogu instalirati dhcp RPM s urpmi-em."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Ne mogu instalirati linuxconf RPM s urpmi-em."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Ne mogu instalirati bind RPM s urpmi-em."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Ne mogu instalirati caching-nameserver RPM s urpmi-em"
+
+#: ../../standalone/drakgw_.c:512
+#, fuzzy
+msgid "Congratulations!"
+msgstr "Postavke"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4307,23 +5774,30 @@ msgstr "Pode╧avam sigurnosni nivo"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koje ╬elite koristiti"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Koji raspored tipkovnice imate?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Promijeni rezoluciju"
+
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Koja je vrsta va╧eg mi╧a?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "niti jedan serial_usb nije pronaПen\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emuliranje treФe tipke?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Na koji serijski port je mi╧ prikljuХen?"
@@ -4431,7 +5905,7 @@ msgstr "Odaberite pakete za instaliranje"
#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
-msgstr ""
+msgstr "Provjeravam ovisnosti"
#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
msgid "Wait"
@@ -4485,7 +5959,7 @@ msgstr "╘to tra╬ite?"
#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
-msgstr ""
+msgstr "Pridjelite ime (npr. `dodatno', `komercijalno')"
#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
@@ -4532,6 +6006,549 @@ msgstr "Tra╬im listove"
msgid "Finding leaves takes some time"
msgstr ""
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Postava Interneta"
+
+#, fuzzy
+msgid "Internet"
+msgstr "interesantno"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Ured"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedija"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedija"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Izaberite veliХinu koji ╬elite instalirati"
+
+#~ msgid "Total size: "
+#~ msgstr "Ukupna veliХina:"
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Promijeni mre╬ne postavke"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Spoji se na Internet normalnim modemom"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Spoji se na Internet pomoФu ISDNa"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Spoji se na Internet pomoФu DSLa (ili ADSLa)"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Spoji se na Internet pomoФu kablovske TV"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "NjemaХka"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "NjemaХka (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "╘to ╬elite napraviti?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Instaliraj"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Promijeni veliХinu"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Koji tip particije ╬elite?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Odaberite \"Instaliraj\" ukoliko nemate Linux instaliran ili ako\n"
+#~ "╬elite imati vi╧e razliХitih distribucija ili inaХica Linux na sustavu.\n"
+#~ "\n"
+#~ "Odaberite \"Dogradnja\" ako ╬elite nadograditi postojeФu inaХicu Mandrake "
+#~ "Linuxa:\n"
+#~ "%s ili %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Odaberite:\n"
+#~ "\n"
+#~ " - Automatski: Ukoliko nikada niste instalirali Linux.\n"
+#~ "\n"
+#~ " - PrilagoПeno: Ukoliko ste upoznati sa Linuxom kori╧tenjem ove\n"
+#~ "opcije moФi Фe te odabrati kakvu instalaciju ╬elite npr. normalna, "
+#~ "programer\n"
+#~ "ili poslu╬itelj. Odaberite \"Normalna\" za sustav opФe namjene.\n"
+#~ "Odaberite \"Programer\" ako ╬elite koristiti raХunalo primarno za razvoj\n"
+#~ "softvera ili odaberite \"Poslu╬itelj\" ako ╬elite koristiti raХunalo kao\n"
+#~ "poslu╬itelj npr. za mail, web, fileserver, ispis itd.\n"
+#~ "\n"
+#~ " - StruХnjak: Ukoliko ste vrlo dobro upoznati sa Linuxom i ╬elite\n"
+#~ "imati potpunu kontrolu nad instalacijom Linuxa odaberite opciju\n"
+#~ "\"StruХnjak\".\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Sve novo definirane particije moraju biti formatirane za\n"
+#~ "uporabu tj. moraju imati ispravni datoteХni sustav. TakoПer ukoliko\n"
+#~ "╬elite obrisati podatke s odreПene particije odaberite reformatiranje.\n"
+#~ "Opaska: nije potrebno reformatirati postojeФe particije osobito\n"
+#~ "ako sadr╬e datoteke ili podatke koje ╬elite saХuvati.\n"
+#~ "Na primjer obiХno /home i /usr/local sadr╬e podatke koje treba saХuvati."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "PoХela je instalacija paketa koje ste odabrali. Ova\n"
+#~ "operacija Фe potrajati par minuta osim ako ste odabrali\n"
+#~ "nadogradnju postojeФeg sustava. U tom sluХaju instalacija\n"
+#~ "Фe izvr╧iti odreПene provjere prije same nadogradnje."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Odbaci promjene?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Veza pisaХa"
+
+#~ msgid "Host name:"
+#~ msgstr "Ime raХunala:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Koja je vrsta va╧eg mi╧a?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Automatski odabir rezolucije"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Kako bih prona╧ao dostupne rezolucije moram poku╧ati par razliХitih.\n"
+#~ "Monitor Фe tokom pretrage treptati...\n"
+#~ "Ukoliko ╬elite slobodno iskljuХite monitor. Nakon ╧to je sve gotovo Хuti Фe "
+#~ "te pip."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Mogu poku╧ati pronaФi dostupnu rezoluciju (npr. 800x600).\n"
+#~ "MeПutim ponekad takva pretraga mo╬e zamrznuti raХunalo.\n"
+#~ "Da li ste sigurni da ╬elite nastaviti?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Niti jedan valjan mode nije naПen\n"
+#~ "Probajte sa drugom grafiХkom karticom ili monitorom"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Automatski tra╬i rezoluciju"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB mi╧"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB mi╧ (2 gumba)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB mi╧ (3 gumba i vi╧e)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB mi╧"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB mi╧ (2 gumba)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB mi╧ (3 gumba i vi╧e)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "GeneriХki mi╧"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus mi╧"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus mi╧"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus mi╧"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB mi╧"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB mi╧ (3 gumba i vi╧e)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ili vi╧e (serijski)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serijski)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serijski)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serijski)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "GeneriХki Mi╧ (serijski)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft compatible (serial)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Generic 3 Button Mouse (serial)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (serijski)"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs montiranje nije uspjelo"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Kriptografski"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Da li ╬elite podesiti mre╬ne postavke sustava?"
+
+#~ msgid "Show less"
+#~ msgstr "Prika╬i manje"
+
+#~ msgid "Show more"
+#~ msgstr "Prika╬i vi╧e"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "Preuzmi cijeli hard disk"
+
+#~ msgid "curly"
+#~ msgstr "curly"
+
+#~ msgid "default"
+#~ msgstr "uobiХajeno"
+
+#~ msgid "tie"
+#~ msgstr "tie"
+
+#~ msgid "brunette"
+#~ msgstr "crnka"
+
+#~ msgid "girl"
+#~ msgstr "djevojka"
+
+#~ msgid "woman-blond"
+#~ msgstr "plavu╧a"
+
+#~ msgid "automagic"
+#~ msgstr "automagijski"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "Da li imate ime raХunala ?"
+
+#~ msgid "Network:"
+#~ msgstr "Network:"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Koji raspored tipkovnice imate?"
+
+#~ msgid "Normal"
+#~ msgstr "Normalno"
+
+#~ msgid "Configure my card"
+#~ msgstr "Podesi moju karticu"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Da li da tra╬im PCMCIA kartice?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Da li tra╬im %s ureПaje?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Postavke modema"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Da li tra╬im PCI ureПaje?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Tra╬im root particiju."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Ovo nije root particija, molim odaberite drugu."
+
+#~ msgid "No root partition found"
+#~ msgstr "Niti jedna root particija nije pronaПena"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Ne mogu koristiti broadcast bez NIS domene"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr ""
+#~ "Izaberite particiju koju ╬elite koristiti kao korijensku particiju (/)."
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "Nemate niti jednu Windows particiju!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Nemate dovoljno mjesta za Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automatski"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Dobrodosli u LILO izbornik operativnih sustava!\n"
+#~ "\n"
+#~ "Za popis dostupnih sustava pritisnite <TAB>.\n"
+#~ "\n"
+#~ "Ako zelite ucitati neki od operativnih sustava upisite njegovo ime\n"
+#~ "i pritisnite <ENTER> oili pricekajte %d sekundi za podrazumijevani\n"
+#~ "operativni sustav.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Dobrodosli u SILO izbornik operativnih sustava!\n"
+#~ "\n"
+#~ "Za popis dostupnih sustava pritisnite <TAB>.\n"
+#~ "\n"
+#~ "Ako zelite ucitati neki od operativnih sustava upisite njegovo ime\n"
+#~ "i pritisnite <ENTER> oili pricekajte %d sekundi za podrazumijevani\n"
+#~ "operativni sustav.\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILO glavne postavke"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Ovo su trenutni zapisi u SILO-u.\n"
+#~ "Mo╬ete dodati jo╧ koji ili urediti postojeФi."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Ova oznaka veФ postoji"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Instalacija SILO-a nije uspjela. Prijavljena je slijedeФa gre╧ska:"
+
+#~ msgid "Shutting down"
+#~ msgstr "Ga╧enje sustava"
+
#~ msgid "useless"
#~ msgstr "beskorisno"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 76f5b8479..dc2b201d9 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -1,59 +1,112 @@
# Translation file of Mandrake graphic install
# Copyright (C) 2000 Mandrakesoft
-# KOVACS Emese Alexandra <emese@itp.hu>
-# Kultsar Kadosa Atilla <kadi@kadi.emg.hu>
-# Takacs Sandor <taki@dfmk.hu>
-# Timar Andras <atimar@itp.hu>
-# 2000.
+# KOVACS Emese Alexandra <emese@itp.hu>, 2000
+# Kultsar Kadosa Atilla <kadi@kadi.emg.hu>, 2000
+# Takacs Sandor <taki@dfmk.hu>, 2000
+# Timar Andras <atimar@itp.hu>, 2000
+# Sari Gabor <saga@tux.hu>, 2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-18 12:56+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-09-01 12:56+0200\n"
"Last-Translator: KOVACS Emese Alexandra <emese@itp.hu>\n"
"Language-Team: hungarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "аltalАnos"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "VideokАrtya"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
-msgstr "VАlassz videokАrtyАt"
+msgstr "VАlassz videСkАrtyАt"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "VАlassz X szervert"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X szerver"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"A kАrtyАdhoz nincs 3D hardver gyorsМtАs az XFree %s verziСban.\n"
+"A kАrtyАd az XFree %s verziСban csak 2D tИren tАmogatott."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "A kАrtyАdhoz van hardveres 3D gyorsМtАs az XFree %s verziСval."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s hardveres 3D gyorsМtАssal"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"A kАrtyАdhoz nincs 3D hardver gyorsМtАs az XFree %s verziСban.\n"
+"EZ EGY KмSиRLETI OPCIс, ESETLEG LEFAGYASZTHATJA A SZаMмTсGиPEDET.\n"
+"A kАrtyАd az XFree %s verziСban csak 2D tИren tАmogatott."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"A kАrtyАdhoz nincs 3D hardver gyorsМtАs az XFree %s verziСban.\n"
+"EZ EGY KмSиRLETI OPCIс, ESETLEG LEFAGYASZTHATJA A SZаMмTсGиPEDET."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s KмSиRLETI 3D hardver gyorsМtАssal"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree beАllМtАsok"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "VАlaszd ki a grafikus kАrtya memСriamИretИt"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "VАlassz a kЖvetkezУ lehetУsИgek kЖzЭl"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "VАlassz monitort"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -67,8 +120,8 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
"A kИt kritikus paramИter a fЭggУleges frissМtИs, ez az a frekvencia, amivel "
-"a \n"
-"teljes kИpernyУ frissЭl Иs a mИg fontosabb vМzszintes frissМtИs, ez az a \n"
+"a\n"
+"teljes kИpernyУ frissЭl Иs a mИg fontosabb vМzszintes frissМtИs, ez az a\n"
"frekvencia, amivel a monitor a vМzszintes vonalakat rajzolja, amikbУl a\n"
"kИpet vИgЭl ЖsszeАllМtja.\n"
"\n"
@@ -76,39 +129,40 @@ msgstr ""
"kИpessИgeit.\n"
"Ha kИtsИgeid vannak, vАlaszd inkАbb az alacsonyabb ИrtИket."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "VМzszintes frissМtИs"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "FЭggУleges frissМtИs"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "A monitor nincs beАllМtva"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "A grafikus kАrtya nincs beАllМtva"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Nem vАlasztottАl mИg felbontАst"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Leteszteled a beАllМtАsokat?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "FigyelmeztetИs: a tesztelИs veszИlyes lehet ezzel a videokАrtyАval"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"FigyelmeztetИs: a videokАrtya tesztelИse lefagyaszthatja a szАmМtСgИped"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "BeАllМtАsok tesztelИse"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -116,186 +170,174 @@ msgstr ""
"\n"
"vАltoztass meg pАr paramИtert"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Hiba tЖrtИnt:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "KilИpИs %d mАsodpercen belЭl"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr "JС ez a beАllМtАs?"
+msgstr "JС lesz ez a beАllМtАs?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Hiba lИpett fel, vАltoztass meg pАr paramИtert"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automatikus felbontАsok"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Megkeresem a mШkЖdУkИpes felbontАsokat. Ezalatt a monitor villogni fog...\n"
-"Ha ez zavar, nyugodtan kikapcsolhatod, csipogАssal jelzem, amikor befejeztem."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "FelbontАs"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "VАlassz felbontАst Иs szМnmИlysИget"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
-msgstr "VideokАrtya: %s"
+msgstr "VideСkАrtya: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 szerver: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Mindent mutat"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "FelbontАsok"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"MegprСbАlhatom megkeresni az elИrhetУ felbontАsokat (pl. 800x600).\n"
-"Ez rossz esetben lefagyaszthatja a szАmМtСgИpet.\n"
-"MegprСbАljam?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Nem talАltam ИrvИnyes videomСdot.\n"
-"PrСbАld meg egy mАsik videokАrtya vagy monitor beАllМtАssal"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "BillentyШzetkiosztАs: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "EgИr tМpusa: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "EgИrhez rendelt eszkЖz: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor sorfrekvenciАja: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor kИpfrekvenciАja: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
-msgstr "VideokАrtya: %s\n"
+msgstr "VideСkАrtya: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Grafikus memСria: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "SzМnmИlysИg: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "FelbontАs: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 szerver: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 driver: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "X-Window beАllМtАsАnak elУkИszМtИse"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
-msgstr "MАsik monitor"
+msgstr "Monitor megvАltoztatАsa"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
-msgstr "MАsik videokАrtya"
+msgstr "VideokАrtya megvАltoztatАsa"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Szerver beАllМtАsainak megvАltoztatАsa"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
-msgstr "MАs felbontАs"
-
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "FelbontАs automatikus keresИse"
+msgstr "FelbontАs megvАltoztatАsa"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Adatok megjelenМtИse"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "зjra tesztel"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "KilИpИs"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Mit szeretnИl tenni?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "VАltoztatАsok elvetИse?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Megtartod a jelenlegi beАllМtАsokat?\n"
+"A jelenlegi beАllМtАsok:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-"KИrlek jelentkezz be Зjra a/az %s -be/-ba, hogy a vАltozАsok ИrvИnyre "
-"jussanak"
+"KИrlek jelentkezz be Зjra a(z) %s -be, hogy a vАltozАsok ИrvИnyre jussanak"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-"KИrlek lИpjИl ki, majd hasznАld a Ctrl-Alt-BackSpace billentyШkombinАciСt"
+"KИrlek lИpj ki, majd hasznАld a Ctrl-Alt-BackSpace billentyШkombinАciСt"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Grafikus bejelentkezИs"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -303,229 +345,225 @@ msgstr ""
"Be tudom АllМtani, hogy rendszerindМtАskor az X automatikusan elinduljon.\n"
"BeАllМtsam?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Automatikus belИpИs"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Be tudom АllМtani, hogy indМtАskor egy felhasznАlС "
+"automatikusanbejelentkezzen.\n"
+"Ha nem akarod ezt a lehetУsИget kihasznАlni, kattints a CANCEL gombra."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Add meg az alapИrtelmezett felhasznАlСt:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "VАlaszd ki az ablakkezelУt, amit hasznАlni szeretnИl:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 szМn (8 bit)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 ezer szМn (15 bit)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 ezer szМn (16 bit)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milliС szМn (24 bit)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milliАrd szМn (32 bit)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB vagy tЖbb"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 60 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 56 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-kompatМbilis, 1024x768 87 Hz vАltottsoros (nincs 800x600)"
+msgstr "8514-kompatibilis, 1024x768 87 Hz vАltottsoros (nincs 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 87 Hz vАltottsoros, 800x600 56 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 60 Hz-en, 640x480 72 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Nem-vАltottsoros SVGA, 1024x768 60 Hz-en, 800x600 72 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Magas frekvenciАjЗ SVGA, 1024x768 70 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multisync monitor, amely tud 1280x1024-et 60 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multisync monitor, amely tud 1280x1024-et 74 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multisync monitor, amely tud 1280x1024-et 76 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Olyan monitor, amely tud 1600x1200-at 70 Hz-en"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Olyan monitor, amely tud 1600x1200-at 76 Hz-en"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "gЖndЖr"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "alapИrtelmezett (default)"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "nyakkendУs"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "barna"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "lАny"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "szУke nУ"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automatikus"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "A boot partМciС elsУ szektora"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "A lemez elsУ szektora (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub telepМtИse"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO telepМtИse"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Hova szeretnИd telepМteni a bootloader-t?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub telepМtИse"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Egyiket sem"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Melyik bootloader-t szeretnИd hasznАlni?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Bootloader telepМtИs"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Boot eszkЖz"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nem mШkЖdik rИgi BIOS-okkal)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
+msgid "Video mode"
+msgstr "VideСmСd"
+
+#: ../../any.pm_.c:132
msgid "Delay before booting default image"
msgstr "KИsleltetИs az alapИrtelmezett image betЖltИse elУtt"
-#: ../../any.pm_.c:88
-msgid "Video mode"
-msgstr "VideomСd"
-
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "JelszС"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "JelszС (Зjra)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Parancssorban АtadhatС paramИterek korlАtozАsa"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "korlАtozott"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "A bootloader fУbb opciСi"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"A ``Parancssorban АtadhatС paramИterek korlАtozАsa'' beАllМtАsnak jelszС "
+"A \"Parancssorban АtadhatС paramИterek korlАtozАsa\" beАllМtАsnak jelszС "
"nИlkЭl\n"
"nincs Иrtelme"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "PrСbАlkozz Зjra"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "A jelszavak nem egyeznek"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -533,167 +571,388 @@ msgstr ""
"Itt vannak a jelenlegi bejegyzИsek.\n"
"Adhatsz a meglИvУkhЖz Зjakat, vagy mСdosМthatod a rИgieket."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "HozzАad"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "KИsz"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Milyen bejegyzИst szeretnИl hozzАadni?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "EgyИb op. rendszer (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "EgyИb op. rendszer (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Milyen bejegyzИst szeretnИl hozzАadni?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "мrАs-olvasАs (read-write)"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "TАbla (table)"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Nem biztonsАgos (unsafe)"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "CМmke (label)"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "AlapИrtelmezett (default)"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
-msgstr "OK"
+msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "BejegyzИs eltАvolМtАsa"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "эres cМmke nem engedИlyezett"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
-msgstr "MАr van ilyen cМmke"
+msgstr "MАr van ilyen nevШ cМmke"
+
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "TalАltam %s %s csatolСt"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Van mАsik is?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Van valamilyen %s csatolСd?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nem"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Igen"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Hardver infС megjelenМtИse"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Driver telepМtИse a(z) %s kАrtyАhoz (%s)"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(%s modul)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Melyik %s driver-t prСbАljam meg?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Egyes esetekben a %s driver-nek tovАbbi paramИterekre van szЭksИge a helyes\n"
+"mШkЖdИshez, bАr ez nem jellemzУ. SzeretnИl tovАbbi paramИtereket megadni a\n"
+"driver-nek, vagy hagyod, hogy az magАtСl kИrdezze le a hardvertУl a "
+"szЭksИges\n"
+"informАciСt? EsetenkИnt az automatikus keresИs lefagyaszthatja a\n"
+"szАmМtСgИpet, de ez semmilyen kАrosodАssal nem jАr."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Automatikus keresИs"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "RИszletes beАllМtАsok"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Most megadhatod a %s modul paramИtereit."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"A %s modulnak Аtadhatsz paramИtereket.\n"
+"A paramИterek szintaktikАja: `nИv=ИrtИk nИv2=ИrtИk2 ...'.\n"
+"PИldАul: `io=0x300 irq=7'"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Modul beАllМtАsok:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"A %s modul betЖltИse sikertelen.\n"
+"MegprСbАlod mАs paramИterekkel?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Koszontelek %s az operacios rendszer valasztoban!\n"
+"\n"
+"Az opciok megjelenМtesehez nyomd meg a <TAB>-ot.\n"
+"\n"
+"Betolteshez Мrd be a kivant nevet es uss <ENTER>-t,\n"
+"vagy varj %d mp-et az alapertelmezett opcio betoltesehez.\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "L┌gy │dv■z■lve! Ez a GRUB, az oper═ci╒s rendszer v═laszt╒."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Haszn═ld a(z) %c ┌s %c gombokat a bejegyz┌s kijel■l┌s┌re."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Az \"ENTER\" a kiv═lasztott Op. rendszert inditja, \"E\" gombbal"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+"szerkesztheted a bootol═s elo\"tt a parancsokat, a C gombbal parancssort "
+"kapsz"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+"A kijel■lt oper═ci╒s rendszer %d m═sodpercen bel│l automatikusan elindul."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nincs elИg hely a /boot partМciСn"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Munkaasztal"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start MenЭ"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d perc"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 perc"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d mАsodperc"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "LИtrehoz"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Lecsatol"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "TЖrЖl"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FormАz"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "аtmИretez"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "TМpus"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "CsatolАsi pont"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "/etc/fstab МrАsa"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
-msgstr "VАltАs haladС mСdba"
+msgstr "HaladС mСd"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
-msgstr "VАltАs normАl mСdba"
+msgstr "NormАl mСd"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "VisszaАllМtАs fАjlbСl"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "MentИs fАjlba"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "VarАzslС"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "VisszaАllМtАs lemezrУl"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "MentИs lemezre"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
-msgstr "Mindet tЖrli"
+msgstr "Mindet tЖrЖlni"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "жsszes partМciС formАzАsa"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Automatikus helyfoglalАs"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Minden elsУdleges partМciС hasznАlva van"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Nem hozhatС lИtre tЖbb partМciС"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -701,59 +960,63 @@ msgstr ""
"TovАbbi partМciСk lИtrehozАsАhoz tЖrЖlj egyet, hogy kiterjesztett partМciСt\n"
"hozhass lИtre"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "PartМciСs tАbla helyreАllМtАsa"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Visszavon"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "PartМciСs tАbla МrАsa"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "зjratЖltИs"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "эres"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "EgyИb"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "LapozСterЭlet (swap)"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "эres"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "EgyИb"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "FАjlrendszer tМpusok:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "RИszletek"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -761,101 +1024,101 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Egy nagy FAT partМciСd van\n"
-"(ez АltalАban a Microsoft DOS-os/Windows-os partМciС).\n"
+"(ez АltalАban egy Microsoft DOS/Windows partМciС).\n"
"Azt ajАnlom, hogy mИretezd Аt ezt a partМciСt\n"
"(kattints rА, majd kattints az \"аtmИretez\" gombra)"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "KИrlek elУszЖr mentsd le az adatokat"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Figyelmesen olvasd el!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"Ha aboot-ot szeretnИl hasznАlni, bizonyosodj meg rСla, hogy hagytАl elИg "
+"Ha az aboot-ot szeretnИd hasznАlni, bizonyosodj meg rСla, hogy hagytАl elИg "
"helyet\n"
-"(2048 szektor elИg is) a lemez elejИn"
+" a lemez elejИn (2048 szektor elИg lesz)"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
-msgstr "VigyАzz, ez a mШvelet veszИlyes."
+msgstr "VigyАzz! Ez a mШvelet veszИlyes."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Hiba"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "CsatolАsi pont: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "EszkЖz: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "DOS meghajtС betШjele: %s (csak egy tipp)\n"
+msgstr "DOS meghajtС betШjele: %s (Ez csak egy tipp)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "TМpus: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "KezdУszektor: %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "MИret: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s szektor"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
-msgstr "%d. cilindertУl %d. cilinderig\n"
+msgstr "%d. cilindertУl a %d. cilinderig\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
-msgstr "MegformАzva\n"
+msgstr "FormАzva\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
-msgstr "Nincs megformАzva\n"
+msgstr "Nincs formАzva\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Felcsatolva\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback fАjl(ok): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -863,91 +1126,91 @@ msgstr ""
"AlapИrtelmezett indМtАsi partМciС\n"
" (a DOS-nak, nem a lilo-nak)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Szelet mИrete %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diszkek %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback fАjl neve: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Kattints egy partМciСra"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "MИret: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilinder, %s fej, %s szektor\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "PartМciСs tАbla tМpusa: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "%d buszon, %d id-vel\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Felcsatol"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "AktМv"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "RAID-hez hozzАad"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "RAID-bУl eltАvolМt"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "RAID mСdosМtАsa"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
-msgstr "Loopback-hez hasznАld"
+msgstr "Loopback-hez hasznАlva"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "VАlassz"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
-"SajnАlom, de nem hozhatom lИtre a /boot-ot ennyire messze a merevlemez "
+"SajnАlom, de nem hozhatom lИtre a /boot-ot ennyire tАvol a merevlemez "
"elejИtУl (cilinder > 1024).\n"
"Vagy hasznАlod a LILO-t, Иs nem fog mШkЖdni, vagy nem hasznАlod a LILO-t, de "
"akkor nem kell a /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -955,30 +1218,29 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"Az a partМciС, amit root partМciСnak szАnsz (/) fizikailag az 1024. cilinder "
-"utАn talАlhatС a merevlemezen Иs nincs /boot partМciСd.\n"
-"Ha a LILO rendszerbetЖltУt szeretnИd hasznАlni, kИszМts egy /boot partМciСt"
+"utАn talАlhatС, mikЖzben nincs /boot partМciСd.\n"
+"Ha a LILO -t szeretnИd hasznАlni, kИszМts egy /boot partМciСt"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Szoftveres RAID partМciСt vАlasztottАl root (/) partМciСnak.\n"
"Egyik rendszerbetЖltУ sem tudja ezt kezelni /boot partМciС nИlkЭl.\n"
-"LИtre kell hoznod egy /boot partМciСt, ha a lilo-t vagy a grub-ot\n"
-"szeretnИd hasznАlni."
+"EzИrt lИtre kell hoznod egy /boot partМciСt."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
-msgstr "HasznАld inkАbb a(z) ``%s''-t"
+msgstr "HasznАld inkАbb a(z) \"%s\"-t"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
-msgstr "HasznАld elУszЖr a ``Lecsatol''-t"
+msgstr "HasznАld elУszЖr a \"Lecsatol\"-t"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -986,41 +1248,42 @@ msgstr ""
"A(z) %s partМciС tМpusАnak megvАltoztatАsa utАn a partМciСn minden adat "
"elvИsz"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "EttУl fЭggetlenЭl folytassam?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
-msgstr "KilИp mentИs nИlkЭl"
+msgstr "KilИpИs mentИs nИlkЭl"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "KilИpsz a programbСl a partМciСs tАbla elmentИse nИlkЭl?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "PartМciС tМpusАnak vАltoztatАsa"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Milyen partМciС-tМpust szeretnИl?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Melyiket vАlasztod?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nem lehet ReiserFS-t hasznАlni 32 MB-nАl kisebb partМciСn"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "HovА akarod felcsatolni a(z) %s loopback fАjlt?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "HovА akarod felcsatolni a(z) %s eszkЖzt?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1028,229 +1291,234 @@ msgstr ""
"Nem tudom megszЭntetni a csatolАsi pontot, mert a partМciСt loopback fogja.\n"
"SzЭntesd meg elУszЖr a loopback-et."
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "A(z) %s partМciС formАzАsa utАn a partМciСn minden adat elvИsz"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "FormАzАs"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "A(z) %s loopback fАjl formАzАsa"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "A(z) %s partМciС formАzАsa"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Az Жsszes partМciС formАzАsa utАn "
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "minden adat elvИsz a partМciСkrСl"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "аthelyez"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Melyik diszkre akarod Аthelyezni?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Szektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Melyik szektorra akarod Аthelyezni?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "аthelyezem"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "PartМciС АthelyezИse..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A(z) %s meghajtС partМciСs tАblАjАt menteni fogom!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "зjra kell indМtanod a rendszert, hogy a vАltozАsok ИrvИnyesЭljenek"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "FАjlrendszer-jellemzУk kiszАmМtАsa"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "аtmИretezem"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Melyik partМciСt szeretnИd АtmИretezni?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "ErrУl a partМciСrСl minden adatot le kellene menteni"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "A(z) %s partМciС АtmИretezИse utАn a partМciСn minden adat elvИsz"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Add meg az Зj mИretet"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "зj partМciС lИtrehozАsa"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "KezdУszektor: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "MИret MB-ban: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "FАjlrendszer tМpusa: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "BeАllМtАsok: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Ezt a partМciСt nem hasznАlhatod loopback-hez"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback fАjl neve: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
-msgstr "Ez a fАjl mАsik loopback-hez van rendelve, vАlassz egy mАsikat"
+msgstr "Ez a fАjl mАsik loopback-hez van rendelve, vАlassz mАsikat"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "A fАjl mАr lИtezik. HasznАljam?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "FАjl kivАlasztАsa"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"A partМciСs tАbla biztonsАgi mАsolatАnak a mИrete eltИr\n"
+"A partМciСs tАbla biztonsАgi mАsolatАnak a mИrete eltИr!\n"
"Biztos, hogy folytassam?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "FigyelmeztetИs"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-"Helyezz be egy lemezt a meghajtСba\n"
+"Helyezz be egy lemezt a meghajtСba!\n"
"A lemezen minden adat elvИsz"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "MegprСbАlom visszaАllМtani a partМciСs tАblАt"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "eszkЖz"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "level"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "szelet mИret"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "VАlassz ki egy mАr lИtezУ RAID-et, ehhez adom a diszket"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "Зj"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s fАjlrendszer %s eszkЖzЖn valС lИtrehozАsa sikertelen"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "Nem tudom, hogyan formАzzam meg %s -t %s tМpusЗra"
+msgstr "Nem tudom, hogyan formАzzam meg %s-t %s tМpusЗra"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "NFS felcsatolАs sikertelen"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "felcsatolАs sikertelen: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "hiba %s lecsatolАsakor: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "A csatolАsi pontnak /-rel kell kezdУdnie"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "MАr van egy partМciС %s csatolАsi ponttal\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "KЖrkЖrЖs mount-olАs %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Ennek a kЖnyvtАrnak a root fАjlrendszeren kellene maradnia"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Igazi fАjlrendszerre (ext2, ReiserFS) van szЭksИg ehhez a csatolАsi ponthoz\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Hiba %s МrАsra valС megnyitАsakor: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1258,76 +1526,83 @@ msgstr ""
"Hiba tЖrtИnt - nincs ИrvИnyes meghajtС, amelyen fАjlrendszereket lehetne "
"lИtrehozni. EllenУrizd a hardvert Иs prСbАld megtalАlni a hibАt"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Nincs egyetlen partМciСd sem!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr ""
"VАlaszd ki a nyelvet, amin a telepМtИst szeretnИd lefolytatni, majd kИsУbb a "
"rendszert hasznАlni."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "VАlaszd ki a billentyШzeted kiosztАsАt a fenti listАbСl"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "VАlaszd ki a billentyШzeted kiosztАsАt a fenti listАbСl"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"VАlaszd a \"TelepМtИst\", ha nincs korАbbi Linux verziС installАlva,\n"
-"vagy ha tЖbb kЭlЖnbЖzУ disztribЗciСt vagy verziСt szeretnИl hasznАlni.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"VАlaszd a \"FrissМtИst\", ha frissМteni szeretnИd a Mandrake Linux\n"
-"valamelyik korАbbi vАltozatАt: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen),\n"
-"6.0 (Venus), 6.1 (Helios), Gold 2000 vagy 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"VАlassz:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Automatikus (ajАnlott): Ha mИg sohasem telepМtettИl Linuxot,\n"
-" vАlaszd ezt az opciСt. FIGYELEM:\n"
-" A telepМtИs sorАn a DrakX nem АllМtja be a hАlСzatot. Ezt megteheted\n"
-" az elsУ ЗjraindМtАs utАn, a \"LinuxConf\" segМtsИgИvel.\n"
"\n"
-" - Egyedi: Ha mАr jСl ismered a GNU/Linuxot, kivАlaszthatod, \n"
-" hogy milyen cИlra szАnod a rendszert. A rИszleteket lАsd lentebb.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - HaladС: Ez azt feltИtelezi, hogy szakИrtУje vagy a GNU/Linux\n"
-" rendszereknek, Иs teljesen egyedi telepМtИst szeretnИl vИgezni.\n"
-" HasonlСan, mint az \"Egyedi\" opciСnАl, megadhatod, hogy milyen cИlra\n"
-" szАnod a rendszert, de kИrlek CSAK AKKOR VаLASZD EZT, HA TUDOD, HOGY\n"
-" MIT TESZEL!\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1335,55 +1610,55 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"VАlassz:\n"
"\n"
" - Egyedi: Ha mАr jСl ismered a GNU/Linuxot, kivАlaszthatod, \n"
" hogy milyen cИlra szАnod a rendszert. A rИszleteket lАsd lentebb.\n"
"\n"
+"\n"
" - HaladС: Ez azt feltИtelezi, hogy szakИrtУje vagy a GNU/Linux\n"
" rendszereknek, Иs teljesen egyedi telepМtИst szeretnИl vИgezni.\n"
" HasonlСan, mint az \"Egyedi\" opciСnАl, megadhatod, hogy milyen cИlra\n"
" szАnod a rendszert, de kИrlek CSAK AKKOR VаLASZD EZT, HA TUDOD, HOGY\n"
-" MIT TESZEL!\n"
+" MIT TESZEL!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"A kЭlЖnbЖzУ, elУre elkИszМtett konfigurАciСk (feltИve, hogy \"Egyedi\" vagy\n"
"\"HaladС\" mСdot vАlasztottАl) a kЖvetkezУk:\n"
"\n"
" - NormАl: VАlaszd ezt, ha a gИpedet elsУdlegesen mindennapi\n"
-" hasznАlatra szАnod (irodai munka, szАmМtСgИpes grafika, stb.)\n"
+" hasznАlatra szАnod (irodai munka, szАmМtСgИpes grafika, stb.).\n"
" Ne szАmМts fordМtСra, vagy mАs szoftverfejlesztУ eszkЖzre.\n"
"\n"
" - FejlesztУi: Amint az a nevИbУl is kiderЭl, akkor cИlszerШ ezt az\n"
@@ -1394,307 +1669,537 @@ msgstr ""
"\n"
" - KiszolgАlС: vАlaszd ezt, ha a gИpet, amire a Linux-Mandrake-et\n"
" telepМted, kiszolgАlСnak szАnod. Ez lehet fАjlkiszolgАlС (NFS vagy\n"
-" SMB), nyomtatС-kiszolgАlС (Unix lp protokollal vagy Windows-os SMB-\n"
+" SMB), nyomtatС-kiszolgАlС (Unix \"lp\" protokollal vagy Windows-os SMB-\n"
" vel), autentikАciСs kiszolgАlС (NIS), adatbАzis-kiszolgАlС, stb.\n"
-" Mint ilyen, ne szАmМts arra, hogy a konfigurАciС tartalmaz pl. KDE-t\n"
-" vagy Gnome-ot.\n"
+" Ne szАmМts arra, hogy a konfigurАciС tartalmazni fogja pl. a KDE-t\n"
+" vagy a Gnome-ot.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"A DrakX elУszЖr ellenУrzi, hogy talАl-e egy vagy tЖbb PCI-os SCSI vezИrlУt.\n"
-"Ha talАl ilyet (ilyeneket) Иs megtalАlja a hozzА (hozzАjuk) tartozС\n"
-"driver-t (driver-eket), automatikusan beilleszti azt (azokat).\n"
+"A DrakX megprСbАlja a PCI SCSI kАrtyАidat felismerni.\n"
"\n"
+"Ha a DrakX megtalАlja a SCSI csatolС(i)dat, Иs talАl hozzА(juk) driver-t,\n"
+"akkor automatikusan installАlja azokat.\n"
"\n"
-"Ha a SCSI vezИrlУ kАrtyАd ISA-s, vagy olyan PCI-os, amelyrУl a DrakX nem\n"
-"tudja eldЖnteni, hogy melyik driver-t hasznАlja hozzА, vagy ha nincs is\n"
-"SCSI kАrtyАd, a DrakX megkИrdi, hogy van-e kАrtyАd. Ha nincsen, vАlaszolj\n"
-"\"Nem\"-mel. Ha van egy vagy tЖbb SCSI kАrtyАd, vАlaszolj \"Igen\"-nel.\n"
-"Ez esetben megjelenik egy lista a driver-ekkel, ebbУl vАlaszthatod ki\n"
-"a megfelelУt.\n"
"\n"
+"Ha nincs ilyen kАrtyАd, akkor kattints a \"Nem\" gombra.\n"
+"Ha esetleg ISA buszos csatolСd van, vagy a DrakX nem ismerte\n"
+"fel a csatolСt, akkor kattints az \"Igen\" gombra, Иs a megjelenУ\n"
+"listАbСl vАlaszd ki a megfelelУ csatolС tМpust.\n"
"\n"
-"A driver kivАlasztАsa utАn a DrakX megkИrdezi, szeretnИl-e opciСkat megadni\n"
-"hozzА. ElsУ kЖrben cИlszerШ a driver-re hagyni a hardver meghatАrozАsАt,\n"
-"АltalАban mШkЖdni szokott.\n"
+"Amennyiben kИzzel adod meg a csatolС tМpusАt, a DrakX megkИrdezi a\n"
+"csatolС paramИtereit. A megadott opciСkkal a DrakX megkМsИrli a\n"
+"csatolСt felИleszteni. Rendszerint ez sikerЭl is.\n"
"\n"
-"\n"
-"Ha mИgse mШkЖdik, akkor hasznАld a hardverrel jАrС dokumentАciСt, \n"
-"vagy nИzd meg, hogy a Windows milyennek ismeri fel a kАrtyАt (persze, ha \n"
-"van Windows a gИpeden), ahogyan ezt a TelepМtИsi зtmutatС Мrja. Ezeket az \n"
-"opciСkat kell megadnod a driver-nek."
+"Ha mИgsem sikerЭlne, akkor valСszМnШleg nem megfelelУ paramИtereket\n"
+"adtАl meg. Ilyenkor nИzz utАna a csatolС \"TelepМtИsi kИzikЖnyv\"-Иben,\n"
+"esetleg a csatolС GyАrtСjАnak weboldalАn a megfelelУ informАciСknak."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Most megadhatod, hogy melyik partМciСkra telepЭljЖn a Linux-Mandrake,\n"
-"ha mАr lИteznek a partМciСk (egy rИgebbi LinuxbСl, vagy ha mАr lИtrehoztad\n"
-"Уket valamilyen mАsik partМcionАlС programmal). Ha mИg nincsenek \n"
-"partМciСid, itt az ideje, hogy lИtrehozd Уket. Ez azt jelenti, hogy a\n"
-"fizikai merevlemezt kisebb logikai rИszekre kell osztanod.\n"
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Ha Зj partМciСkat kell lИtrehoznod, hasznАld az \"Automatikus allokАlАs\"-t\n"
-"Иs a DrakX lИtrehozza Уket Neked. A megfelelУ merevlemez kivАlasztАsa a\n"
-"kЖvetkezУk valamelyikИre valС kattintАssal lehetsИges: \"hda\" (elsУ IDE\n"
-"lemez), \"hdb\" (mАsodik IDE lemez), \"sda\" (elsУ SCSI lemez), stb.\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"KИt lИnyeges partМciС a root partМciС (/), ami a fАjlrendszer kЖnyvtАr- \n"
-"hierarchiАjАnak kiindulСpontja, Иs a /boot, ami a rendszer indulАsАhoz \n"
-"(boot-olАsАhoz) szЭksИges fАjlokat tartalmazza.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Mivel a partМcionАlАs hatАsai maradandСak Иs visszafordМthatatlanok, ezИrt\n"
-"a kevИsbИ tapasztalt felhasznАlСk esetleg tartanak ettУl a mШvelettУl.\n"
-"A DiskDrake egyszerШsМti a mШveletet annak ИrdekИben, hogy ez ne legyen\n"
-"Мgy. SzАnj rА egy kis idУt Иs olvasd el a dokumentАciСt, mielУtt\n"
-"hozzАfognАl.\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"ElИrhetsz minden opciСt a billentyШzet segМtsИgИvel is: vАlthatsz a\n"
-"partМciСk kЖzЖtt a Tab Иs a Fel/Le billentyШkkel. Ha kivАlasztottАl egy\n"
-"partМciСt, hasznАlhatod a kЖvetkezУ kombinАciСkat:\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-c: Зj partМciС lИtrehozАsa (amikor Эres partМciС van kivАlasztva)\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-d: partМciС tЖrlИse\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
"\n"
-"- Ctrl-m: csatolАsi pont beАllМtАsa\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Minden Зjonnan lИtrehozott partМciСt formАzni kell (a formАzАs azt \n"
-"jelenti, hogy egy fАjlrendszert kell rА lИtrehozni). Itt az alkalom,\n"
-"hogy esetleg ЗjraformАzz egyes, korАbbrСl megmaradt partМciСkat, hogy\n"
-"a rajtuk levУ adatok tЖrlУdjenek.\n"
-"MegjegyzИs: nem szЭksИges ЗjraformАzni a mАr lИtezУ partМciСkat, fУleg\n"
-"abban az esetben, ha szЭksИged van a rИgi adatokra. Tipikusan ilyenek a\n"
-"/home Иs a /usr/local fАjlrendszerek."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Itt vАlaszthatod ki a telepМtendУ vagy frissМtendУ csomagcsoportokat.\n"
"\n"
-"A DrakX ellenУrzi, hogy rendelkezИsИre Аll-e elИg hely a telepМtИshez. Ha "
+"A DrakX ellenУrzi, hogy elИg hely Аll-e rendelkezИsre a telepМtИshez. Ha "
"nem,\n"
"akkor figyelmeztet. Ha mИgis folytatni akarod a telepМtИst, semmi akadАlya,\n"
-"de a telepМtУ ki fogja hagyni az Аltala kevИsbИ fontosnak МtИlt csomagokat.\n"
-"A lista aljАn vАlaszthatod az \"Egyedi csomagok kivАlasztАsa\" lehetУsИget, "
-"ebben\n"
+"de a telepМtУ ki fogja hagyni az Аltala kevИsbИ fontosnak МtИlt csomagokat!\n"
+"A lista aljАn vАlaszthatod az \"Csomagok egyedi kivАlasztАsa\" lehetУsИget, "
+"de ebben\n"
"az esetben tЖbb mint 1000 csomagot kell АtbЖngИszned..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Ha megvan minden felsorolt CD, kattints az OK-ra.\n"
-"Ha a felsoroltak kЖzЭl egy CD sem Аll rendelkezИsedre, kattints a MИgsem "
+"Ha a felsoroltak kЖzЭl egy CD sem Аll rendelkezИsedre, kattints a \"MИgsem\" "
"gombra.\n"
"Ha a felsoroltak kЖzЭl egyes CD-k hiАnyoznak, tЖrЖld a kijelЖlИsЭket, majd\n"
"kattints az OK-ra."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"A kivАlasztott csomagokat most telepМti a TelepМtУ. Ez a mШvelet nИhАny\n"
-"percig eltarthat. Ez alСl kivИtelt kИpez, ha egy lИtezУ rendszert\n"
-"frissМtesz, ebben az esetben a folyamat tЖbb idУt vehet igИnybe."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Ha a DrakX nem tudta meghatАrozni az egered tМpusАt, vagy csak ellenУrizni\n"
-"szeretnИd a beАllМtАst, felajАnl Neked egy listАt a kЭlЖnbЖzУ egerekkel.\n"
-"\n"
-"\n"
-"Ha egyetИrtesz a DrakX beАllМtАsaival, ugorhatsz a kЖvetkezУ rИszre a bal\n"
-"oldalon lИvУ menЭ segМtsИgИvel. Ha nem, akkor vАlassz egy egeret a\n"
-"listАbСl, lehetУleg egy olyat, ami kЖzel Аll az egered tМpusАhoz.\n"
-"\n"
-"\n"
-"Ha az egered soros portra csatlakozik, meg kell mondanod, hogy melyikre."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"KИrlek vАlaszd ki a megfelelУ portot. PИldАul a Windows-os COM1-et Linux "
"alatt ttyS0-nak hМvjАk."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
-"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Ez a rИsz arra hivatott, hogy segМtsen beАllМtani a lokАlis hАlСzatot\n"
-"(LAN) vagy a modemet.\n"
-"\n"
-"VАlaszd a \"LokАlis hАlСzat (LAN)\"-t Иs a DrakX megprСbАlja megkeresni a\n"
-"hАlСzati kАrtyАt a gИpedben. A PCI-os kАrtyАkat tЖbbnyire megtalАlja Иs\n"
-"beАllМtja automatikusan. Ezzel ellentИtben, ha ISA-s kАrtyАd van, az\n"
-"automatikus felismerИs nem fog mШkЖdni, ekkor kИzzel kell kivАlasztanod\n"
-"a megfelelУ driver-t a megjelenУ listАbСl.\n"
-"\n"
-"\n"
-"Mint a SCSI kАrtyАnАl, hagyhatod, hogy a driver ismerje fel a hardvert,\n"
-"de ha ez nem mШkЖdik, kИzzel kell opciСkat megadnod, amiket megtalАlsz\n"
-"a hardver dokumentАciСjАban.\n"
-"\n"
-"\n"
-"Ha a Linux-Mandrake-et egy mАr hАlСzathoz kЖtЖtt gИpre telepМted, a\n"
-"hАlСzat rendszergazdАja lАt el a szЭksИges informАciСkkal (IP-cМm, \n"
-"hАlСzati maszk Иs gИpnИv). Ha otthon hozol lИtre egy sajАt hАlСzatot,\n"
-"Neked kell a cМmeket kivАlasztanod.\n"
-"\n"
-"\n"
-"VАlaszd a \"CsatlakozАs modemmel\"-t Иs a DrakX megprСbАlja beАllМtani a\n"
-"modemet. Ha nem sikerЭlne neki, add meg a soros portot, amihez a modem\n"
-"csatlakozik."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Most megadhatod a telefonos Internet csatlakozАssal kapcsolatos adatokat.\n"
+"Ha nem vagy benne biztos, hogy mit kell itt megadni, az Internet "
+"szolgАltatСd\n"
+"valСszМnШleg tud segМteni."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Add meg:\n"
"\n"
-" - az IP-cМmet: ha nem tudod, mi az IP-cМmed, kИrdezd meg a hАlСzat \n"
+" - az IP-cМmet: ha nem tudod, mi az IP-cМmed, kИrdezd meg a hАlСzat\n"
"adminisztrАtorАt vagy a szolgАltatСt.\n"
"\n"
"\n"
@@ -1703,173 +2208,278 @@ msgstr ""
"benne biztos, kИrdezd meg a hАlСzat adminisztrАtorАt vagy a szolgАltatСt.\n"
"\n"
"\n"
-" - automatikus IP-cМm megАllapМtАs: vАlaszd ezt, ha a hАlСzatodon bootp "
-"vagy \n"
+" - automatikus IP-cМm megАllapМtАs: vАlaszd ezt, ha a hАlСzaton bootp vagy\n"
"dhcp segМtsИgИvel kapjАk a gИpek az IP-cМmЭket. Ha ez a helyzet, az "
"\"IP-cМm\"\n"
"rИszt Эresen hagyhatod. Ha kИtsИgeid vannak, kИrdezd meg a hАlСzat \n"
"adminisztrАtorАt vagy a szolgАltatСt.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Ha a hАlСzatod hasznАl \"NIS\"-t, vАlaszd ki a \"NIS hasznАlata\" opciСt.\n"
+"Ha nem tudod, hogy a hАlСzaton van-e NIS szolgАltatАs, kИrdezd meg a\n"
+"hАlСzati adminisztrАtort."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-"Most megadhatod a telefonos Internet csatlakozАsoddal kapcsolatos opciСkat.\n"
-"Ha nem vagy benne biztos, hogy mit kell ide beМrni, az Internet "
+"Most megadhatod a telefonos Internet csatlakozАssal kapcsolatos adatokat.\n"
+"Ha nem vagy benne biztos, hogy mit kell itt megadni, az Internet "
"szolgАltatСd\n"
"valСszМnШleg tud segМteni."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"Ha proxy-kat fogsz hasznАlni, itt az idУ, hogy beАllМtsd Уket. Ha nem \n"
-"tudod, hogy kellene-e proxy-kat hasznАlnod, kИrdezd meg a hАlСzat \n"
+"Ha proxy-(ka)t fogsz hasznАlni, itt az idУ, hogy beАllМtsd Уket. Ha nem\n"
+"tudod, hogy kellene-e proxy-(ka)t hasznАlnod, kИrdezd meg a hАlСzat\n"
"adminisztrАtorАt vagy az Internet szolgАltatСt."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"A titkosМtАssal kapcsolatos csomagokat csak akkor tudod feltelepМteni, ha "
"az\n"
-"Internet kapcsolatod rendesen be van АllМtva. ElУszЖr vАlaszd ki, hogy "
-"melyik \n"
-"tЭkЖrkiszolgАlСrСl szeretnИd letЖlteni a csomagokat, majd jelЖld ki magukat "
+"Internet kapcsolatod mАr rendesen be van АllМtva. ElУszЖr vАlaszd ki,\n"
+"hogy melyik tЭkЖrkiszolgАlСrСl szeretnИd letЖlteni a csomagokat, majd\n"
+"jelЖld ki magukat a csomagokat.\n"
"\n"
-"a csomagokat.\n"
"\n"
"Figyelj arra, hogy a helyi tЖrvИnyeknek megfelelУen vАlaszd meg a\n"
"tЭkЖrkiszolgАlСt Иs a titkosМtАssal kapcsolatos csomagokat."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"KivАlaszthatod az idУzСnАt, aszerint, hogy hol Иlsz.\n"
"\n"
"\n"
-"A Linux GMT, azaz \"Greenwich Mean Time\" szerint kezeli az idУt, majd a\n"
-"megadott idУzСna alapjАn szАmМtja azt Аt helyi idУre."
+"A Linux a GMT, azaz a \"Greenwich Mean Time\" szerint kezeli az idУt, majd\n"
+"az itt megadott idУzСna alapjАn szАmМtja azt Аt helyi idУre."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-"Itt vАlaszthatod ki, hogy a gИp indulАsakor milyen szolgАltatАsok "
-"induljanak\n"
+"Itt vАlaszthatod ki, hogy a gИp indulАsakor milyen szolgАltatАsok induljanak "
"el automatikusan.\n"
-"Amikor az egИr mutatСjАt valamelyik szolgАltatАs nevИre helyezed, elУbukkan "
-"egy\n"
+"\n"
+"Amikor az egИr mutatСjАt valamelyik szolgАltatАs nevИre helyezed,elУbukkan\n"
"buborИk, amelyben rЖvid ismertetУt olvashatsz rСla.\n"
"\n"
-"сvatosan bАnj ezzel az opciСval, kЭlЖnЖsen ha kiszolgАlСt telepМtesz,\n"
-"fordМts kЭlЖnЖs figyelmet arra, hogy ne fusson felesleges szolgАltatАs a "
+"\n"
+"сvatosan bАnj ezzel az opciСval, kЭlЖnЖsen ha kiszolgАlСt telepМtesz.\n"
+"FordМts kЭlЖnЖs figyelmet arra, hogy ne fusson felesleges szolgАltatАs a "
"gИpen."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"A Linux sokfИle nyomtatСt tud kezelni. A tМpustСl fЭggУen mАs Иs mАs a\n"
-"telepМtИs menete. Nem szabad figyelmen kМvЭl hagyni, hogy a print spooler\n"
-"az 'lp' nevet hasznАlja az alapИrtelmezett nyomtatС nevekИnt, Мgy lИtezni\n"
-"kell egy ilyen nevШ nyomtatСnak. Adhatsz viszont tЖbb nevet is egy\n"
-"nyomtatСnak, ezeket a '|' jellel kell elvАlasztani egymАstСl. TehАt ha\n"
-"valami Иrtelmesebb nevet szeretnИl adni a nyomtatСdnak, egyszerШen Мrd\n"
-"azt az elsУ helyre, pИldАul: \"Az Иn nyomtatСm|lp\".\n"
-"Az a nyomtatС lesz az alapИrtelmezett, amelyiknek a nevei kЖzt szerepel\n"
-"az \"lp\".\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"Ha a nyomtatСd a gИphez van kЖtve (a nyomtatС-porton), vАlaszd a\n"
-"\"LokАlis nyomtatС\"-t. Ekkor meg kell mondanod a telepМtУnek, hogy\n"
-"melyik porton van a nyomtatС, valamint ki kell vАlasztanod a megfelelУ\n"
-"filtert.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Ha egy tАvoli UNIX gИpre csatlakoztatott nyomtatСt szeretnИl elИrni,\n"
-"vАlaszd a \"TАvoli lpd\"-t. Ahhoz, hogy ez mШkЖdjЖn, nem kell\n"
-"felhasznАlСi nevet vagy jelszСt megadni, de ismerni kell a tАvoli\n"
-"gИpen lИvУ nyomtatСsor pontos nevИt.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"Ha egy SMB nyomtatСt kМvАnsz elИrni (ez azt jelenti, hogy a nyomtatС egy\n"
-"tАvoli Windows 9x/NT gИphez van kЖtve), meg kell adnod a tАvoli gИp SMB\n"
-"nevИt (ami nem egyezik meg a TCP/IP-n hasznАlt gИpnИvvel), tovАbbА\n"
-"valСszМnШleg az IP-cМmИt, valamint egy felhasznАlСi nevet, a munkacsoport\n"
-"nevИt Иs egy jelszСt, illetve termИszetesen a nyomtatС nevИt is. Ugyanez\n"
-"igaz NetWare nyomtatС esetИn is, azzal a kivИtellel, hogy nem kell\n"
-"munkacsoportot megadni."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Most kell megadnod a Linux-Mandrake-ed root jelszavАt. Ugyanazt a\n"
-"jelszСt kell kИtszer beМrnod, ezzel ellenУrzЖm, hogy nem gИpeled el.\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
"\n"
"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
+msgstr ""
+"Most kell megadnod a Linux-Mandrake-ed root jelszavАt. Ugyanazt a\n"
+"jelszСt kell kИtszer megadnod, ezzel ellenУrizve, hogy nem gИpeled el.\n"
+"\n"
"A root felhasznАlС a rendszer adminisztrАtora. у az egyetlen, aki a\n"
-"rendszer beАllМtАsait megvАltoztathatja, ezИrt jСl vАlaszd meg ezt a\n"
-"jelszСt.\n"
+"rendszer beАllМtАsait megvАltoztathatja, ezИrt jСl vАlaszd meg a\n"
+"jelszavАt.\n"
+"\n"
"A root felhasznАlС-azonosМtС jogosulatlan hasznАlata nagyon kАros\n"
"lehet a rendszer ИpsИge szempontjАbСl, valamint mАs, a hАlСzaton\n"
"keresztЭl csatlakozС rendszereket is veszИlyeztethet. A jelszСnak\n"
@@ -1878,25 +2488,24 @@ msgstr ""
"Ezt a jelszСt SOHA ne Мrd le. Ne legyen a jelszС tЗl hosszЗ vagy tЗl\n"
"bonyolult, hiszen emlИkezned kell rА!"
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"A rendszer biztonsАgАnak nЖvelИse ИrdekИben vАlaszd ki a \"Shadow fАjl \n"
+"A rendszer biztonsАgАnak nЖvelИse ИrdekИben vАlaszd ki a \"Shadow fАjl\n"
"alkalmazАsa\" Иs az \"MD5 jelszavak alkalmazАsa\" opciСkat."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Ha a hАlСzatod hasznАl NIS-t, vАlaszd ki a \"NIS hasznАlata\" opciСt. Ha nem "
-"\n"
-"tudod, hogy a hАlСzaton van-e NIS szolgАltatАs, kИrdezd meg a hАlСzati \n"
-"adminisztrАtort."
+"Ha a hАlСzatod hasznАl \"NIS\"-t, vАlaszd ki a \"NIS hasznАlata\" opciСt.\n"
+"Ha nem tudod, hogy a hАlСzaton van-e NIS szolgАltatАs, kИrdezd meg a\n"
+"hАlСzati adminisztrАtort."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1922,50 +2531,48 @@ msgstr ""
"Most lИtrehozhatsz egy vagy tЖbb \"mezei\" felhasznАlСt (azaz olyan\n"
"felhasznАlСt, aki a root felhasznАlСval ellentИtben nem \"privilegizАlt\").\n"
"LИtrehozhatsz egy vagy tЖbb felhasznАlСi azonosМtСt mindenkinek, aki\n"
-"hasznАlni szeretnИ a gИpet. MegjegyzИs: minden felhasznАlСi azonosМtСhoz\n"
+"hasznАlni szeretnИ a gИpet.\n"
+"\n"
+"MegjegyzИs: minden felhasznАlСi azonosМtСhoz\n"
"sajАt beАllМtАsok fognak tartozni (grafikus kЖrnyezet, program-beАllМtАsok,\n"
-"stb.) Иs egy sajАt \"home kЖnyvtАr\", ahol ezek a beАllМtАsok el vannak\n"
+"stb.) Иs egy sajАt \"home kЖnyvtАr\", ahol ezek a beАllМtАsok el lesznek\n"
"tАrolva.\n"
"\n"
-"\n"
"ElУszЖr is hozz lИtre egy felhasznАlСi azonosМtСt sajАt magadnak! Akkor is,\n"
-"ha Te leszel az egyetlen felhasznАlС a gИpen. NE hasznАld a root\n"
-"azonosМtСt a mindennapi teendУidhez: ez nagyon veszИlyes, a teljes\n"
-"rendszer hasznАlhatatlannА tИtele sokszor csak egy aprС elgИpelИsen mЗlik.\n"
+"ha Te leszel az egyetlen felhasznАlС a gИpen.\n"
"\n"
+"NE hasznАld a root azonosМtСt a mindennapi teendУidhez!\n"
+"Ez nagyon veszИlyes, a teljes rendszer hasznАlhatatlannА tИtele sokszor\n"
+"csak egy aprС elgИpelИsen mЗlik.\n"
"\n"
"EzИrt alapesetben a most lИtrehozandС azonosМtСval lИpj be, Иs a root\n"
"felhasznАlС-azonosМtСt csak adminisztrАciСs cИlokra illetve a rendszer\n"
"karbantartАsАra hasznАld."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"KИrlek vАlaszolj \"Igen\"-nel! Ha pИldАul kИsУbb telepМted a Microsoft \n"
-"Windows-t, az felЭlМrja a boot szektort. Ha ilyen esetben nincs boot\n"
-"floppy-d, nem tudod tЖbbИ elindМtani a Linuxot!"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Itt meg kell adnod, hogy hova kerЭljЖn a Linux boot-olАsАhoz szЭksИges \n"
+"Itt meg kell adnod, hogy hova kerЭljЖn a Linux boot-olАsАhoz szЭksИges\n"
"informАciС.\n"
"\n"
"\n"
"Hacsak nem tudod nagyon pontosan, hogy mit teszel, vАlaszd a\n"
"\"Lemez elsУ szektora (MBR)\"-t."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1974,10 +2581,10 @@ msgstr ""
"(ez a \"master\" meghajtС az elsУ IDE csatornАn) vagy a \"/dev/sda\" -t\n"
"(elsУ SCSI diszk)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1992,15 +2599,16 @@ msgstr ""
"a gИpedre. JС esetben a telepМtУ megtalАlja Иs beАllМtja ezeket az\n"
"operАciСs rendszereket. Ha mИgsem ez a helyzet, kИzzel kell megadnod\n"
"nИhАny paramИtert a kЖvetkezУ kИpernyУn. Figyelj arra, hogy jС adatokat\n"
-"adjАl meg.\n"
-"\n"
+"adj meg.\n"
"\n"
"Az is elУfordulhat, hogy nem akarsz hozzАfИrИst biztosМtani a tЖbbi\n"
"operАciСs rendszerhez bАrki szАmАra, ekkor tЖrЖld a megfelelУ bejegyzИst\n"
"a listАbСl.\n"
+"\n"
"Ebben az esetben csak indМtСlemezzel indМthatod a kИrdИses op. rendszereket!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2017,7 +2625,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"A LILO Иs a grub fУbb opciСi:\n"
@@ -2027,9 +2637,11 @@ msgstr ""
"\n"
" - KИsleltetИs az alapИrtelmezett image betЖltИse elУtt: megadja\n"
"(tizedmАsodpercben), hogy a boot loader mennyi idУt vАrjon, mielУtt\n"
-"betЖlti az elsУ image-et. Ez azoknАl a rendszereknИl hasznos, amelyek a\n"
-"billentyШzet bekapcsolАsa utАn azonnal a merevlemezrУl boot-olnak. A boot\n"
-"loader nem vАr, ha a kИsleltetИsi opciС nincs megadva vagy az ИrtИke 0.\n"
+"betЖlti az alapИrtelmezett image-et. Ez azoknАl a rendszereknИl hasznos,\n"
+"amelyek a billentyШzet bekapcsolАsa utАn azonnal a merevlemezrУl "
+"boot-olnak.\n"
+"A boot loader nem vАr, ha a kИsleltetИsi opciС nincs megadva vagy az ИrtИke "
+"0.\n"
"\n"
"\n"
" - VideomСd: azt АllМtja be, hogy milyen VGA szЖveges ЭzemmСdban induljon\n"
@@ -2037,10 +2649,64 @@ msgstr ""
" * normАl: normАl 80x25-Жs szЖveges mСd\n"
" * <szАm>: a megfelelУ szЖveges mСdot hasznАlja"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"A SILO operАciСsrendszer-betЖltУ SPARC-hoz:\n"
+"Be tud tЖlteni Linuxot vagy bАrmely mАs operАciСs rendszert, ami telepМtve\n"
+"van a gИpedre. JС esetben a telepМtУ megtalАlja Иs beАllМtja ezeket az\n"
+"operАciСs rendszereket. Ha mИgsem ez a helyzet, kИzzel kell megadnod\n"
+"nИhАny paramИtert a kЖvetkezУ kИpernyУn. Figyelj arra, hogy jС adatokat\n"
+"adj meg.\n"
+"\n"
+"\n"
+"Az is elУfordulhat, hogy nem akarsz hozzАfИrИst biztosМtani a tЖbbi\n"
+"operАciСs rendszerhez bАrki szАmАra, ekkor tЖrЖld a megfelelУ bejegyzИst\n"
+"a listАbСl.\n"
+"Ebben az esetben csak indМtСlemezzel indМthatod a kИrdИses op. rendszereket!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"A SILO fУbb opciСi:\n"
+"\n"
+" - RendszerbetЖltУ telepМtИs: Jelzi, hovА akarod elhelyezni a Linux\n"
+"indulАsАhoz szЭksИges informАciСkat. Hacsak nem tudod nagyon pontosan,\n"
+"hogy mit teszel, vАlaszd a \"Lemez elsУ szektora (MBR)\"-t.\n"
+"\n"
+" - KИsleltetИs az alapИrtelmezett image betЖltИse elУtt: megadja\n"
+"(tizedmАsodpercben), hogy a boot loader mennyi idУt vАrjon, mielУtt\n"
+"betЖlti az alapИrtelmezett image-et. Ez azoknАl a rendszereknИl hasznos,\n"
+"amelyek a billentyШzet bekapcsolАsa utАn azonnal a merevlemezrУl "
+"boot-olnak.\n"
+"A boot loader nem vАr, ha a kИsleltetИsi opciС nincs megadva vagy az ИrtИke "
+"0."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2054,78 +2720,83 @@ msgstr ""
"ElИrkezett az ideje, hogy beАllМtsd a Linuxos grafikus kЖrnyezet\n"
"magjАt, az X Window Rendszert. Ehhez be kell АllМtanod a videokАrtyАdat\n"
"Иs a monitorodat. Ez tЖbbnyire automatikusan zajlik, ezИrt Neked\n"
-"АltalАban csak el kell fogadnod a felajАnlott beАllМtАsokat :)\n"
+"АltalАban csak el kell fogadnod a felajАnlott beАllМtАsokat. :-)\n"
"\n"
"\n"
"Amikor befejezed a beАllМtАst, a DrakX elindМtja az X-et (hacsak nem kИred,\n"
"hogy hagyja ki ezt a lИpИst), Мgy ellenУrizni tudod, hogy jСl mШkЖdik-e.\n"
-"Ha valami gond lenne a beАllМtАssal, mindig vissza tudsz lИpni ebbe a\n"
+"Ha valami gond lenne a beАllМtАssal, mindМg vissza tudsz lИpni ebbe a\n"
"menЭbe Иs kiprСbАlhatsz mАs ИrtИkeket is, ahАnyszor csak akarsz."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
-"Ha valami nem jС az X konfigurАciСjАban, hasznАld ezeket az opciСkat Иs \n"
+"Ha valami nem jС az X konfigurАciСjАban, hasznАld ezeket az opciСkat Иs\n"
"javМtsd ki a hibАt."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
"Ha grafikus felЭleten szeretnИl bejelentkezni, vАlaszd az \"Igen\"-t, "
-"mАskИppen\n"
+"egyИbkИnt meg\n"
"vАlaszd a \"Nem\"-et."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-"Itt a rendszered tovАbbi opciСit АllМthatod be.\n"
+"Most a rendszered tovАbbi opciСit АllМthatod be.\n"
"\n"
-" - Merevlemez-meghajtС optimalizАlАsa: Ez az opciС nЖvelheti a lemez\n"
-" teljesМtmИnyИt, de csak haladС felhasznАlСknak ajАnlott: ha hibАs\n"
-" a chipset-ed, adatvesztИs lИphet fel.\n"
+" - Merevlemez-meghajtС optimalizАlАsa: Ez az opciС nЖvelheti a merevlemez\n"
+" teljesМtmИnyИt, de csak haladС felhasznАlСknak ajАnlott:\n"
+" ha hibАs a chipset-ed, adatvesztИs lИphet fel.\n"
" MegjegyzИs: a kernelben van egy lista ezekrУl a hibАs chipset-ekrУl\n"
" Иs lemezekrУl, de ha el akarod kerЭlni a rossz meglepetИseket,\n"
" inkАbb ne kapcsold be ezt az opciСt.\n"
"\n"
-" - BiztonsАgi szint kivАlasztАsa: Itt vАlaszthatod ki a rendszered \n"
+" - BiztonsАgi szint kivАlasztАsa: Itt vАlaszthatod ki a rendszered\n"
" biztonsАgi szintjИt.\n"
" TovАbbi informАciСkat a kИzikЖnyvben talАlsz.\n"
" Ha nem tudod, hogy mit szeretnИl, vАlaszd a \"KЖzepes\" szintet.\n"
@@ -2134,24 +2805,24 @@ msgstr ""
" Ha root akarsz lenni, be kell lИpned egy mezei felhasznАlСkИnt, majd\n"
" kiadni a \"su\" parancsot. LИnyegИben, ha ezt az opciСt vАlasztod,\n"
" kИszЭlj fel rА, hogy csak kiszolgАlСnak lesz jС a Linuxod.\n"
-" иn figyelmeztettelek.\n"
+" иn figyelmeztettelek!\n"
"\n"
-" - Fizikai RAM mИrete: sajnos a mai PC-s vilАgban nincs szabvАnyos mСdszer\n"
-" a RAM mennyisИgИnek lekИrdezИsИre. EzИrt a Linux nem mindig tudja\n"
+" - Fizikai RAM mИrete: sajnos a mai PC-s vilАgban nincs egysИges mСdszer\n"
+" a RAM mennyisИgИnek lekИrdezИsИre. EzИrt a Linux nem mindМg tudja\n"
" megАllapМtani, hogy mennyi memСria van a gИpben. Ha ez a helyzet,\n"
" add meg a helyes mИretet. MegjegyzИs: ha az eltИrИs csak 2 vagy 4 MB\n"
" (a valСdi Иs az automatikusan beАllМtott mennyisИg kЖzЖtt), az\n"
-" normАlisnak tekinthetУ.\n"
+" mИg normАlisnak tekinthetУ.\n"
"\n"
" - EltАvolМthatС mИdia automatikus mount-olАsa: ha nem szeretnИd minden\n"
" esetben kИzzel mount-olni a cserИlhetУ mИdiАkat (floppy, CD, Zip), ezt\n"
" az opciСt Neked talАltАk ki.\n"
"\n"
-" - Num Lock bekapcsolАsa boot-olАskor: Ha azt szeretnИd, hogy a Num Lock \n"
-" bekapcsolt Аllapotban legyen boot-olАs utАn, vАlaszd ezt az opciСt. \n"
-" (MegjegyzИs: A Num Lock vagy mШkЖdik X alatt, vagy nem.)"
+" - Num Lock bekapcsolАsa boot-olАskor: Ha azt szeretnИd, hogy a Num Lock\n"
+" bekapcsolt Аllapotban legyen boot-olАs utАn, vАlaszd ezt az opciСt.\n"
+" (MegjegyzИs: A \"Num Lock\" vagy mШkЖdik X alatt, vagy nem.)"
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2165,333 +2836,373 @@ msgstr ""
"Ha inkАbb egy mАsik, korАbban telepМtett operАciСs rendszert szeretnИl\n"
"indМtani, olvasd el a tovАbbi utasМtАsokat is."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "VАlassz nyelvet"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "VАlassz telepМtИsi mСdot"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Merevlemez keresИse"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "EgИr beАllМtАsa"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "BillentyШzet kivАlasztАsa"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Egyebek"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "FАjlrendszerek beАllМtАsa"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "PartМciСk formАzАsa"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Csomagok kivАlasztАsa"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Rendszer telepМtИse"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "HАlСzat beАllМtАsa"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "TitkosМtАs"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "IdУzСna beАllМtАsa"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "SzolgАltatАsok beАllМtАsa"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "NyomtatС beАllМtАsa"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
-msgstr "root jelszС beАllМtАsa"
+msgstr "Root jelszС beАllМtАsa"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "FelhasznАlС hozzАadАsa"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "IndМtСlemez kИszМtИse"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Bootmanager telepМtИse"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Az X beАllМtАsa"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Automatikus telepМtУlemez"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "KilИpИs a telepМtУbУl"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "OlvasАsi hiba a $f fАjlnАl"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Teszteld le az egeret"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Teszteld le az egeret"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, 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Иmelyik harver a rendszereden speciАlis driver-t igИnyel mШkЖdИsИhez.\n"
+"InformАciСk : %s"
+
+#: ../../install_interactive.pm_.c:41
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 ""
-"Kell, hogy legyen root partМciСd.\n"
-"Ehhez hozzАl lИtre egy partМciСt (vagy kattints egy meglИvУre).\n"
-"Ezek utАn add meg mount-olАsi pontnak a `/'-t."
+"FeltИtlen kell, hogy legyen root partМciСd.\n"
+"Hozz lИtre egy partМciСt (vagy kattints egy meglИvУre).\n"
+"UtАna add meg mount-olАsi pontnak a `/'-t."
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Nem tudom beolvasni a partМciСs tАblАt, tЗlsАgosan el van rontva :(\n"
-"MegprСbАlom tЖrЖlni a rossz partМciСkat"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Kell egy swap partМciС a mШkЖdИshez"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"A DiskDrake nem tudta rendesen beolvasni a partМciСs tАblАt.\n"
-"FolytatАs sajАt felelУssИgedre!"
+"Nincs swap partМciСd.\n"
+"\n"
+"EttУl fЭggetlenЭl folytassam?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Root partМciС keresИse."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Szabad terЭlet hasznАlata"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformАciС"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nincs elИg szabad terЭlet Зj partМciС lИtrehozАsАhoz"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Ez nem egy root partМciС, vАlassz mАsikat."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "MАr lИtezУ partМciС hasznАlata"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Root partМciС nem talАlhatС"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Nincs olyan mАr lИtezУ partМciС, amit hasznАlhatnИk"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nem lehet broadcast-ot hasznАlni NIS tartomАny nИlkЭl"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "A loopbackhez A FAT partМciС hasznАlata"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "OlvasАsi hiba: $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Melyik partМciСra szeretnИd a Linux4Win-t telepМteni?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Hiba tЖrtИnt, de nem tudom szИpen kezelni :(\n"
-"FolytatАs sajАt felelУssИgedre."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Add meg a mИreteket"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "A %s mount pont kИtszer van megadva"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "A root partМciС mИrete MB-ban: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"NИhАny fontos csomagot nem tudtam telepМteni.\n"
-"Ez azt jelenti, hogy vagy a CD-ROM meghajtСd, vagy a CD lemez\n"
-"hibАs. A CD lemezt egy, mАr feltelepМtett gИpen a kЖvetkezУ\n"
-"parancs segМtsИgИvel tesztelheted:\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap partМciС (lapozС terЭlet) mИrete MB-ban: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "эdv, itt a(z) %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "A Windows partМciСn lИvУ szabad hely hasznАlata"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Nincs elИrhetУ floppy-meghajtС"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Melyik partМciСt szeretnИd АtmИretezni?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr ""
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+# msgstr "A Windows fАjlrendszer bounds kiszАmМtАsa"
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "KЖvetkezУ lИpИs: `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"A FAT АtmИretezУ nem tudja kezelni a partМciСt.\n"
+"A kЖvetkezУ hiba keletkezett : %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Kell egy swap partМciС is"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "A FAT partМciС tЗlzottan tЖredezett. HasznАld a `defrag'-ot elУbb"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Nincs swap partМciСd.\n"
+"FIGYELEM!\n"
"\n"
-"EttУl fЭggetlenЭl folytassam?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Add meg a rendszer mИretИt"
+"A DrakX most АtmИretezi a Windows-os partМciСt. VigyАzz, ez a mШvelet\n"
+"veszИlyes. Ha mИg nem tetted meg, futtasd le a scandisk-et a Windows-os\n"
+"partМciСn (esetleg a defrag-ot is). Ehhez ki kell lИpned a telepМtУbУl.\n"
+"Mentsd le az adatokat, majd indМtsd Зjra a telepМtУt.\n"
+"Ha tudod, hogy mit teszel, nyomd meg az \"OK\"-ot."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "жsszmИret: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Mekkora helyet akarsz a Windows-nak fenntartani?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "VerziС: %s\n"
+msgid "partition %s"
+msgstr "%s partМciС"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "MИret: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "A FAT АtmИretezИs sikertelen: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "VАlaszd ki a telepМtendУ csomagokat"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Az АtmИretezni kМvАnt partМciС nem FAT tМpusЗ, esetleg egy loopback "
+"hasznАlja (vagy nincs elИg hely)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Teljes lemez tЖrlИse"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "TelepМtИs"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "A Windows eltАvolМtАsa"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "TelepМtИs"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "TЖbb merevlemezed van! Melyikre telepМtsem a Linux-ot?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "KИrem vАrjon, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "MINDEN lИtezУ partМciС Иs rajtuk minden adat elvИsz a %s meghajtСn"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "HАtralИvУ idУ "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "HaladС mСd"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "жsszidУ "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "diskdrake hasznАlata"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "TelepМtИs elУkИszМtИse"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "fdisk hasznАlata"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "%s csomag telepМtИse"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Most a %s partМcionАlАsa folyik.\n"
+"Ha kИsz, ne felejtsd el elmenteni a vАltozАsokat a \"w\"-vel"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "EttУl fЭggetlenЭl folytassam?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "A Windows partМciСn lИvУ szabad hely hasznАlata"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Hiba tЖrtИnt a csomagok rendezИsekor:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Nem hozhatС lИtre tЖbb partМciС"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "HasznАljam a mАr meglИvУ X11 beАllМtАsokat?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "A DrakX PartМcionАlС varАzslСja a kЖvetkezУkИppen dЖntЖtt:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "KИrlek vАlassz a kЖvetkezУ telepМtИsi mСdok kЖzЭl:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Hiba a partМcionАlАsban: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Nincs egyetlen Windows-os partМciСd sem!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "HАlСzat indМtАsa"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Nincs elИg hely az Lnx4win szАmАra"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "HАlСzat leАllМtАsa"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"FIGYELEM!\n"
-"\n"
-"DrakX most ЗjramИretezi a Windows-os partМciСt. VigyАzz, ez a mШvelet \n"
-"veszИlyes. Ha mИg nem tetted meg, futtasd le a scandisk-et a Windows-os \n"
-"partМciСn (esetleg a defrag-et is). Ehhez ki kell lИpned a telepМtУbУl. \n"
-"Mentsd le az adatokat, majd indМtsd Зjra a telepМtУt.\n"
-"Ha tudod, hogy mit teszel, nyomd meg az OK-t."
+"Hiba tЖrtИnt, de nem tudom normАlisan lekezelni :-(\n"
+"FolytatАs csak sajАt felelУssИgedre!"
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Az automatikus АtmИretezИs nem sikerЭlt"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "A %s mount pont kИtszer van megadva"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Melyik partМciСra szeretnИd a Linux4Win-t telepМteni?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"NИhАny fontos csomagot nem tudtam telepМteni.\n"
+"Ez azt jelenti, hogy vagy a CD-ROM meghajtСd, vagy a CD lemez\n"
+"hibАs. A CD lemezt egy, mАr feltelepМtett gИpen a kЖvetkezУ\n"
+"parancs segМtsИgИvel tesztelheted:\n"
+"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Add meg a mИreteket"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "эdv, itt a(z) %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "A root partМciС mИrete MB-ban: "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Nincs elИrhetУ floppy-meghajtС"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Swap partМciС (lapozС terЭlet) mИrete MB-ban: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "A kЖvetkezУ lИpИs: `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"A rendszer gyenge erУforrrАsokkal rendelkezik. ValСszМnШleg problИmАid\n"
+"lesznek a Linux-Mandrake telepМtИsИvel. PrСbАlkozz a \"SzЖveges mСdЗ\n"
+"telepМtИs\"-el. Nyomj \"F1\"-et bootolАskor, majd add meg: \"text\"."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "VАlassz a kЖvetkezУ telepМtИsi mСdok kЖzЭl:"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Az Аltalad kivАlasztott csomagcsoportok ЖsszmИrete kb. %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2502,11 +3213,11 @@ msgstr ""
"Ha ennИl kevesebb helyet szАnsz a rendszernek,\n"
"adj meg egy szАzalИkos ИrtИket.\n"
"\n"
-"Ha alacsony szАzalИkot adsz meg, akkor a kivАlasztott csomagok kЖzЭl\n"
+"Ha alacsony ИrtИket adsz meg, akkor a kivАlasztott csomagok kЖzЭl\n"
"csak a fontosabbak kerЭlnek telepМtИsre; ha 100%%-ot adsz meg,\n"
"a DrakX minden kijelЖlt csomagot telepМt."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2521,108 +3232,192 @@ msgstr ""
"vАltoztasd meg a kijelzett szАzalИk ИrtИkИt.\n"
"Ha alacsony szАzalИk-ИrtИket adsz meg, a telepМtУ csak a\n"
"legfontosabb csomagokat telepМti; ha hagyod a %d%%-ot,\n"
-"a lehetУ legtЖbb csomag kerЭl telepМtИsre."
+"a lehetУ legtЖbb csomag telepМtИsre kerЭl."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "RИszletesebben vАlogathatsz a kЖvetkezУ lИpИs rИszekИnt."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "TelepМtendУ csomagok szАzalИka"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "VАlaszd ki a telepМtendУ csomagokat"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "TelepМtИs"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automatikus fЭggУsИgek"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
-msgstr "Fa lenyitАsa"
+msgstr "Fa kibontАsa"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
-msgstr "Fa felcsukАsa"
+msgstr "Fa bezАrАsa"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "VАltАs sima Иs csoportok szerint rendezett nИzet kЖzЖtt"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Rossz csomag"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "NИv: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "VerziС: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "MИret: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "FontossАg: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "жsszmИret: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Nem vАlaszthatod ki ezt a csomagot, mert nincs elИg hely a merevlemezen."
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "A telepМtУ a kЖvetkezУ csomagokat fogja telepМteni"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "A telepМtУ a kЖvetkezУ csomagokat tАvolМtja el"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Ez a csomag nem jelЖlhetУ ki illetve nem tЖrЖlhetУ a kijelЖlИse"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ez egy kЖtelezУen telepМtendУ csomag, nem lehet eltАvolМtani."
+msgstr "Ez egy kЖtelezУen telepМtendУ csomag, nem lehet eltАvolМtani"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr ""
-"Nem tudod tЖrЖlni ennek a csomagnak a kijelЖlИsИt, mert mАr telepМtve van."
+"Nem tudod tЖrЖlni ennek a csomagnak a kijelЖlИsИt, mert mАr telepМtve van"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-"Ezt a csomagot frissМteni kell\n"
+"Ezt a csomagot frissМteni kell!\n"
"Biztos, hogy tЖrЖlni akarod a kijelЖlИsИt?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-"Nem tЖrЖlheted ennek a csomagnak a kijelЖlИsИt. Ez a csomag frissМtendУ."
-
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Nem vАlaszthatod ki ezt a csomagot, mert nincs elИg hely a merevlemezen."
+"Nem tЖrЖlheted ennek a csomagnak a kijelЖlИsИt. Ez a csomag frissМtendУ!"
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "A telepМtУ a kЖvetkezУ csomagokat telepМti/tАvolМtja el"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Ez a csomag nem jelЖlhetУ ki illetve nem tЖrЖlhetУ a kijelЖlИse."
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "TelepМtИs"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Megsaccolom..."
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "KИrem vАrjon, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "HАtralИvУ idУ "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "жsszidУ "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "MИgsem"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "TelepМtИs elУkИszМtИse"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d csomag"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "A %s csomag telepМtИse"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Elfogad"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2633,204 +3428,414 @@ msgid ""
msgstr ""
"CserИld ki a CD-t a meghajtСban!\n"
"\n"
-"Tedd be a(z) \"%s\" feliratЗ lemezt, Иs nyomd meg az OK gombot.\n"
-"Ha nincs ilyen lemezed, nyomd meg a MИgsem gombot, Мgy errУl a CD-rУl\n"
+"Tedd be a(z) \"%s\" feliratЗ lemezt, Иs nyomd meg az \"Ok\" gombot.\n"
+"Ha nincs ilyen lemezed, nyomd meg a \"MИgsem\" gombot, Мgy errУl a CD-rУl\n"
"nem tЖrtИnik telepМtИs."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "ElutasМt"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "EttУl fЭggetlenЭl folytassam?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Hiba tЖrtИnt a csomagok rendezИsekor:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Hiba tЖrtИnt a csomagok telepМtИsekor:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Hiba lИpett fel"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "VАlassz nyelvet."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "BillentyШzet"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "VАlassz billentyШzetkiosztАst."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "VАlaszthatsz mАs nyelvet is, ez a telepМtИs utАn lesz elИrhetУ."
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Root partМciС"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Mind"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Melyik a root partМciС (/) a rendszereden?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "TelepМtИsi mСd"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Melyik telepМtИsi mСdot vАlasztod?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "TelepМtИs/FrissМtИs"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "TelepМtИs vagy frissМtИs?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "TelepМtИs vagy HelyreАllМtАs?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatikus"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Javasolt"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Egyedi"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "HaladС"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-"Biztos vagy benne, hogy haladС vagy? \n"
-"HatИkony de veszИlyes dolgokat engedИlyezek ezzel az opciСval."
+"Biztos hogy \"Profi\" vagy?\n"
+"Amennyiben Igen a vАlaszod, komoly Иs esetleg veszИlyes kИrdИsek vАrnak "
+"rАd.\n"
+"Ilyen kИrdИseket fogsz kapni, hogy: \"Shadow fАjl alkalmazАsa "
+"ajelszavakhoz?\"\n"
+"Akarsz (Иs tudsz) ilyen kИrdИsekre vАlaszolni?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "FrissМtИs"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "SzokАsos"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "MunkaАllomАs"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "FejlesztУ"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Szerver"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Milyen cИlra szeretnИd hasznАlni a gИpet?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
-msgstr "JelЖld meg az egИr tМpusАt."
+msgstr "JelЖld meg az egered tМpusАt."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "EgИr port"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "VАlaszd ki, hogy melyik soros porthoz csatlakozik az egered."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA kАrtyАk beАllМtАsa..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE beАllМtАsok"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nincs elИrhetУ partМciС"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "VАlaszd ki a root partМciСt."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "VАlaszd ki a mount pontokat"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Nem tudom olvasni a partМciСs tАblАt, vagy tЗl rossz szАmomra :-(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Beleegyezel hogy elvesszen az Жsszes partМciС?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"A DiskDrake nem tudta rendesen beolvasni a partМciСs tАblАt.\n"
+"FolytatАs csak sajАt felelУssИgedre!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Root partМciС"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Melyik a root partМciС (/) a rendszereden?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"зjra kell indМtanod a gИpet, hogy a partМciСs tАbla vАltozАsai ИrvИnyre \n"
+"зjra kell indМtanod a gИpet, hogy a partМciСs tАbla vАltozАsai ИrvИnyre\n"
"jussanak"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "VАlaszd ki a formАzandС partМciСkat"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "EllenУrizzem a rossz blokkokat?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "A partМciСk formАzАsa"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fАjl lИtrehozАsa Иs formАzАsa"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Elfogyott a swap terЭlet, nЖveld meg a telepМtИs befejezИsИhez"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
-msgstr "Az elИrhetУ csomagok keresИse"
+msgstr "A rendelkezИsre АllС csomagok keresИse"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "A frissМtendУ csomagok keresИse"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "A rendszereden nem maradt elИg hely a telepМtИshez vagy frissМtИshez"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"A rendszereden nem maradt elИg hely a telepМtИshez vagy frissМtИshez (%d > "
+"%d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Teljes (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "MinimАlis (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Javasolt (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Egyedi"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Add meg a rendszer mИretИt"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Csomag-csoportok kivАlasztАsa"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
-msgstr "Egyedi csomagok kivАlasztАsa"
+msgstr "Csomagok egyedi kivАlasztАsa"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-"Ha megvan minden felsorolt CD, kattints az OK-ra.\n"
+"Ha megvan minden felsorolt CD, kattints az Ok-ra.\n"
"Ha a felsoroltak kЖzЭl egy CD sem Аll rendelkezИsedre, kattints a MИgsem "
"gombra.\n"
"Ha a felsoroltak kЖzЭl egyes CD-k hiАnyoznak, tЖrЖld a kijelЖlИsЭket, majd\n"
-"kattints az OK-ra."
+"kattints az Ok-ra."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "A \"%s\" cМmkИjШ CD-ROM"
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2838,172 +3843,11 @@ msgstr ""
"A %s csomag telepМtИse\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "TelepМtИs utАni beАllМtАsok"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "A jelenlegi IP beАllМtАs megtartАsa"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "A hАlСzat ЗjrakonfigurАlАsa"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ne АllМtsd be a hАlСzatot"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "HАlСzati beАllМtАs"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "A lokАlis hАlСzat mАr be van АllМtva. SzeretnИd:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "SzeretnИd beАllМtani a lokАlis hАlСzatot a rendszeren?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "nem talАltam hАlСzati kАrtyАt"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "A modem beАllМtАsai"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "SzeretnИl beАllМtani modemes csatlakozАst a rendszeren?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "%s hАlСzati csatolС beАllМtАsa"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"KИrlek add meg a gИp IP beАllМtАsait.\n"
-"Minden mezУbe IP-cМmet МrjАl pontozott decimАlis formАtumban\n"
-"(pl.: 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatikus IP-cМm"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-cМm:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "HАlСzati maszk:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP-cМm, a formАtuma 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "HАlСzat beАllМtАsa"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"мrd be a gИp nevИt.\n"
-"A teljes nevet kell beМrnod, pl.: ``mybox.mylab.myco.com''.\n"
-"BeМrhatod mИg az АtjАrСd (gateway) IP-cМmИt is, ha van ilyened."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS szerver:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "аtjАrС-eszkЖz:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "аtjАrС (gateway):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "GИpnИv:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Megkeressem a modemet?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "VАlaszd ki, hogy melyik soros porthoz csatlakozik a modemed."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Modemes csatlakozАs beАllМtАsai"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "CsatlakozАs neve"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "TelefonszАm"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "FelhasznАlСi nИv"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AutentikАciС"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Szkript-tel"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "TerminАlon keresztЭl"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "TartomАnynИv"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "ElsУdleges nИvkiszolgАlС"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "MАsodlagos nИvkiszolgАlС"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3056,11 +3900,11 @@ msgstr ""
"felhasznАlС nem tartja be ezeket a tЖrvИnyeket, sЗlyos bЭntetИs szabhatС ki "
"rА.\n"
"\n"
-"A Mandrakesoft, a gyАrtСi, vagy a szАllМtСi semmilyen kЖrЭlmИnyek kЖzЖtt "
+"A Mandrakesoft, a gyАrtСk, vagy a szАllМtСk semmilyen kЖrЭlmИnyek kЖzЖtt "
"sem\n"
"tehetУk felelУssИ azon speciАlis, kЖzvetett vagy jАrulИkos kАrok "
"keletkezИsИИrt\n"
-"(beleИrtve, de nem kizАrСlagosan, a kЖvetkezУk: profitvesztesИg, "
+"(beleИrtve, de nem kizАrСlagosan, a kЖvetkezУket: profitvesztesИg, "
"Эzletmenetben\n"
"bekЖvetkezett zavarok, kereskedelmi adatok vesztИse, valamint bАrmilyen mАs\n"
"anyagi kАr Иs esetleges bМrСsАg Аltal megМtИlt kАrtИrМtИs), amik azon\n"
@@ -3076,90 +3920,96 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "VАlassz tЭkЖrkiszolgАlСt, ahonnan letЖltЖd a csomagokat"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
"KapcsolatfelvИtel a tЭkЖrkiszolgАlСval, elИrhetУ csomagok listАjАnak "
"letЖltИse"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "VАlaszd ki a telepМtendУ csomagokat."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "Melyik idУzСnАban vagy?"
+msgstr "Milyen cИlra szeretnИd hasznАlni a gИpet?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "A hardver-СrАd GMT idУt mutat?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Milyen partМciС-tМpust szeretnИl?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Nincs jelszС"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "\"Shadow\" fАjl alkalmazАsa"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "MD5 jelszavak alkalmazАsa"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "NIS hasznАlata"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "yellow pages"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ez a jelszС tЗl egyszerШ (legalАbb %d karakter kell)"
+msgstr "Ez a jelszС tЗl egyszerШ (legalАbb %d karaktert adj meg)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS azonosМtАs"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS tartomАny"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS szerver"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
-msgstr "FelhasznАlС felvИtele"
+msgstr "FelhasznАlС elfogadАsa"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "FelhasznАlС hozzАadАsa"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(mАr hozzАadtam %s -t)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3169,61 +4019,88 @@ msgstr ""
"Adj meg egy felhasznАlСt\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
-msgstr "Igazi nИv"
+msgstr "ValСdi nИv"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "FelhasznАlСnИv"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikon"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Ez a jelszС tЗl egyszerШ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "KИrlek Мrj be egy felhasznАlСnevet"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-"A felhasznАlСnИv a kЖvetkezУket tartalmazhatja: kisbetШk, szАmok, `-' Иs `_'"
+"A felhasznАlСnИv a kЖvetkezУket tartalmazhatja: kisbetШk, szАmok, \"-\" "
+"Иs\"_\""
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "MАr van ilyen felhasznАlСnИv"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Az indМtСlemez lehetУvИ teszi, hogy elindМtsd a Linux operАciСs rendszert\n"
+"a bootmanager nИlkЭl. Ez akkor hasznos, ha nem akarsz LILO-t (vagy grub-ot)\n"
+"telepМteni a gИpre, vagy egy mАsik operАciСs rendszer letЖrli a LILO-t,\n"
+"vagy a LILO nem mШkЖdik az adott hardver-konfigurАciСddal. Az indМtСlemezt\n"
+"hasznАlhatod a \"Mandrake rescue image\"-el egyЭtt, Мgy sokkal kЖnnyebb\n"
+"kijavМtani a rendszer sЗlyos beАllМtАsi hibАit. SzeretnИl most indМtСlemezt\n"
+"kИszМteni a rendszeredhez?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "ElsУ floppy-meghajtС"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "MАsodik floppy-meghajtС"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
-msgstr "Kihagy"
+msgstr "аtlИp"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3240,198 +4117,160 @@ msgstr ""
"a bootmanager nИlkЭl. Ez akkor hasznos, ha nem akarsz LILO-t (vagy grub-ot)\n"
"telepМteni a gИpre, vagy egy mАsik operАciСs rendszer letЖrli a LILO-t,\n"
"vagy a LILO nem mШkЖdik az adott hardver-konfigurАciСddal. Az indМtСlemezt\n"
-"hasznАlhatod a \"Mandrake rescue image\"-dzsel egyЭtt, Мgy sokkal kЖnnyebb\n"
+"hasznАlhatod a \"Mandrake rescue image\"-el egyЭtt, Мgy sokkal kЖnnyebb\n"
"kijavМtani a rendszer sЗlyos beАllМtАsi hibАit. SzeretnИl most indМtСlemezt\n"
"kИszМteni a rendszeredhez?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Sajnos nincs elИrhetУ floppy-meghajtС"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"VАlaszd ki azt a floppy-meghajtСt, amelyiket hasznАlni akarod a boot-diszk "
-"kИszМtИsИhez"
+"kИszМtИshez"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "TegyИl egy floppy-t a(z) %s meghajtСba"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Boot-diszk kИszЭl"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "A LILO telepМtИse nem sikerЭlt. A hiba a kЖvetkezУ:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "SzeretnИd a SILO-t hasznАlni?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "A SILO fУbb opciСi"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Itt vannak a SILO jelenlegi bejegyzИsei.\n"
-"Adhatsz a meglИvУkhЖz Зjakat, vagy mСdosМthatod a meglИvУket."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "PartМciС"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "MАr van ilyen cМmke"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "A SILO telepМtИse nem sikerЭlt. A hiba a kЖvetkezУ:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "RendszerbetЖltУ elУkИszМtИse"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
msgstr "SzeretnИd az aboot-ot hasznАlni?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-"Hiba az aboot telepМtИsekor, \n"
-"prСbАljam Зjra a telepМtИst, akkor is, ha ez esetleg tЖnkreteszi az elsУ "
+"Hiba az aboot telepМtИsekor,\n"
+"prСbАljam Зjra a telepМtИst akkor is, ha ez esetleg tЖnkreteszi az elsУ "
"partМciСt?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy-beАllМtАsok"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "A proxy valami ilyen kell, hogy legyen: http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "A proxy valami ilyen kell, hogy legyen: ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "A rendszerbetЖltУ telepМtИse nem sikerЭlt. A hiba a kЖvetkezУ:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Cracker Paradicsom!"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
-msgstr "Gyenge"
+msgstr "SilАny"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Alacsony"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "KЖzepes"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Magas"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanoiАs vagy..."
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "EgyИb kИrdИsek"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(adatvesztИst okozhat)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "HasznАljak merevlemez-optimalizАlАst?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "VАlaszd ki a biztonsАgi szintet"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Fizikai RAM mИrete (jelenleg %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "EltАvolМthatС mИdia automatikus felcsatolАsa"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "/tmp tЖrlИse minden ЗjraindulАskor"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Multi profile-ok engedИlyezИse"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Num Lock bekapcsolАsa boot-olАskor"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Add meg a fizikai memСria mИretИt MB-ban"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Nem lehet a supermount-ot hasznАlni ilyen magas biztonsАgi szinten"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
+msgstr ""
+"Figyelem: E BIZTONSаGI SZINTEN, A ROOT BEJELENTKEZиS KONZOLON NEM "
+"MEGENGEDETT!\n"
+"Amennyiben root jogosultsАg szЭksИges, jelentkezz be felhasznАlСkИnt,\n"
+"Иs hasznАld a \"su\" parancsot. More generally, do not expect to use\n"
+"your machine for anything but as a server.\n"
+"You have been warned."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
-"A DrakX lИtrehozza az X konfigurАciСs fАjlt az XFree 3.3-as Иs 4.0-s\n"
-"verziСjАhoz is. AlapИrtelmezИsben a 3.3-as szervert hasznАljuk, mert tЖbb\n"
-"videokАrtyАt tАmogat.\n"
-"\n"
-"Ki akarod prСbАlni a 4-es XFree-t?"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "PCI eszkЖzЖk keresИse?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "HasznАljam a mАr meglИvУ X11 beАllМtАsokat?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "SzeretnИl automatikus telepМtИshez telepМtУlemezt kИszМteni?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "TegyИl egy Эres floppy-t a(z) %s meghajtСba"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Automatikus telepМtУ floppy kИszМtИse"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3441,7 +4280,7 @@ msgstr ""
"\n"
"Biztos, hogy ki akarsz lИpni?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3462,154 +4301,18 @@ msgstr ""
"TovАbbi informАciСkat a rendszer beАllМtАsАhoz a Hivatalos \n"
"Linux-Mandrake FelhasznАlСi KИzikЖnyvben talАlsz."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Rendszer leАllМtАsa"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Driver telepМtИse a(z) %s kАrtyАhoz (%s)"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(%s modul)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Melyik %s driver-t prСbАljam meg?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Egyes esetekben a %s driver-nek tovАbbi paramИterekre van szЭksИge a helyes\n"
-"mШkЖdИshez, bАr ez nem jellemzУ. SzeretnИl tovАbbi paramИtereket megadni a\n"
-"driver-nek, vagy hagyod, hogy az magАtСl kИrdezze le a hardvertУl a "
-"szЭksИges\n"
-"informАciСt? EsetenkИnt az automatikus keresИs lefagyaszthatja a \n"
-"szАmМtСgИpet, de ez semmilyen kАrosodАssal nem jАr."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Automatikus keresИs"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "RИszletes beАllМtАsok"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Most adhatod meg a %s modul paramИtereit."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"аtadhatsz a %s modulnak paramИtereket.\n"
-"A paramИterek szintaktikАja: ``nИv=ИrtИk nИv2=ИrtИk2 ...''.\n"
-"PИldАul: ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Modul beАllМtАsok:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s modul betЖltИse sikertelen.\n"
-"MegprСbАlod mАs paramИterekkel?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "PrСbАljam megkeresni a PCMCIA kАrtyАkat?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA kАrtyАk beАllМtАsa..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "%s eszkЖzЖk keresИse?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "TalАltam: %s %s csatolСt"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Van mАsik is?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Van valamilyen %s csatolСd?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nem"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Igen"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "NИzd meg a hardver infСt"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "HАlСzat indМtАsa"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "HАlСzat leАllМtАsa"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake TelepМtИs %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> elemek kЖzЖtt | <Space> kivАlaszt | <F12> kЖvetkezУ kИpernyУ"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Most partМcionАlhatod a %s merevlemezedet.\n"
-"Ha befejezted, ne felejtsd el elmenteni a vАltozАsokat a `w'-vel."
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "KИrlek vАrj"
@@ -3619,469 +4322,972 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "FИlreИrthetУ (%s), lИgy pontosabb\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Rossz vАlasztАs, prСbАlkozz Зjra\n"
#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
-msgstr " ? (alapИrtelmezett: %s) "
+msgstr " ? (alapИrtelmezИs: %s) "
#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
-msgstr "Mit vАlasztasz? (alapИrtelmezett: %s) "
+msgstr "Mit vАlasztasz? (alapИrtelmezИs: %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
-msgstr "Mit vАlasztasz? (alapИrtelmezett: %s, Мrd `none' a semmihez) "
+msgstr "Mit vАlasztasz? (alapИrtelmezИs: %s, Мrd `none' a semmihez) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Cseh"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "NИmet"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finn"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Francia"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "NorvИg"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Lengyel"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Orosz"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Angol (UK) billentyШzet"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "USA-billentyШzet"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "жrmИny (rИgi)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "жrmИny (МrСgИp)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "жrmИny (fonetikus)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AzerbajdzsАn (latin)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AzerbajdzsАn (cirill)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BolgАr"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "FehИrorosz"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "SvАjci (nИmet kiosztАs)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "SvАjci (francia kiosztАs)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "NИmet (\"dead key\" nИlkЭl)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DАn"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (Amerikai)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (NorvИg)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "иszt"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "GrЗz (\"Orosz\" kiosztАs)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "GrЗz (\"Latin\" kiosztАs)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GЖrЖg"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Magyar"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "HorvАt"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Izraeli"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Izraeli (Fonetikus)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IrАni"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Izlandi"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Olasz"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "JapАn 106 billentyШs"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latin-amerikai"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Holland"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "LitvАn AZERTY (rИgi)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "LitvАn AZERTY (Зj)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "LitvАn \"szАmsor\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "LitvАn \"fonetikus\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Lengyel (qwerty kiosztАs)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Lengyel (qwertz kiosztАs)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortugАl"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanadai (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Orosz (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "SvИd"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "SzlovИn"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SzlovАk"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thai billentyШzet"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "TЖrЖk (hagyomАnyos \"F\" modell)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "TЖrЖk (modern \"Q\" modell)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "UkrАn"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "USA-billentyШzet (nemzetkЖzi)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "VietnАmi \"szАmsor\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "JugoszlАv (latin kiosztАs)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# '\202' is 'И' (eacute) in cp437 encoding
-# '\242' is 'С' (oacute) in cp437 encoding
-# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
-# '\201' is 'Э' (udiaeresis) in cp437 encoding
-# '\240' is 'А' (aacute) in cp437 encoding
-# '\241' is 'М' (iacute) in cp437 encoding
-# there is no 'У' (odoubleacute) in cp437 using o" ...
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun egИr"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "SzabvАnyos"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+ egИr"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "аltalАnos"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "GЖrgУs"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "soros"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "аltalАnos 2 gombos egИr"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "аltalАnos 3 gombos egИr"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan egИr"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (soros, rИgi C7 tМpus)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Nincs egИr"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 gombos"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 gombos"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "egyiket sem"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Nincs egИr"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "KЖvetkezУ ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Rendben?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internet beАllМtАsok"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "KiprСbАljuk az Internet kapcsolatot most?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Internet kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Ne АllМtsd be a hАlСzatot"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
-"\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Internet kapcsolat / Helyi hАlСzat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN BeАllМtАsok"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
msgstr ""
-"L┌gy │dv■z■lve a LILO bootmanager-ben!\n"
+"Add meg a SzolgАltatСd nevИt!\n"
+"Ha nincs az alАbbi listАban, vАlaszd az \"Unlisted\"-et"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "TЖltsd ki vagy ellenУrizd le az alАbbi mezУket"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "KАrtya IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "KАrtya DMA"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "KАrtya IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "KАrtya IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "KАrtya IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "SajАt telefonszАmod"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "SzolgАltatС neve (provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "SzolgАltatС telefonszАma"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "ElsУdleges nИvkiszolgАlС"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "MАsodlagos nИvkiszolgАlС"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "TАrcsАzАsi mСd"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "FelhasznАlС nИv"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "JelszС"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "JelszС (mИgegyszer)"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "EurСpa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "EurСpa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Milyen protokoll-t szeretnИl hasznАlni?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Nem tudom"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Milyen tМpusЗ kАrtyАd van?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "EttУl fЭggetlenЭl folytassam?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "MegszakМtАs"
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"A lehets┌ges alternat║v═k megtekint┌s┌hez nyomj egy <TAB>-ot.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"Egy adott oper═ci╒s rendszer bet■lt┌s┌hez ║rd be a megfelelo\" image nev┌t "
-"┌s\n"
-"nyomj egy <ENTER>-t, vagy v═rj %d m═sodpercet ┌s az alap┌rtelmezett "
-"elindul.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
"\n"
+"Amennyiben ISA kАrtyАd van, a kЖvetkezУ kИpernyУn lАthatС ИrtИkek fontosak.\n"
+"Ha PCMCIA kАrtyАd van, tudnod kell a kАrtya IRQ Иs IO ИrtИkeit.\n"
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "LИgy ЭdvЖzЖlve! Ez a GRUB, az operАciСs rendszer vАlasztС."
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Milyen ISDN kАrtyАd van?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "HasznАld a(z) %c Иs %c gombokat a bejegyzИs kijelЖlИsИre."
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "TalАltam egy ISDN kАrtyАt:\n"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-"Az `enter' megnyomАsАval a kivАlasztott Op. rendszer indul, az `e' gombbal"
+"иrzИkeltem egy ISDN PCI kАrtyАt, de nem ismertem fel a tМpusАt. KИrem "
+"vАlassz ki egy PCI kАrtyАt a kЖvetkezУ kИpernyУn."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "Nem talАltam ISDN PCI kАrtyАt. VАlassz ki egyet a kЖvetkezУ kИpernyУn"
+
+#: ../../netconnect.pm_.c:331
+#, fuzzy
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"szerkesztheted a boot-olАs elУtt a parancsokat, a `c' gombbal parancssort "
-"kapsz."
+"Nem tatАlhatС Ethernet hАlСzati adapter a rendszerben. Futtasd a \"Hadver "
+"konfigurАciСs eszkЖz\"-t."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "HАlСzati interfИsz kivАlasztАsa"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "VАlaszd ki, hogy melyik interfИszt hasznАlod az Internet kapcsolathoz"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "HАlСzati interfИsz"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-"A kijelЖlt operАciСs rendszer %d mАsodpercen belЭl automatikusan elindul."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "nincs elИg hely a /boot partМciСn"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "зjra kell indМtani a hАlСzati interfИszt. Mehet?"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Munkaasztal"
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL beАllМtАsok"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start MenЭ"
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Az Internet kapcsolat elinduljon a rendszer indulАsakor?"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun egИr"
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Megkeressem a modemet?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB egИr"
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "VАlaszd ki, hogy melyik soros portra csatlakozik a modemed."
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB egИr (2 gomb)"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Modemes csatlakozАs beАllМtАsai"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB egИr (3 vagy tЖbb gomb)"
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "CsatlakozАs neve"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB egИr"
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "TelefonszАm"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB egИr (2 gomb)"
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "FelhasznАlСi nИv"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB egИr (3 vagy tЖbb gomb)"
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AutentikАciС"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "аltalАnos egИr (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Szkript alapЗ"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "аltalАnos 3 gombos egИr (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "TerminАlon keresztЭli"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "TartomАnynИv"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "ElsУdleges nИvkiszolgАlС"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "MАsodlagos nИvkiszolgАlС"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Internet kapcsolat / Helyi hАlСzat beАllМtАsa"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Internet kapcsolat beАllМtАsa"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Ne АllМtsd be a hАlСzatot"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Ne АllМtsd be a hАlСzatot"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "CsatlakozАs az Internethez"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Internet kapcsolat megszakМtАsa"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Internet kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Internet kapcsolat & beАllМtАs"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+#, fuzzy
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "зjra kell indМtani a hАlСzati interfИszt. Mehet?"
+
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Internet kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Internet kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "BelsУ ISDN kАrtya"
+
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "KЭlsУ modem"
+
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Kapcsolat az Internethez"
+
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Milyen fajta az ISDN kapcsolatod?"
+
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Internet kapcsolat beАllМtАsa"
+
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Francia"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus egИr"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "EgyИb nemzetek"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus egИr"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "Melyik orszАgban Иlsz?"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus egИr"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB egИr"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB egИr (3 vagy tЖbb gomb)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"Ha az DSL modemed Alcatel one, vАlaszd az Alcatel-t. EgyИbkИnt az ECI-t."
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Nincs egИr"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "pppoe hasznАlata"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A vagy magasabb (soros)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "ne hasznАlja a pppoe-t"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (soros)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (soros)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Internet kapcsolat beАllМtАsa"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (soros)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Milyen protokoll-t szeretnИl hasznАlni?"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (soros)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Internet kapcsolat beАllМtАsa"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (soros)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Helyi hАlСzat beАllМtАsa"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (soros)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "HАlСzati beАllМtАs"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (soros)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Leteszteled a beАllМtАsokat?"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (soros, rИgi C7 tМpus)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "HАlСzat kikapcsolАsa"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (soros)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Internet kapcsolat / Helyi hАlСzat beАllМtАsa"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "аltalАnos egИr (soros)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"A lokАlis hАlСzat mАr be van АllМtva.\n"
+"SzeretnИd:"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft-kompatМbilis (soros)"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Hogyan akarsz kapcsolСdni az Internet-re?"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "аltalАnos 3 gombos egИr (soros)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "HАlСzati beАllМtАs"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (soros)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Rendben?"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "nem talАltam hАlСzati kАrtyАt"
-#: ../../partition_table.pm_.c:528
-msgid "Extended partition not supported on this platform"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "HАlСzat beАllМtАsa"
+
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
-"A kiterjesztett (extended) partМciС nem\n"
-"tАmogatott ezen a platformon"
+"мrd be a gИped nevИt.\n"
+"NИmely DHCP szerver megkЖveteli a gИpnevet.\n"
+"A teljes nevet kell beМrnod, pl.: \"mybox.mylab.myco.com\".\n"
-#: ../../partition_table.pm_.c:546
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "GИpnИv:"
+
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+
+#: ../../network.pm_.c:302
+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 ""
+"KИrlek add meg a gИp IP beАllМtАsait.\n"
+"Minden mezУbe IP-cМmet Мrj pontozott decimАlis formАtumban\n"
+"(pl.: 192.169.10.11)."
+
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "%s hАlСzati csatolС beАllМtАsa"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatikus IP-cМm"
+
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "IP-cМm"
+
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "HАlСzati maszk"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP-cМm, a formАtuma 192.168.10.11"
+
+#: ../../network.pm_.c:341
+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 ""
+"мrd be a gИped nevИt.\n"
+"NИmely DHCP szerver megkЖveteli a gИpnevet.\n"
+"\n"
+"A teljes nevet kell beМrnod, pl.: \"mybox.mylab.myco.com\"."
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "DNS szerver"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "аtjАrС (gateway)"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "аtjАrС-eszkЖz"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Proxy beАllМtАsok"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "A proxy valami ilyen kell, hogy legyen: http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "A proxy valami ilyen kell, hogy legyen: ftp://..."
+
+#: ../../partition_table.pm_.c:540
+msgid "Extended partition not supported on this platform"
+msgstr "A kiterjesztett (extended) partМciС nem tАmogatott ezen a platformon"
+
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4091,21 +5297,21 @@ msgstr ""
"Az egyetlen megoldАs az elsУdleges partМciС АthelyezИse Зgy, hogy a\n"
"kiterjesztett partМciСk mellИ kerЭljЖn az Эres hely."
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Hiba a %s fАjl olvasАsa kЖzben"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "A %s fАjlbСl valС visszaАllМtАs sikertelen: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
-msgstr "HibАs mentИs"
+msgstr "HibАs mentИs fАjl"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Hiba a %s fАjl МrАsa kЖzben"
@@ -4139,42 +5345,55 @@ msgstr "Иrdekes"
msgid "maybe"
msgstr "esetleg"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (fontos)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (nagyon szИp)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (szИp)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Mutass kevesebbet"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Mutass tЖbbet"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Helyi nyomtatС"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "TАvoli lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "TАvoli nyomtatС"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "TАvoli CUPS szerver"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
+msgstr "TАvoli lpd szerver"
+
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "Network nyomtatС (socket) beАllМtАsai"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "NyomtatС eszkЖz URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "EszkЖzЖk keresИse..."
@@ -4186,13 +5405,13 @@ msgstr "Portok tesztelИse"
#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
-msgstr "%s tМpusЗ nyomtatСt talАltam itt: "
+msgstr "\"%s\" tМpusЗ nyomtatСt talАltam "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Helyi nyomtatС eszkЖz"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4200,37 +5419,37 @@ msgstr ""
"Melyik eszkЖzre van a nyomtatСd csatlakoztatva\n"
"(megjegyzИs: /dev/lp0 megfelel az LPT1:-nek)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "NyomtatС eszkЖz"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "TАvoli nyomtatС-dИmon beАllМtАsai"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"TАvoli lpd nyomtatСsor hasznАlatАhoz meg kell adnod a tАvoli \n"
+"TАvoli lpd nyomtatСsor hasznАlatАhoz meg kell adnod a tАvoli\n"
"nyomtatС-kiszolgАlС nevИt, valamint annak a nyomtatСsornak a nevИt\n"
"amelyikre a nyomtatАsokat kЭldeni szeretnИd."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "TАvoli host neve"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "TАvoli nyomtatСsor neve"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) nyomtatАsi beАllМtАsok"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4240,31 +5459,30 @@ msgid ""
msgstr ""
"Ahhoz, hogy SMB nyomtatСra tudj nyomtatni, meg kell adnod a nyomtatС-\n"
"kiszolgАlС SMB nevИt (MegjegyzИs: nem biztos, hogy ugyanaz, mint a TCP/IP\n"
-"gИpnИv!) Иs az IP-cМmИt, valamint a megosztott nyomtatС nevИt Иs a "
-"megfelelУ\n"
+"gИpnИv!) Иs az IP-cМmИt, a megosztott nyomtatС nevИt Иs egy megfelelУ\n"
"jogosultsАgokkal rendelkezУ felhasznАlС nevИt, munkacsoportjАt Иs jelszavАt."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB szerver gИpneve"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
-msgstr "SMB szerver IP"
+msgstr "SMB szerver IP cМme"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Megosztott kЖnyvtАr neve"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Munkacsoport"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare nyomtatС beАllМtАsai"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4273,134 +5491,160 @@ msgid ""
msgstr ""
"Ahhoz, hogy NetWare nyomtatСra tudj nyomtatni, meg kell adnod a NetWare\n"
"nyomtatС-kiszolgАlС nevИt (VigyАzz! Ez nem biztos, hogy megegyezik a TCP/IP\n"
-"gИpnИvvel!) Иs a nyomtatСsor nevИt, valamint egy, a megfelelУ "
-"jogosultsАgokkal \n"
+"gИpnИvvel!), a nyomtatСsor nevИt, Иs egy megfelelУ jogosultsАgokkal\n"
"rendelkezУ felhasznАlСi nevet Иs jelszСt."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "NyomtatС szerver"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "NyomtatАsi sor neve"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "Socket nyomtatС beАllМtАsai"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Ahhoz, hogy egy socket printerre nyomtathassz, meg kell adnod a nyomtatС\n"
+"gИpnevИt Иs opcionАlisan a nyomtatС portszАmАt."
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "NyomtatС gИpneve"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Milyen tМpusЗ nyomtatСd van?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Ki akarod prСbАlni a nyomtatАst?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Teszt oldal(ak) kinyomtatАsa..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"A teszt oldalt/oldalakat elkЭldtem a nyomtatС-dИmonnak.\n"
+"Eltarthat egy kis ideig, amМg a nyomtatАs elindul.\n"
+"NyomtatАsi Аllapot:\n"
+"%s\n"
+"\n"
+"MegfelelУen mШkЖdik?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"A teszt oldalt/oldalakat elkЭldtem a nyomtatС-dИmonnak.\n"
+"Eltarthat egy kis ideig, amМg a nyomtatАs elindul.\n"
+"MegfelelУen mШkЖdik?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Igen, nyomtass ASCII prСba oldalt"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Igen, nyomtass PostScript prСba oldalt"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Igen, nyomtasd ki mind a kИt prСba oldalt"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "NyomtatС beАllМtАsa"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Milyen tМpusЗ nyomtatСd van?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "NyomtatС-beАllМtАsok"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "PapМrmИret"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "LapdobАs nyomtatАs utАn?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint driver beАllМtАsai"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "SzМnmИlysИg beАllМtАsai"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "PostScript-kИnt nyomtassam a szЖveget?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
-msgstr "Oldalak sorrendjИnek megvАltoztatАsa"
+msgstr "Oldalak sorrendjИnek megfordМtАsa"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
-msgstr "JavМtsam a lИpcsУzetes szЖveget?"
+msgstr "JavМtsam a lИpcsУzetes nyomtatАst?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Oldalak szАma laponkИnt"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Jobb/bal margС pontokban (1/72 inch)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "AlsС/felsУ margС pontokban (1/72 inch)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "TovАbbi GhostScript opciСk"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "TovАbbi Text opciСk"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Ki akarod prСbАlni a nyomtatАst?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Teszt oldal(ak) kinyomtatАsa..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"A teszt oldalt/oldalakat elkЭldtem a nyomtatС-dИmonnak.\n"
-"Eltarthat egy kis ideig, amМg a nyomtatАs elindul.\n"
-"NyomtatАsi Аllapot:\n"
-"%s\n"
-"\n"
-"MШkЖdik?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"A teszt oldalt/oldalakat elkЭldtem a nyomtatС-dИmonnak.\n"
-"Eltarthat egy kis ideig, amМg a nyomtatАs elindul.\n"
-"MШkЖdik?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "NyomtatС"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
-msgstr "SzeretnИl nyomtatСt beАllМtani?"
+msgstr "SzeretnИd a nyomtatСt beАllМtani?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4408,19 +5652,67 @@ msgstr ""
"Itt vannak a jelenleg beАllМtott nyomtatСsorok.\n"
"Adhatsz a meglИvУkhЖz Зjakat, vagy mСdosМthatod a rИgieket."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "VАlassz nyomtatС-kapcsolatot"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Hogyan van a nyomtatС csatlakoztatva?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "VАlassz tАvoli nyomtatС-kapcsolatot"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "NyomtatСsor tЖrlИse"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Minden nyomtatСsornak (itt Аllnak sorban a nyomtatАsok) kell adni egy nevet\n"
+"(ami gyakran lp) Иs hozzА kell rendelni egy spool kЖnyvtАrat. Milyen sor- "
+"Иs\n"
+"kЖnyvtАrnevet АllМtsak be ehhez a nyomtatСsorhoz?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Helyi nyomtatС"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "RИszletes beАllМtАsok"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4428,80 +5720,80 @@ msgid ""
"connected?"
msgstr ""
"Minden nyomtatСsornak (itt Аllnak sorban a nyomtatАsok) kell adni egy nevet\n"
-"(ami gyakran lp) Иs kell rendelni hozzА egy spool kЖnyvtАrat. Milyen sor- "
+"(ami gyakran lp) Иs hozzА kell rendelni egy spool kЖnyvtАrat. Milyen sor- "
"Иs\n"
"kЖnyvtАrnevet АllМtsak be ehhez a nyomtatСsorhoz?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "NyomtatСsor neve"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spool kЖnyvtАr"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "NyomtatС-kapcsolat"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nem tudok partМciСt hozzАadni a _formАzott_ RAID md%d-hez"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Nem tudom Мrni a $file fАjlt"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid sikertelen"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sikertelen (lehet, hogy hiАnyzik a raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nincs elИg partМciС a RAID level %d -hez/-hoz/-hЖz\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
-msgstr "Anacron, a parancsЭtemezУ."
+msgstr "Anacron, a periСdikus parancsЭtemezУ."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"Az apmd monitorozza a telepek АllapotАt Иs naplСz a syslog-ba.\n"
-"SegМtsИgИvel leАllМthatod a gИpet, ha a telep lemerЭl."
+"SegМtsИgИvel leАllМthatod a gИpet, mielУtt a telep lemerЭl."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Az at parancs Аltal Эtemezett utasМtАsokat hajtja vИgre a megadott "
"idУpontban, \n"
-"valamint kЖtegelt (batch-elt) parancsokat futtat, amikor a gИp terhelИse \n"
+"valamint kЖtegelt (batch-elt) parancsokat futtat, amikor a gИp terhelИse\n"
"alacsony."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-"A cron a szabvАnyos parancsЭtemezУ program a UNIX operАciСs rendszereken. \n"
+"A cron a szabvАnyos parancsЭtemezУ program a UNIX operАciСs rendszereken.\n"
"SegМtsИgИvel a felhasznАlСk Аltal megadott programok futtathatСk "
"periodikusan.\n"
-"A vixie cron kicsit tЖbbet tud az alap cron-nАl, biztonsАgosabb Иs \n"
+"A vixie cron kicsit tЖbbet tud az alap cron-nАl, biztonsАgosabb Иs\n"
"kЖnnyebb konfigurАlni."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4512,7 +5804,7 @@ msgstr ""
"mint pl. a Midnight Commander. SegМtsИgИvel lehet kivАgni Иs beilleszteni,\n"
"valamint felbukkanС menЭket hasznАlni a konzolon."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4520,7 +5812,7 @@ msgstr ""
"Az Apache egy WWW szerver. HTML fАjlokat Иs CGI-t tesz elИrhetУvИ\n"
"a hАlСzaton keresztЭl."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4529,46 +5821,46 @@ msgid ""
"disables\n"
"all of the services it is responsible for."
msgstr ""
-"Az ``internet szuperszerver dИmon'' (rЖviden inetd) felelУs sok hАlСzati \n"
-"szolgАltatАs indМtАsАИrt, mint pl. a telnet, ftp, rsh Иs rlogin. Az inetd \n"
+"Az \"internet szuperszerver dИmon\" (inetd) felelУs sok hАlСzati\n"
+"szolgАltatАs indМtАsАИrt, mint pl. telnet, ftp, rsh Иs rlogin. Az inetd\n"
"leАllМtАsАval minden Аltala irАnyМtott szolgАltatАs leАll."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-"Ez a csomag tЖlti be a billentyШzetkiosztАst, amit a \n"
-"/etc/sysconfig/keyboard -ban АllМthatsz be. A beАllМtАst megvАltoztathatod \n"
+"Ez a csomag tЖlti be a billentyШzetkiosztАst, amit a\n"
+"/etc/sysconfig/keyboard -ban АllМthatsz be. A beАllМtАst megvАltoztathatod\n"
"a kbdconfig programmal. Ezt bekapcsolva kell hagyni a legtЖbb rendszeren."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"Az lpd a nyomtatС-dИmon, ez kell az lpr rendes mШkЖdИsИhez. Az lpd \n"
-"alapjАban vИve egy nyomtatСszerver, elrendezi a nyomtatАsokat a kЭlЖnbЖzУ \n"
+"Az lpd a nyomtatС-dИmon, ez kell az lpr rendes mШkЖdИsИhez. Az lpd\n"
+"alapjАban vИve egy nyomtatСszerver, elrendezi a nyomtatАsokat a kЭlЖnbЖzУ\n"
"nyomtatСk kЖzЖtt."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-"A named (BIND) egy DNS, azaz TartomАnynИv-kiszolgАlС, ennek segМtsИgИvel \n"
+"A named (BIND) egy DNS, azaz TartomАnynИv-kiszolgАlС, ennek segМtsИgИvel\n"
"feleltetik meg a gИpek az IP-cМmeket Иs a host neveket."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"Fel- Иs lecsatolja (mount-olja) a kЭlЖnbЖzУ hАlСzati fАjlrendszereket, \n"
+"Fel- Иs lecsatolja (mount-olja) a kЭlЖnbЖzУ hАlСzati fАjlrendszereket,\n"
"mint pl. az NFS, az SMB (LAN Manager/Windows) Иs az NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4576,17 +5868,17 @@ msgstr ""
"AktivАlja vagy deaktivАlja a boot-olАsnАl automatikusan indulС hАlСzati\n"
"interfИszeket."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"Az NFS egy nИpszerШ, TCP/IP hАlСzaton hasznАlatos fАjlmegosztАsi protokoll.\n"
-"Ez a szolgАltatАs egy NFS kiszolgАlС, konfigurАlАsa a /etc/exports \n"
+"Ez a szolgАltatАs egy NFS kiszolgАlС, konfigurАlАsa a /etc/exports\n"
"fАjlon Аt tЖrtИnik."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4594,7 +5886,7 @@ msgstr ""
"Az NFS egy nИpszerШ, TCP/IP hАlСzaton hasznАlatos fАjlmegosztАsi protokoll.\n"
"Ez a szolgАltatАs az NFS lock-olАst oldja meg."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4603,11 +5895,11 @@ msgid ""
msgstr ""
"A PCMCIA-tАmogatАsra АltalАban azoknak a laptop felhasznАlСknak van "
"szЭksИgЭk,\n"
-"akik PCMCIA modemet vagy hАlСzati kАrtyАt hasznАlnak a gИpЭkben. \n"
-"A szolgАltatАs nem indul el, ha nincs beАllМtva, tehАt nyugodtan fel lehet \n"
+"akik PCMCIA modemet vagy hАlСzati kАrtyАt hasznАlnak a gИpЭkben.\n"
+"A szolgАltatАs nem indul el, ha nincs beАllМtva, tehАt nyugodtan fel lehet\n"
"telepМteni olyan gИpre is, ahol nincs rА szЭksИg."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4618,44 +5910,44 @@ msgstr ""
"az NFS-nek van szЭksИge. A portmap szerverre csak a (NIS vagy NFS) szerver\n"
"gИpeken van szЭksИg."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-"A Postfix egy LevИl аtviteli Program, ez mozgatja a leveleket egyik gИprУl \n"
-"a mАsikra."
+"A Postfix egy LevИl TovАbbМtС (MTA) Program. у mozgatja a leveleket egyik\n"
+"gИprУl a mАsikra."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-"Elmenti Иs visszaАllМtja a rendszer entrСpia tАrolСjАt, Мgy jobb \n"
+"Elmenti Иs visszaАllМtja a rendszer entrСpia tАrolСjАt, Мgy jobb\n"
"vИletlenszАmokat lehet generАlni."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"A routed dИmon lehetУvИ teszi, hogy a RIP protokoll segМtsИgИvel "
-"automatikusan \n"
+"automatikusan\n"
"frissЭljЖn az IP protokoll Аltal hasznАlt ЗtvАlasztС tАbla (IP routing "
"table).\n"
-"A RIP elterjedt a kis hАlСzatokon, a nagyobb, bonyolultabb hАlСzatok mАs \n"
+"A RIP elterjedt a kis hАlСzatokon, a nagyobb, bonyolultabb hАlСzatok mАs\n"
"ЗtvАlasztС protokollokat igИnyelnek."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-"Az rstat protokoll segМtsИgИvel a felhasznАlСk informАciСt kaphatnak a \n"
+"Az rstat protokoll segМtsИgИvel a felhasznАlСk informАciСt kaphatnak a\n"
"(lokАlis) hАlСzaton mШkЖdУ gИpekrУl."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4663,84 +5955,241 @@ msgstr ""
"Az rusers protokoll segМtsИgИvel a felhasznАlСk lekИrdezhetik, hogy melyik\n"
"gИpre ki van bejelentkezve."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"Az rwho protokoll segМtsИgИvel tАvoli felhasznАlСk kaphatnak egy listАt az \n"
+"Az rwho protokoll segМtsИgИvel tАvoli felhasznАlСk kaphatnak egy listАt az\n"
"rwho dИmont futtatС gИp aktuАlis felhasznАlСirСl (olyan, mint a finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
"A syslog-on keresztЭl naplСznak a dИmonok, kЭlЖnbЖzУ naplСfАjlokba.\n"
-"A syslog hasznАlata mindig ajАnlott."
+"A syslog hasznАlata mindМg ajАnlott."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
"Ez az indulАsnАl vИgrehajtott szkript megprСbАlja betЖlteni a modulokat az\n"
"USB egИrhez."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"ElindМtja Иs leАllМtja az X Font Szervert a gИp indulАsakor Иs\n"
"leАllАsakor."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
-"VАlaszd ki, hogy boot-olАskor milyen szolgАltatАsok induljanak automatikusan"
+"VАlaszd ki, hogy boot-olАskor milyen szolgАltatАsok induljanak automatikusan "
+"el"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"LИgy ЭdvЖzЖlve a SILO bootmanager-ben!\n"
-"\n"
-"A lehetsИges alternatМvАk megtekintИsИhez nyomj egy <TAB>-ot.\n"
-"\n"
-"Egy adott operАciСs rendszer betЖltИsИhez Мrd be a megfelelУ image nevИt\n"
-"Иs nyomj egy <ENTER>-t, vagy vАrj %d mАsodpercet Иs az alapИrtelmezett "
-"elindul.\n"
-"\n"
+"Nem tudom beolvasni a partМciСs tАblАt, tЗlsАgosan el van rontva :-(\n"
+"MegprСbАlom tЖrЖlni a rossz partМciСkat"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
-msgstr "A LILO/GRUB beАllМtАsai"
+msgstr "A LILO/GRUB beАllМtАsa"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "IndМtСlemez kИszМtИse"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Floppy formАzАsa"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "VАlasztАs"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "A LILO telepМtИse nem sikerЭlt. A hiba a kЖvetkezУ:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Az Internet Kapcsolat MegosztАsa engedИlyezett"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Az Internet Kapcsolat MegosztАs mАr lИtezik.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "TАbla (table)"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Az X beАllМtАsa"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Az Internet Kapcsolat MegosztАs nem engedИlyezett"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "Az Internet Kapcsolat MegosztАs mАr lИtezik.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "TАbla (table)"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "A konfigurАciСs fАjl tartalma nem ИrtelmezhetУ"
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Internet Kapcsolat MegosztАsa"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "TАrcsАzАsi mСd"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Nincs hАlСzati adapter a szАmМtСgИpben!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Nem tatАlhatС Ethernet hАlСzati adapter a rendszerben. Futtasd a \"Hadver "
+"konfigurАciСs eszkЖz\"-t."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+#, fuzzy
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"VАlaszd ki, hogy melyik hАlСzati adapterrel csatlakozol a Helyi hАlСzatra."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Figyelem! A hАlСzati adaptere mАr be van АllМtva.\n"
+"зjbСl be kМvАnja АllМtani?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "HАlСzati cМmhibАt Иszleltem az aktuАlis konfigurАciСban $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "TШzfal beАllМtАsokat ИrzИkeltem!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Figyelem! LИzetУ TШzfal beАllМtАsokat ИrzИkeltem. KИzileg lehetsИges a "
+"beАllМtАsok mСdosМtАsa telepМtИs utАn. Mehet?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "BeАllМtС szkriptek, szoftver telepМtИs, szerverek indМtАsa..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "IDE beАllМtАsok"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Nem tudom telepМteni az ipcahains RPM-et az urpmi-vel."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Nem tudom telepМteni a dhcp RPM-et az urpmi.vel."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Nem tudom telepМteni a linuxconf RPM-et az urpmi-vel."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Nem tudom telepМteni a bind RPM-et az urpmi-vel."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Nem tudom telepМteni a caching-nameserver RPM-et az urpmi-vel."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "GratulАlok!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
-"Ezt a szintet csak kЖrЭltekintИssel hasznАld. EgyszerШbben tudod Аltala a \n"
+"Ezt a szintet csak kЖrЭltekintИssel hasznАld. EgyszerШbben tudod Аltala a\n"
"rendszert hasznАlni, de Мgy az sebezhetУbb is lesz: ne vАlaszd ezt a "
-"szintet, \n"
+"szintet,\n"
"ha a gИp hАlСzatba van kЖtve, vagy az Internethez csatlakozik. A hozzАfИrИs\n"
"nem jelszС Аltal vИdett."
@@ -4749,7 +6198,7 @@ msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-"A jelszavakat bekapcsoltam, de ez a konfigurАciС mИg mindig nem ajАnlott\n"
+"A jelszavakat bekapcsoltam, de ez a konfigurАciС mИg mindМg nem ajАnlott\n"
"hАlСzatra kapcsolСdС gИp esetИn."
#: ../../standalone/draksec_.c:32
@@ -4795,23 +6244,36 @@ msgstr "BiztonsАgi szint beАllМtАsa"
msgid "Choose the tool you want to use"
msgstr "VАlaszd ki az eszkЖzt, amit hasznАlni szeretnИl"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Milyen billentyШzetkiosztАst hasznАlsz?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "FelbontАs megvАltoztatАsa"
+
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"CserИld ki a CD-t a meghajtСban!\n"
+"\n"
+"Tedd be a(z) \"%s\" feliratЗ lemezt, Иs nyomd meg az \"Ok\" gombot.\n"
+"Ha nincs ilyen lemezed, nyomd meg a \"MИgsem\" gombot, Мgy errУl a CD-rУl\n"
+"nem tЖrtИnik telepМtИs."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Milyen tМpusЗ egered van?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "nem talАltam serial_usb -t\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "EmulАljam a harmadik gombot?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Melyik soros porthoz csatlakozik az egered?"
@@ -4859,15 +6321,15 @@ msgstr "TelepМtett csomagok"
#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
-msgstr "ElИrhetУ csomagok"
+msgstr "HozzАfИrhetУ csomagok"
#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
-msgstr "Csak leveleket mutat"
+msgstr "Csak leveleket(?) mutat"
#: ../../standalone/rpmdrake_.c:67
msgid "Expand all"
-msgstr "Mindent lenyit"
+msgstr "Mindent kinyit"
#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
@@ -4879,7 +6341,7 @@ msgstr "BeАllМtАsok"
#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr "Add meg a csomagok elИrhetУsИgИt"
+msgstr "Add meg a csomagok helyИt"
#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
@@ -4962,7 +6424,7 @@ msgid ""
"rpmdrake is currently in ``low memory'' mode.\n"
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
-"Az rpmdrake jelenleg ``kevИs memСria'' ЭzemmСdban mШkЖdik.\n"
+"Az rpmdrake jelenleg \"kevИs memСria\" ЭzemmСdban mШkЖdik.\n"
"зjraindМtom, hogy a keresИs mШkЖdjЖn"
#: ../../standalone/rpmdrake_.c:253
@@ -4975,7 +6437,7 @@ msgstr "Mit keresel?"
#: ../../standalone/rpmdrake_.c:289
msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Adj meg egy nevet (pl.: `extra', `commercial')"
+msgstr "Adj meg egy nevet (pl.: \"extra\", \"commercial\")"
#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
@@ -5018,11 +6480,822 @@ msgstr "%s bejegyzИs eltАvolМtАsa"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves"
-msgstr "Levelek keresИse"
+msgstr "Levelek(?) keresИse"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
-msgstr "A levelek keresИse egy kis idУbe telik"
+msgstr "A levelek(?) keresИse egy kis idУbe telik"
+
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Internet"
+
+msgid "Internet"
+msgstr "Internet"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Iroda"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "MultimИdia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "MultimИdia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "DokumentАciС"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#, fuzzy
+#~ msgid "Choose the size you want to install"
+#~ msgstr "VАlaszd ki a telepМtendУ csomagokat"
+
+#~ msgid "Total size: "
+#~ msgstr "жsszmИret: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "A hАlСzat ЗjrakonfigurАlАsa"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "A szАmМtСgИp nem АllМthatС be Internet Kapcsolat MegosztАsАra.\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Minden be lett АllМtva!\n"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Kapcsolat az Internethez normАl modemmel"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Internet kapcsolat ISDN hasznАlatАval"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Kapcsolat az Internethez DSL (ADSL)"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Internet kapcsolat kАbelen keresztЭl"
+
+#~ msgid "Germany"
+#~ msgstr "NИmet"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "NИmet (1TR6)"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "Mit szeretnИl tenni?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "TelepМtИs/HelyreАllМtАs"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "HelyreАllМtАs"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Milyen partМciС tМpust szeretnИl?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "VАlaszd a \"TelepМtИs\"-t, ha nincs korАbbi Linux verziС installАlva,\n"
+#~ "vagy ha tЖbb kЭlЖnbЖzУ disztribЗciСt vagy verziСt szeretnИl hasznАlni.\n"
+#~ "\n"
+#~ "\n"
+#~ "VАlaszd a \"HelyreАllМtАs\"-t, ha van mАr egy Mandrake Linux rendszered\n"
+#~ "telepМtve, Иs azt kМvАnod valami hiba utАn rendbehozni.\n"
+#~ "\n"
+#~ "\n"
+#~ "VАlassz:\n"
+#~ "\n"
+#~ " - AjАnlott: Ha mИg sohasem telepМtettИl Linuxot, vАlaszd ezt az opciСt.\n"
+#~ "\n"
+#~ " - Egyedi: Ha mАr jСl ismered a GNU/Linuxot, kivАlaszthatod, \n"
+#~ " hogy milyen cИlra szАnod a rendszert. A rИszleteket lАsd lentebb.\n"
+#~ "\n"
+#~ " - HaladС: Ez azt feltИtelezi, hogy szakИrtУje vagy a GNU/Linux\n"
+#~ " rendszereknek, Иs teljesen egyedi telepМtИst szeretnИl vИgezni.\n"
+#~ " HasonlСan, mint az \"Egyedi\" opciСnАl, megadhatod, hogy milyen cИlra\n"
+#~ " szАnod a rendszert, de kИrlek CSAK AKKOR VаLASZD EZT, HA TUDOD, HOGY\n"
+#~ " MIT TESZEL!\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "Most megadhatod, hogy melyik partМciСkra telepЭljЖn a Linux-Mandrake,\n"
+#~ "ha mАr lИteznek a partМciСk (egy rИgebbi LinuxbСl, vagy ha mАr lИtrehoztad\n"
+#~ "Уket valamilyen mАsik partМcionАlС programmal). Ha mИg nincsenek\n"
+#~ "partМciСid, itt az ideje, hogy lИtrehozd Уket. Ez azt jelenti, hogy a\n"
+#~ "fizikai merevlemezt kisebb logikai rИszekre kell osztanod.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha Зj partМciСkat kell lИtrehoznod, hasznАld az \"Automatikus allokАlАs\"-t\n"
+#~ "Иs a DrakX lИtrehozza majd Уket. A megfelelУ merevlemez kivАlasztАsa a\n"
+#~ "kЖvetkezУk valamelyikИre valС kattintАssal lehetsИges: \"hda\" (elsУ IDE\n"
+#~ "lemez), \"hdb\" (mАsodik IDE lemez), \"sda\" (elsУ SCSI lemez), stb.\n"
+#~ "\n"
+#~ "\n"
+#~ "KИt lИnyeges partМciС a root partМciС (/), ami a fАjlrendszer kЖnyvtАr-\n"
+#~ "hierarchiАjАnak kiindulСpontja, Иs a /boot, ami a rendszer indulАsАhoz\n"
+#~ "(boot-olАsАhoz) szЭksИges fАjlokat tartalmazza.\n"
+#~ "\n"
+#~ "\n"
+#~ "Mivel a partМcionАlАs hatАsai maradandСak Иs visszafordМthatatlanok, ezИrt\n"
+#~ "a kevИsbИ tapasztalt felhasznАlСk АltalАban tartanak ettУl a mШvelettУl.\n"
+#~ "A DiskDrake egyszerШsМti a mШveletet annak ИrdekИben, hogy ez ne legyen\n"
+#~ "Мgy. SzАnj rА egy kis idУt Иs olvasd el a dokumentАciСt, mielУtt\n"
+#~ "hozzАfognАl.\n"
+#~ "\n"
+#~ "\n"
+#~ "ElИrhetsz minden opciСt a billentyШzet segМtsИgИvel is: a <TAB> Иs a\n"
+#~ "Fel/Le billentyШkkel vАlthatsz a partМciСk kЖzЖtt. Ha kivАlasztottАl egy\n"
+#~ "partМciСt, a kЖvetkezУ kombinАciСkat hasznАlhatod:\n"
+#~ "\n"
+#~ "- Ctrl-C: Зj partМciС lИtrehozАsa (amikor Эres partМciС van kivАlasztva)\n"
+#~ "\n"
+#~ "- Ctrl-D: lИtezУ partМciС tЖrlИse\n"
+#~ "\n"
+#~ "- Ctrl-M: csatolАsi pont beАllМtАsa\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Minden Зjonnan lИtrehozott partМciСt formАzni kell (a formАzАs azt\n"
+#~ "jelenti, hogy egy fАjlrendszert kell rА lИtrehozni). Itt az alkalom,\n"
+#~ "hogy esetleg ЗjraformАzz egyes, korАbbrСl megmaradt partМciСkat, hogy\n"
+#~ "a rajtuk levУ adatok tЖrlУdjenek.\n"
+#~ "MegjegyzИs: nem szЭksИges ЗjraformАzni a mАr lИtezУ partМciСkat, fУleg\n"
+#~ "abban az esetben, ha szЭksИged van a rИgi adatokra. Tipikusan ilyenek a\n"
+#~ "/home Иs a /usr/local fАjlrendszerek."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "A kivАlasztott csomagokat most telepМti a TelepМtУ. Ez a mШvelet nИhАny\n"
+#~ "percig eltarthat.\n"
+#~ "\n"
+#~ "Ha egy lИtezУ rendszert frissМtesz, a folyamat hosszabb idУt is igИnybe "
+#~ "vehet!"
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Ha a DrakX nem tudta meghatАrozni az egered tМpusАt, vagy csak ellenУrizni\n"
+#~ "szeretnИd a beАllМtАst, felajАnl egy listАt az ismert egИrtМpusokkal.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha egyetИrtesz a DrakX beАllМtАsaival, csak vАlaszd az 'Ok' gombot.\n"
+#~ "Ha nem, akkor vАlassz egy egeret a listАbСl, lehetУleg egy olyat, ami\n"
+#~ "kЖzel Аll az egered tМpusАhoz.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha az egered soros portra csatlakozik, meg kell mondanod, hogy melyikre."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Ez a rИsz arra hivatott, hogy segМtsen beАllМtani a lokАlis hАlСzatot\n"
+#~ "(LAN) vagy a modemet.\n"
+#~ "\n"
+#~ "VАlaszd a \"LokАlis hАlСzat (LAN)\"-t Иs a DrakX megprСbАlja megkeresni a\n"
+#~ "hАlСzati kАrtyАt a gИpedben. A PCI-os kАrtyАkat tЖbbnyire megtalАlja Иs\n"
+#~ "beАllМtja automatikusan. Ezzel ellentИtben, ha ISA-s kАrtyАd van, az\n"
+#~ "automatikus felismerИs nem fog mШkЖdni.\n"
+#~ "Ekkor kИzzel kell kivАlasztanod a megfelelУ driver-t\n"
+#~ "a megjelenУ listАbСl.\n"
+#~ "\n"
+#~ "Mint a SCSI kАrtyАnАl, hagyhatod, hogy a driver ismerje fel a hardvert,\n"
+#~ "de ha ez nem mШkЖdik, kИzzel kell opciСkat megadnod, amiket megtalАlsz\n"
+#~ "a hardver dokumentАciСjАban.\n"
+#~ "\n"
+#~ "Ha a Linux-Mandrake-et egy mАr hАlСzathoz kЖtЖtt gИpre telepМted, a\n"
+#~ "hАlСzat rendszergazdАja lАt el a szЭksИges informАciСkkal\n"
+#~ "(IP-cМm, hАlСzati maszk Иs gИpnИv).\n"
+#~ "\n"
+#~ "Ha otthon hozol lИtre egy sajАt hАlСzatot, Neked kell a cМmeket\n"
+#~ "kivАlasztanod.\n"
+#~ "\n"
+#~ "VАlaszd a \"CsatlakozАs modemmel\"-t Иs a DrakX megprСbАlja felismerni a\n"
+#~ "modemedet. Ha nem sikerЭlne neki, add meg a soros portot, amihez a\n"
+#~ "modem csatlakozik."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "A Linux sokfИle nyomtatСt tud kezelni. A tМpustСl fЭggУen mАs Иs mАs a\n"
+#~ "beАllМtАs menete. Nem szabad figyelmen kМvЭl hagyni, hogy a print spooler\n"
+#~ "az \"lp\" nevet hasznАlja az alapИrtelmezett nyomtatС nevekИnt, Мgy lИtezni\n"
+#~ "kell egy ilyen nevШ nyomtatСnak. Adhatsz viszont tЖbb nevet is egy\n"
+#~ "nyomtatСnak, ezeket a \"|\" jellel kell elvАlasztani egymАstСl. TehАt ha\n"
+#~ "valami Иrtelmesebb nevet szeretnИl adni a nyomtatСdnak, egyszerШen Мrd\n"
+#~ "azt az elsУ helyre, pИldАul: \"Az Иn nyomtatСm|lp\".\n"
+#~ "Az a nyomtatС lesz az alapИrtelmezett, amelyiknek a nevei kЖzt szerepel\n"
+#~ "az \"lp\".\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha a nyomtatСd a gИphez van kЖtve (a nyomtatС-porton), vАlaszd a\n"
+#~ "\"LokАlis nyomtatС\"-t. Ekkor meg kell mondanod a telepМtУnek, hogy\n"
+#~ "melyik porton van a nyomtatС, valamint ki kell vАlasztanod a megfelelУ\n"
+#~ "filtert (szШrУt).\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha egy tАvoli UNIX gИpre csatlakoztatott nyomtatСt szeretnИl elИrni,\n"
+#~ "vАlaszd a \"TАvoli lpd\"-t. Ahhoz, hogy ez mШkЖdjЖn, nem kell\n"
+#~ "felhasznАlСi nevet vagy jelszСt megadni, de ismerni kell a tАvoli\n"
+#~ "gИpen lИvУ nyomtatСsor pontos nevИt.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha egy SMB nyomtatСt kМvАnsz elИrni (ez azt jelenti, hogy a nyomtatС egy\n"
+#~ "tАvoli Windows 9x/NT gИphez van kЖtve), meg kell adnod a tАvoli gИp SMB\n"
+#~ "nevИt (ami nem biztos hogy megegyezik a TCP/IP-n hasznАlt gИpnИvvel),\n"
+#~ "tovАbbА valСszМnШleg az IP-cМmИt, valamint egy felhasznАlСi nevet, a\n"
+#~ "munkacsoport nevИt Иs egy jelszСt, illetve termИszetesen a nyomtatС\n"
+#~ "nevИt is. Ugyanez igaz NetWare nyomtatС esetИn is, azzal a kivИtellel,\n"
+#~ "hogy nem kell munkacsoportot megadni."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "KИrlek vАlaszolj \"Igen\"-el! Ha pИldАul kИsУbb telepМted a Microsoft\n"
+#~ "Windows-t, az felЭlМrja a boot szektort. Ha ilyen esetben nincs boot\n"
+#~ "floppy-d, csak nehezen tudod ezutАn elindМtani a Linuxot!"
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Mozgasd a gЖrgУdet!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "VАltoztatАsok elvetИse?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "NyomtatС-kapcsolat"
+
+#~ msgid "Host name:"
+#~ msgstr "GИpnИv:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Milyen tМpusЗ egered van?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Automatikus felbontАsok"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Megkeresem a mШkЖdУkИpes felbontАsokat. Ezalatt a monitor villogni fog...\n"
+#~ "Ha ez zavar, nyugodtan kikapcsolhatod, csipogАssal jelzem, amikor befejeztem."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "MegprСbАlhatom megkeresni az elИrhetУ felbontАsokat (pl. 800x600).\n"
+#~ "Ez rossz esetben lefagyaszthatja a szАmМtСgИpet.\n"
+#~ "MegprСbАljam?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Nem talАltam ИrvИnyes videomСdot.\n"
+#~ "PrСbАld meg egy mАsik videokАrtya vagy monitor beАllМtАssal"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "FelbontАs automatikus keresИse"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB egИr"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB egИr (2 gomb)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB egИr (3 vagy tЖbb gomb)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB egИr"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB egИr (2 gomb)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB egИr (3 vagy tЖbb gomb)"
+
+#, fuzzy
+#~ msgid "Generic Mouse"
+#~ msgstr "аltalАnos egИr (PS/2)"
+
+#, fuzzy
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse (PS/2)"
+
+#, fuzzy
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus egИr"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus egИr"
+
+#, fuzzy
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech MouseMan egИr"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB egИr"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB egИr (3 vagy tЖbb gomb)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A vagy magasabb (soros)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (soros)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (soros)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (soros)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "аltalАnos egИr (soros)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft-kompatМbilis (soros)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "аltalАnos 3 gombos egИr (soros)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (PS/2)"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "NFS felcsatolАs sikertelen"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "TitkosМtАs"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "SzeretnИd beАllМtani a lokАlis hАlСzatot a rendszeren?"
+
+#~ msgid "Show less"
+#~ msgstr "Mutass kevesebbet"
+
+#~ msgid "Show more"
+#~ msgstr "Mutass tЖbbet"
+
+#~ msgid "curly"
+#~ msgstr "gЖndЖr"
+
+#~ msgid "default"
+#~ msgstr "alapИrtelmezett (default)"
+
+#~ msgid "tie"
+#~ msgstr "nyakkendУs"
+
+#~ msgid "brunette"
+#~ msgstr "barna"
+
+#~ msgid "girl"
+#~ msgstr "lАny"
+
+#~ msgid "woman-blond"
+#~ msgstr "szУke nУ"
+
+#~ msgid "automagic"
+#~ msgstr "automatikus"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Milyen billentyШzetkiosztАst hasznАlsz?"
+
+#~ msgid "Normal"
+#~ msgstr "SzokАsos"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "PrСbАljam megkeresni a PCMCIA kАrtyАkat?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "%s eszkЖzЖk keresИse?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "A modem beАllМtАsai"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "SzeretnИl beАllМtani modemes csatlakozАst a rendszeren?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "PCI eszkЖzЖk keresИse?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Root partМciС keresИse."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Ez nem egy root partМciС, vАlassz mАsikat."
+
+#~ msgid "No root partition found"
+#~ msgstr "Root partМciС nem talАlhatС"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Nem lehet broadcast-ot hasznАlni NIS tartomАny nИlkЭl"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "VАlaszd ki a root partМciСt."
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "Nincs egyetlen Windows-os partМciСd sem!"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Nincs elИg hely az Lnx4win szАmАra"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automatikus"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# '\202' is 'И' (eacute) in cp437 encoding
+# '\242' is 'С' (oacute) in cp437 encoding
+# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
+# '\201' is 'Э' (udiaeresis) in cp437 encoding
+# '\240' is 'А' (aacute) in cp437 encoding
+# '\241' is 'М' (iacute) in cp437 encoding
+# there is no 'У' (odoubleacute) in cp437 using o" ...
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "L┌gy │dv■z■lve a LILO bootmanager-ben!\n"
+#~ "\n"
+#~ "A lehets┌ges alternat║v═k megtekint┌s┌hez nyomj egy <TAB>-ot.\n"
+#~ "\n"
+#~ "Egy adott oper═ci╒s rendszer bet■lt┌s┌hez ║rd be a megfelelo\" image nev┌t "
+#~ "┌s\n"
+#~ "nyomj egy <ENTER>-t, vagy v═rj %d m═sodpercet ┌s az alap┌rtelmezett "
+#~ "elindul.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "A SILO fУbb opciСi"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Itt vannak a SILO jelenlegi bejegyzИsei.\n"
+#~ "Adhatsz a meglИvУkhЖz Зjakat, vagy mСdosМthatod a meglИvУket."
+
+#~ msgid "This label is already in use"
+#~ msgstr "MАr van ilyen cМmke"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "A SILO telepМtИse nem sikerЭlt. A hiba a kЖvetkezУ:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "A DrakX elУszЖr ellenУrzi, hogy talАl-e egy vagy tЖbb PCI-os SCSI vezИrlУt.\n"
+#~ "Ha talАl ilyet (ilyeneket) Иs megtalАlja a hozzА (hozzАjuk) tartozС\n"
+#~ "driver-t (driver-eket), automatikusan beilleszti azt (azokat).\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha a SCSI vezИrlУ kАrtyАd ISA-s, vagy olyan PCI-os, amelyrУl a DrakX nem\n"
+#~ "tudja eldЖnteni, hogy melyik driver-t hasznАlja hozzА, vagy ha nincs is\n"
+#~ "SCSI kАrtyАd, a DrakX megkИrdi, hogy van-e kАrtyАd. Ha nincsen, vАlaszolj\n"
+#~ "\"Nem\"-mel. Ha van egy vagy tЖbb SCSI kАrtyАd, vАlaszolj \"Igen\"-nel.\n"
+#~ "Ez esetben megjelenik egy lista a driver-ekkel, ebbУl vАlaszthatod ki\n"
+#~ "a megfelelУt.\n"
+#~ "\n"
+#~ "\n"
+#~ "A driver kivАlasztАsa utАn a DrakX megkИrdezi, szeretnИl-e opciСkat megadni\n"
+#~ "hozzА. ElsУ kЖrben cИlszerШ a driver-re hagyni a hardver meghatАrozАsАt,\n"
+#~ "АltalАban mШkЖdni szokott.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ha mИgse mШkЖdik, akkor hasznАld a hardverrel jАrС dokumentАciСt, \n"
+#~ "vagy nИzd meg, hogy a Windows milyennek ismeri fel a kАrtyАt (persze, ha \n"
+#~ "van Windows a gИpeden), ahogyan ezt a TelepМtИsi зtmutatС Мrja. Ezeket az \n"
+#~ "opciСkat kell megadnod a driver-nek."
+
+#~ msgid "Shutting down"
+#~ msgstr "Rendszer leАllМtАsa"
#~ msgid "useless"
#~ msgstr "haszontalan"
@@ -5030,9 +7303,6 @@ msgstr "A levelek keresИse egy kis idУbe telik"
#~ msgid "garbage"
#~ msgstr "szemИt"
-#~ msgid "Recommended"
-#~ msgstr "Javasolt"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5144,9 +7414,6 @@ msgstr "A levelek keresИse egy kis idУbe telik"
#~ msgid "Which language do you want?"
#~ msgstr "Melyik nyelvet vАlasztod?"
-#~ msgid "Which usage do you want?"
-#~ msgstr "Melyiket vАlasztod?"
-
#~ msgid ""
#~ "You need %dMB for a full install of the groups you selected.\n"
#~ "You can go on anyway, but be warned that you won't get all packages"
@@ -5164,9 +7431,6 @@ msgstr "A levelek keresИse egy kis idУbe telik"
#~ msgid "Downloading cryptographic packages"
#~ msgstr "A titkosМtС csomagok letЖltИse"
-#~ msgid "Local Printer Options"
-#~ msgstr "Helyi nyomtatС beАllМtАsai"
-
#~ msgid "server"
#~ msgstr "szerver"
@@ -5246,9 +7510,6 @@ msgstr "A levelek keresИse egy kis idУbe telik"
#~ msgid "Installation CD Nr 1"
#~ msgstr "TelepМtУ CD Nr 1"
-#~ msgid "Dialup with modem"
-#~ msgstr "CsatlakozАs modemmel"
-
#~ msgid "Local LAN"
#~ msgstr "LokАlis hАlСzat (LAN)"
@@ -5263,3 +7524,111 @@ msgstr "A levelek keresИse egy kis idУbe telik"
#~ msgid "What usage do you want?"
#~ msgstr "Mire szeretnИd hasznАlni?"
+
+#~ msgid "Logitech MouseMan/FirstMouse (ps/2)"
+#~ msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+
+#~ msgid "Genius NetMouse Pro (PS/2)"
+#~ msgstr "Genius NetMouse Pro (PS/2)"
+
+#~ msgid "Microsoft IntelliMouse (serial)"
+#~ msgstr "Microsoft IntelliMouse (soros)"
+
+#~ msgid "Logitech MouseMan/FirstMouse (serial)"
+#~ msgstr "Logitech MouseMan/FirstMouse (soros)"
+
+#, fuzzy
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "A DrakX lИtrehozza az X konfigurАciСs fАjlt az XFree 3.3-as Иs 4.0-s\n"
+#~ "verziСjАhoz is. AlapИrtelmezИsben a 3.3-as szervert hasznАljuk, mert tЖbb\n"
+#~ "videokАrtyАt tАmogat.\n"
+#~ "\n"
+#~ "Ki akarod prСbАlni a 4-es XFree-t?"
+
+#, fuzzy
+#~ msgid "Configure LAN"
+#~ msgstr "Az X beАllМtАsa"
+
+#, fuzzy
+#~ msgid "End configuration"
+#~ msgstr "BeАllМtАsok"
+
+#, fuzzy
+#~ msgid "Do not set up networking"
+#~ msgstr "HАlСzat beАllМtАsa"
+
+#, fuzzy
+#~ msgid "URI for Local printer"
+#~ msgstr "Helyi nyomtatС"
+
+#, fuzzy
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Helyi nyomtatС eszkЖz"
+
+#, fuzzy
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?\n"
+#~ msgstr ""
+#~ "Melyik eszkЖzre van a nyomtatСd csatlakoztatva\n"
+#~ "(megjegyzИs: /dev/lp0 megfelel az LPT1:-nek)?\n"
+
+#, fuzzy
+#~ msgid "Network:"
+#~ msgstr "HАlСzati maszk:"
+
+#, fuzzy
+#~ msgid "Everything configured!"
+#~ msgstr "beАllМtАsok beolvasАsa"
+
+#, fuzzy
+#~ msgid "Configure my card"
+#~ msgstr "Az X beАllМtАsa"
+
+#, fuzzy
+#~ msgid "pptp alcatel"
+#~ msgstr "Automatikus helyfoglalАs"
+
+#, fuzzy
+#~ msgid "Small(%dMB)"
+#~ msgstr "(%d MB)"
+
+#, fuzzy
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "SzeretnИd beАllМtani a lokАlis hАlСzatot a rendszeren?"
+
+#, fuzzy
+#~ msgid "Autologin at startup"
+#~ msgstr "Grafikus bejelentkezИs"
+
+#, fuzzy
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Add meg az Зj mИretet"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#, fuzzy
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "LИgy ЭdvЖzЖlve a SILO bootmanager-ben!\n"
+#~ "\n"
+#~ "A lehetsИges alternatМvАk megtekintИsИhez nyomj egy <TAB>-ot.\n"
+#~ "\n"
+#~ "Egy adott operАciСs rendszer betЖltИsИhez Мrd be a megfelelУ image nevИt\n"
+#~ "Иs nyomj egy <ENTER>-t, vagy vАrj %d mАsodpercet Иs az alapИrtelmezett "
+#~ "elindul.\n"
+#~ "\n"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 79c00606d..9e62bef23 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -8,51 +8,99 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-09 16:48+0700\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-07-04 14:40+0700\n"
"Last-Translator: Mohammad DAMT <mdamt@cdl2000.com>\n"
"Language-Team: Indonesian <i18n@i18n.linux.or.id>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Generik"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Card Grafik"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Pilih kartu grafis"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Pilih server X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "Server X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Server XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Tipe entri mana yang hendak ditambahkan"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Konfigurasi Instalasi akhir"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Pilih memori kartu grafis Anda"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Pilih opsi untk server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Pilih jenis monitor anda"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -74,39 +122,40 @@ msgstr ""
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum saja."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor tidak dikonfigurasi"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Kartu grafis belum dikonfigurasi"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Resolusi belum ditentukan"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Anda ingin test konfigurasi ini?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Awas: testing ini berbahaya untuk card grafik"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Test konfigurasi"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -114,184 +163,168 @@ msgstr ""
"\n"
"coba ubah beberapa parameter"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Ada error nih:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Cabut dalam %d detik"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Apa sudah sesuai settingnya?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Ada kesalahan, coba ubah beberapa parameter"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Resolusi otomatis"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Untuk mencari resolusi lain, sekarang gue mau coba-coba.\n"
-"Screennya akan berkedip...\n"
-"Anda bisa mematikannya kalau mau, dan akan bunyi tiit kalau selesai"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Pilih resolusi dan kedalaman warna"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Card Grafik: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Server XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Tunjukan seluruhnya"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Resolusi"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Saya bisa cari resolusi lain (misal: 800x600).\n"
-"Tetapi kadangkala bisa bikin mesin hengki (baca: hang)\n"
-"Mau coba?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Tidak ada mode lain\n"
-"COba gunakan video card lain atau ganti monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout Keyboard: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Jenis Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Card Grafik: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memori Grafik: %s KB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "Pilihan kedalaman warna"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Resolusi"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Server XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Siap-siap konfigurasikan X "
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Ubah Monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Ubah kartu grafis"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Ubah Parameter Server"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Ubah Resolusi"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Pencarian resolusi otomatis"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Lihat info"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Test lagi"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Keluar"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Apa yang akan anda mau?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Lupakan saja perubahan yang engkau perbuat?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Biarkan konfigurasi IP sekarang"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silahkan masuk lagi ke %s untuk mengaktifkan perubahan"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silahkan log out dan tekan Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X saat startup"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -299,227 +332,225 @@ msgstr ""
"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
"Kamu mau fasilitas ini ?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
+"Kamu mau fasilitas ini ?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Pilih ukuran baru"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Pilih tool yang hendak digunakan"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 warna (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 ribu warna (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 ribu warna (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 juta warna (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milyar warna (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kb"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kb"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 mb atau lebih"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "standard VGA, 640x480 pada 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 pada 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA, 1024x768 pada 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "Si Kribo"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "Default"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "dasi"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "Si Brunet"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "cewek"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "gadis pirang"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "IP otomatis"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Sektor pertama di partisi boot"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama di drive (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "Instalasi LILO/grub"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Instalasi SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Bootloader akan diinstall di mana?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Instalasi LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Tidak ada"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Bootloader mana yang hendak digunakan"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Instalasi Bootloader"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Device boot"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (tidak bisa dipakai pada BIOS kuno)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Delay sebelum boot ke image default"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Mode video"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Delay sebelum boot ke image default"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Password (lagi)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Batasi parameter command line"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "batasi"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa password"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Silahkan ulangi"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Password tidak sama"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -527,226 +558,416 @@ msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Tipe entri mana yang hendak ditambahkan"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "OS Lain (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "OS Lain (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Tipe entri mana yang hendak ditambahkan"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Tidak aman"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Hapus entri"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Label tidak boleh kosong"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Ketemu interface %s %s"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Anda punya lagi?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Punya %s interface?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Tidak"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ya"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Lihat info hardware"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Menginstall driver untuk card %s %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(module %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Driver %s mana yang hendak saya coba?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
+"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
+"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
+"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
+"jadi hengki (baca: hang), tapi biasanya sih nggak ngerusak hardwarenya."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Probe otomatis"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Tuliskan optionnya"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Sekarang Anda boleh berikan parameter untuk module %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Silahkan berikan parameter untuk modul %s ini.\n"
+"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
+"Misalnya, ``io=0x300 irq=8''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Pilihan Module:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Module %s gagal diload.\n"
+"Mau coba lagi dengan parameter yang lain?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Selamat datang di Sang Pemilih Sistem Operasi, %s!\n"
+"\n"
+"Untuk melihat daftar pilihan, tekan <TAB>.\n"
+"\n"
+"Untuk meload salah satu, tulis namanya, dan tekan <ENTER> atau tunggu %d "
+"detik untuk boot ke default.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "perintah sebelum booting, atau 'c' untuk command line."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "Waah /boot nggak cukup spacenya nih"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start Menu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Cabut dalam %d detik"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Buat"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Unmount"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Hapus"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Format"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Ubah ukuran"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Posisi mount"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Tulis /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Berubah ke modus pakar"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Berubah ke modus normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Baca dari file"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Simpan di file"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Pulihkan dari floppy"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Simpan di floppy"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Hapus semua"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Format semua"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Pengalokasian otomatis"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Aku tak bisa menambah partisi lagi"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi lagi, hapus satu agar dapat membuat partisiextended"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Selamatkan dulu tabel partisi"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Nggak Jadi (undo)"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Tulis tabel partisi"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Reload"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Kosong"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Lainnya"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Kosong"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Lainnya"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tipe filesystem:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detil"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -758,17 +979,17 @@ msgstr ""
"Saya sarankan untuk meresize partisi ini\n"
"(click di situ, dan pilih \"Ubah ukuran\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Mohon untuk membackup data Anda dulu"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Baca dengan seksama!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -778,77 +999,77 @@ msgstr ""
"deh)\n"
"di awal disk"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Hati-hati nih: operasi ini sangat berbuahayyya"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Ada Kesalahan"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Posisi mount: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Device: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tipe: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Ukuran: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Dari silinder %d sampai silinder %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Telah diformat\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Belum diformat\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Telah di-mount\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "File loopback: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -856,79 +1077,79 @@ msgstr ""
"Partisi di-boot secara default\n"
" (untuk MS-DOS boot, bukan untuk lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Silahkan pilih partisinya"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Ukuran: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "pada bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktif"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Hapus dari RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Ganti RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "digunakan untuk loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Pilih maunya apa"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -939,7 +1160,7 @@ msgstr ""
"Kalau Anda pakai LILO dan nggak jalan, atau Anda nggak mau LILO dan nggak "
"mau /boot juga"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -950,70 +1171,70 @@ msgstr ""
"dan anda tidak memiliki partisi /boot. Apabila anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"Anda memilih partisi RAID software sebagai root (/).\n"
"Sekarang bootloader nggak ada yang bisa handel tanpa partisi /boot.\n"
-"Jadi hati-hati yah untuk tambahkan partisi /boot kalau mau pakai liloatawa "
-"grub"
+"Jadi hati-hati yah untuk tambahkan partisi /boot"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Cuek aja?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Merubah tipe partisi"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Tipe partisi yang anda diinginkan?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Bahasa apa yang anda inginkan"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Nggak bisa pakai ReiserFS buat partisi yang ukurannya lebih kecil dari 32 MB "
"nih"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Device loopback %s akan di mount ke mana?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Mount device %s akan di mount ke mana?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1021,138 +1242,143 @@ msgstr ""
"Nggak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
"loopback. Hapus dulu loopbacknya kalau mau begitu."
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "sedang memformat"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Setelah melakukan format semua partisi,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "seluruh data dalam partisi-partisi ini akan hilang"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Pindah"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Pindah"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Memindahkan partisi..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Sedang menghitung bound filesystem fat"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Sedang merubah ukuran"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Tipe partisi yang anda diinginkan?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "semua data pada partisi ini sebaiknya dibackup dulu"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Pilih ukuran baru"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Membuat partisi baru"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Sektor awal: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tipe filesystem: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Seting:"
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Partisi ini nggak bisa dipakai sebagai loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Nama file loopback: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Pilih file"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1160,11 +1386,11 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Cuek saja?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Awas"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1172,79 +1398,79 @@ msgstr ""
"Maukkan disket di drive\n"
"semua data pada disket ini akan hilang"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "device"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "level"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "ukuran chunk"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "baru"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "gagal mount nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "gagal melakukan mount: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melakukan unmount %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan mount poin %s sudah ada\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Mount melingkar %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Kamu harus punya filesystem sungguhan (ext2 atau reiserfs) untuk memount "
"ini\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1252,74 +1478,81 @@ msgstr ""
"Error - tidak ada device yang valid untuk membuat filesystem baru.Periksa "
"kembali hardware untuk mencari penyebabnya"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Kok belum punya partisi ?"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Pilihlan bahasa yang ingin Anda gunakan untuk instalasi dan sistem."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Pilih layout keyboard yg dipakai dari daftar di atas"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Pilih layout keyboard yg dipakai dari daftar di atas"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Pilihlah \"Instal\" jika Anda belum pernah menginstal Linux di komputer\n"
-"ini atawa ingin menginstall ulang Linux di mesin ini.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Pilih \"Upgrade\" kalau ingin mengupdate sistem Mandrake 5.1 (Venice),\n"
-"5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold 2000 atau 7.0 "
-"(Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Pilih:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Otomatis (disarankan): Bila Anda belum pernah install Linux.\n"
"\n"
-" - Customized: Bila Anda familiar dengan Linux, Anda akan dapat\n"
-" memilih penggunaan sistem ini, yaitu normal, development, atau server.\n"
-" Pilih \"Normal\" untuk instalasi secara umum yang biasanya. Atau pilih\n"
-" \"Development\" untuk membuat software dengan Linux Anda, atau pilih\n"
-" \"Server\" bila hendak menginstall server serbaguna (mail, print, dsb)\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Ahli : Bila Anda sangat dekat dengan GNU/Linux dan ingin\n"
-" menginstall Linux sesuka hati, ini adalah kelas instalasi yang pas\n"
-" untuk kamu, dan kamu bisa memilih penggunaan sistem ini sebagaimana\n"
-" pada kelas \"Customized\". JANGAN COBA-COBA PAKAI MODUS INI KALAO\n"
-" belom cukup makan asam garam di dunia PERLINUXAN\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1327,12 +1560,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Pilih:\n"
"\n"
@@ -1347,33 +1581,31 @@ msgstr ""
" menginstall Linux sesuka hati, ini adalah kelas instalasi yang pas\n"
" untuk kamu, dan kamu bisa memilih penggunaan sistem ini sebagaimana\n"
" pada kelas \"Customized\". JANGAN COBA-COBA PAKAI MODUS INI KALAO\n"
-" belom cukup makan asam garam di dunia PERLINUXAN\n"
+" belom cukup makan asam garam di dunia PERLINUXAN"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"Berikut adalah pilihan penggunaan mesin Anda yang telah aku sediakankarena "
"dikau tadi memilih kelas instalasi \"Custom\" atau \"Pakar\":\n"
@@ -1396,149 +1628,367 @@ msgstr ""
" Karena itu jangan mengharapken saya menyediakan rupa-rupa\n"
" software yang ngejreng (KDE,GNOME...) di sini.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX akan coba mencari adapter SCSI PCI. Kalau ketemu dan punya\n"
-"drivernya, maka gue akan menggunakannya otomatis.\n"
+"DrakX akan coba cari adapter SCSI PCI.\n"
+"Kalau DrakX menemukan adapter SCSI dan punya drivernya, maka\n"
+"drivernya akan secara otomatis diinstalkan.\n"
+"\n"
+"Bila Anda tidak punya adapter SCSI, SCSI ISA, atau SCSI PCI yang\n"
+"DrakX nggak punya drivernya, maka DrakX akan konfirmasi lagi.\n"
+"Bila memang nggak ada adapternya, klik aja 'Nggak'. Bila klik 'Ya'\n"
+"maka daftar driver akan ditampilkan, dan ente silahkan pilih.\n"
+"\n"
+"\n"
+"Kalau Anda ingin menentukan sendiri adapternya, DrakX akan \n"
+"menanyakan apakah ada option lagi. Anda harus perbolehkan DrakX\n"
+"mendeteksi hardwarenya. Biasanya sih bisa kalau begini.\n"
+"\n"
+"Kalau Anda tidak mau, Anda bisa coba kasih optionnya\n"
+"Coba baca Petunjuk Instalasi untuk trik mendapatkan informasi\n"
+"ini dari Windows (itu juga kalau Anda install yaaa),\n"
+"dari dokumentasi hardware, atau dari website pabriknya\n"
+"(kalau ada akses ke Internet_."
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Kalau adapter SCSI milikmu adalah ISA atau PCI tapi DrakX tidak\n"
-"tahu drivernya, atawa kalau emang ente nggak punya adapter SCSI\n"
-"Anda akan saya tanya lagi apakah benar punya SCSI atau nggak.\n"
-"Kalau nggak jawab \"Tidak\". Kalau punya, jawab \"Ya\" dong.\n"
-"Nanti akan muncul daftar driver, trus pilih deh.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"Habis itu, DrakX akan tanya lagi apakah akan memberikan parameter\n"
-"tambahan. Pertama kali, biarkan drivernya cari parameter sendiri\n"
-"biasanya sih bisa langsung tokcer.\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"Kalau gagal, jangan lupa bahwa Anda harus tahu informasi hardwarenya\n"
-"cari di manualnya atau bahkan dari Windows (itu juga kalau ente punya)\n"
-"Nah informasi ini yang harus kamu isikan nantinya."
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Sekarang, kamu bisa memilih partisi yang hendak digunakan untuk tempat\n"
-"menginstall sistem Linux-Mandrake pada partisi yang sudah dibuat sebelum\n"
-"nya (dengan Linux atau program partisi lain). Bila belum ada partisi\n"
-"silahkan buat. Pembuatan partisi adalah membagi hard disk komputer menjadi\n"
-"beberapa area untuk dikapling.\n"
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"Bila Anda telah membuat partisi baru, gunakan \"Alokasi otomatis\" untuk\n"
-"secara otomatis membuatkan partisi Linux. Anda bisa pilih drive yang\n"
-"hendak dipartisi dengan mengklik \"hda\" untuk drive pertama IDE,\n"
-"\"hdb\" untuk drive kedua atau \"sda\" untuk drive SCSI pertama dst.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Ada dua partisi yang umum: partisi root (/), yang merupakan titik awal\n"
-"hirarki direktori filesystem, dan /boot, yang berisi file-file penting\n"
-"bagi sistem operasi untuk bekerja saat komputer dinyalakan.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"Karena biasanya proses ini tidak dapat dikembalikan ke asal, maka proses\n"
-"ini sangat menjengkelkan dan membikin stress bagi user yang belum berpe\n"
-"ngalaman. DiskDrake menyederhanakan proses ini sehingga sekarang tidak\n"
-"perlu jengkel dan stress lagi. Silahkan baca dokumentasi dan belajar\n"
-"dulu sebelum memulai.\n"
"\n"
-"Anda bisa pakai macam-macam tombol di keyboard: bergerak di partisi\n"
-"pakai Tab/panah atas/bawah. Dan di partisi itu Anda bisa tekan:\n"
-" - Ctrl-c untuk buat partisi baru (pada partisi kosong)\n"
-" - Ctrl-d untuk hapus partisi\n"
-" - Ctrl-m untuk set titik mountnya\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Partisi sekarang harus diformat agar dapat digunakan oleh sistem.Kalau ANda\n"
-"mau, Anda bisa format partisi lama yang sudah ada kalau ingin menghapus\n"
-"habisisi datanya\n"
-"Oh ya, partisi lama tidak perlu diformat lho...apalagi kalau\n"
-"Anda masih butuh datanya (misalnya: /home dan /usr/local)."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"Sekarang kamu pilih dulu grup paket yang mau kamu install\n"
"atau yang mau diupgrade.\n"
@@ -1551,155 +2001,188 @@ msgstr ""
"pilih \"Pilih paket sendiri\"; kalau-kalau kamu pingin melihat \n"
"paket-paket yang ada (ada 1000an lebih lho...)"
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"Kalau kamu punya semua CD pada daftar di atas, tekan OK.\n"
"Kalau nggak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"Paket yang telah dipilih sedang diinstall. Proses ini makan waktu\n"
-"beberapa menit kecuali bila Anda sedang mengupgrade sistem, yang\n"
-"makan waktu lebih lama lagi, bahkan sebelum proses upgrade berlangsung."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Bila DrakX gagal menemukan mouse, atau bila Anda mau\n"
-"tahu apa saja yg telah dilakukannya, Anda akan diberikan daftar\n"
-"mouse di atas.\n"
-"\n"
-"\n"
-"Bila Anda setuju dgn setting DrakX, langsung saja ke section\n"
-"lain dgn mengkliknya pada menu di kiri. Atau, pilih tipe mouse\n"
-"di menu yang lebih pas dengan mouse Anda.\n"
-"\n"
-"\n"
-"Bila mousenya merupakan mouse serial, jangan lupa bilang DrakX\n"
-"port serialnya sekalian."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"Pilih port yang betul. Misalnya COM1 di Windows sama dengan ttyS0 di Linux."
+"Pilih port yang betul. Misalnya COM1 di Windows sama dengan ttyS0 di "
+"GNU/Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
-"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Bagian ini adalah untuk mengkonfigurasikan Local Area Network\n"
-"(LAN) atau Modem.\n"
-"\n"
-"Bila Anda jawab \"LAN Lokal\" sekarang, DrakX akan mencoba\n"
-"mencari adapter Ethernet di mesin ini. Adapter PCI biasanya akan\n"
-"mudah ditemukan dan diinit otomatis. Tapi kalau Anda punya ISA,\n"
-"deteksi otomatis tidak bisa dilakukan, dan Anda perlu pilih\n"
-"drivernya dari daftar yang akan muncul kemudian.\n"
-"\n"
-"\n"
-"Untuk adapter SCSI, drivernya bisa melakukan deteksi untuk \n"
-"adapter pertama kali, atau Anda perlu berikan parameter yang\n"
-"digunakan oleh drivernya, yang Anda bisa contek dari Control\n"
-"Panelnya Windows.\n"
-"\n"
-"\n"
-"Bila Anda menginstall sistem Linux-Mandrake di mesin yang merupakan\n"
-"bagian dari jaringan, Anda perlu data penting dari orang Network Anda\n"
-"berupa alamat IP, submask atau netmask Jaringan, dan hostname).\n"
-"Bila Anda melakukan konfigurasi jaringan privat di rumah misalnya, Anda\n"
-"perlu pilih alamatnya\n"
-"\n"
-"\n"
-"Pilih \"Dialup dengan modem\" untuk mengkonfigurasi koneksi \n"
-"ke Internet. DrakX akan mencari modem Anda, dan mengkonfigurasikannya\n"
-"Bila ia gagal mendeteksi modem, silahkan pilih serial port yang tepat\n"
-"tempat modem Anda disambungkan."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Anda bisa masukkan dialup sekarang. Bila Anda nggak yakin apa yang harus "
+"dimasukkan,\n"
+"informasi ini bisa diperoleh dari ISP."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Masukkan:\n"
"\n"
" - Alamat IP: Kalau Anda nggak tahu, tanyakan sana pada network "
-"administratornya.\n"
+"administratornya atau ISP.\n"
"\n"
"\n"
" - Netmask: Pilih aja \"255.255.255.0\", kecuali kalau ragu tanya juga ke\n"
-" network administratornya.\n"
+" network administratornya atau ISP.\n"
"\n"
"\n"
" - IP otomatis: Bila network Anda menggunakan bootp atau protokol dhcp, "
"pilih\n"
" ini. Bila Anda pilih ini, nggak usah masukkan alamat IP di \"Alamat IP\". "
"Bila\n"
-" Anda ragu juga, tanya lagi ke network administrator.\n"
+" Anda ragu juga, tanya lagi ke network administrator atau ISP.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Bila network Anda menggunakan NIS, pilih \"Gunakan NIS\". Kalau nggak tahu, "
+"tanya\n"
+"network admin Anda dong."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1708,7 +2191,7 @@ msgstr ""
"dimasukkan,\n"
"informasi ini bisa diperoleh dari ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1718,13 +2201,15 @@ msgstr ""
"nggak tahu pakai proxy apa nggak, tanya gih ke network administratornya atau "
"ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1735,29 +2220,42 @@ msgstr ""
"Perhatikan bahwa Anda harus pilih mirror dan kriptografi sesuai ketentuan\n"
"yang berlaku di daerah Anda."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Sekarang Anda bisa pilih timezone sesuai dengan tempat tinggal Anda.\n"
"\n"
"\n"
-"Linux mengatur jam dengan GMT atawa \"Greenwich Mean Time\" dan \n"
+"GNU/Linux mengatur jam dengan GMT atawa \"Greenwich Mean Time\" dan \n"
"menterjemahkannya ke waktu lokal sesuai dengan timezone yang Anda pilih."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"Kamu boleh pilih service mana aja yang mau dijalankan saat boot.\n"
"Kamu bisa lihat keterangan servicenya pada baloon help kecil yang akan "
@@ -1767,80 +2265,159 @@ msgstr ""
"Hati-hati pilihnya ya, apalagi kalau mau pakai sistem ini sebagai server\n"
"jangan sembarang nyalakan service yang nggak perlu"
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Linux bisa menggunakan berbagai macam printer. Tiap jenis\n"
-"membutuhkan setingan yang berbeda pula. Perhatikan bahwa\n"
-"walaupun nama default spool print adalah 'lp', Anda bisa\n"
-"tambahkan keterangan lain dengan memberi karakter '|' sebagai\n"
-"batasnya. Jadi misalnya Anda ingin memberi keterangan\n"
-"dengan \"Printer Gue nih|lp\" pada printer, maka dia adalah\n"
-"sekaligus dijadikan printer defaultnya\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
"\n"
"\n"
-"Kalau printernya langsung dicolok ke komputermu, pilih\n"
-"\"Printer Lokal\". Anda akan diminta menyebutkan port tempat\n"
-"si printer disambung, dan pilihlah filter yang tepat.\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Kalah Anda ingin mengakses printer yang ada di mesin Unix remote,\n"
-"silahkan pilih \"Antrian lpd remote\". Agar bisa digunakan \n"
-"silahkan berikan nama antrian printer di server ini, tidak usah\n"
-"pakai username atau password\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Atau bila ingin menggunakan printer SMB (yang berarti printernya\n"
-"ada di mesin Windows 9x/NT), Anda harus berikan nama SMBnya\n"
-"(biasanya nama komputernya, bukan nama TCP/IP), dan alamat IP\n"
-"nya sekalian. Jangan lupa username, workgroup, dan password\n"
-"agar bisa mengakses printernya, dan juga jangan ketinggalan nama\n"
-"printernya. Setup ini juga mirip kalau ingin pakai printer Netware\n"
-"tapi nggak usah pakai informasi workgroup."
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
+#, fuzzy
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Sekarang Anda mesti berikan password untuk root untuk\n"
"sistem Linux-Mandrake ini. Passwordnya harus diketikkan dua kali untuk\n"
@@ -1856,7 +2433,7 @@ msgstr ""
"pernah menuliskan password Anda di kertas atau dimana saja. Jangan\n"
"buat password Anda terlalu panjang atau rumit, ntar bisa lupa."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1864,7 +2441,7 @@ msgstr ""
"Agar sistem Anda lebih secure, silahkan pilih \"Gunakan file shadow\" dan \n"
"\"Password Pakai MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1873,7 +2450,7 @@ msgstr ""
"tanya\n"
"network admin Anda dong."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1916,35 +2493,31 @@ msgstr ""
"yang telah Anda buat disini, dan login sebagai root, hanya untuk \n"
"keperluan administratif dan maintenance saja yah."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Hooi, mas, mbak, jawab \"Ya\" di sini! Ibaratnya, kalau Anda\n"
-"reinstall Windows, dia akan overwrite boot sectornya. Kecuali kalau\n"
-"Anda punya bootdisknya, maka Anda tidak akan bisa boot ke Linux\n"
-"lagi!"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Sistem sekarang sedang dibuat di disk Anda,\n"
-"nah sekarang tolong dong diberitahu di mana saya akan membuatnya.\n"
+"Sekarang saya ingin tanya kepada Anda\n"
+"tempat saya bisa meletakkan informasi yang akan dipakai GNU/Linux saat "
+"boot.\n"
"\n"
"\n"
"Kalau Anda kurang tahu, yah pilih saja \"Sektor pertama di \n"
"drive (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1952,10 +2525,10 @@ msgstr ""
"Biasanya orang pilih \"/dev/hda\", kecuali kalau Anda pilih yang lain (yaitu "
"drive master IDE) atau \"/dev/sda\" (disk SCSI utama)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1966,7 +2539,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (LInux LOader) dan Grub adalah bootloader. Dua-duanya akan memboot\n"
-"Linux atau sistem operasi lain yang ada di komputer ini.\n"
+"GNU/Linux atau sistem operasi lain yang ada di komputer ini.\n"
"Biasanya, sistem operasi yang sudah ada akan secara normal di deteksi dan\n"
"diinstallkan. Bila ternyata nanti nggak bisa, Anda bisa tambahkan sendiri\n"
"secara manual di sini. Hati-hati yah nanti waktu kasih parameternya.\n"
@@ -1978,7 +2551,8 @@ msgstr ""
"itu\n"
"kamu perlu bootdisk nantinya."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1995,7 +2569,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"Pilihan LILO dan grub adalah:\n"
@@ -2017,10 +2593,63 @@ msgstr ""
" * normal: pilih mode text 80x25\n"
" * <angka>: gunakan mode text."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO adalah bootloader untuk SPARC: Dianya akan memboot\n"
+"GNU/Linux atau sistem operasi lain yang ada di komputer ini.\n"
+"Biasanya, sistem operasi yang sudah ada akan secara normal di deteksi dan\n"
+"diinstallkan. Bila ternyata nanti nggak bisa, Anda bisa tambahkan sendiri\n"
+"secara manual di sini. Hati-hati yah nanti waktu kasih parameternya.\n"
+"\n"
+"\n"
+"Kamu juga bisa menutup akses ke sistem operasi tertentu. Caranya gampang "
+"aja\n"
+"kamu bisa hapus entrinya disini. Tapi untuk bisa masuk ke sistem operasi "
+"itu\n"
+"kamu perlu bootdisk nantinya."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"Pilihan SILO dan grub adalah:\n"
+" - Instalasi Bootloader: Tempat Anda hendak meletakkan informasi boot\n"
+" ke GNU/Linux. Pilih aja \"Sektor pertama di drive (MBR)\", kecuali\n"
+" elu udah tau tempatnya\n"
+"\n"
+"\n"
+" - Delay sebelum boot ke image default: Menentukan waktu dalam sepersepuluh "
+"detik\n"
+" sebelum boot loader akan meload image yang default (pertama). Ini berguna\n"
+" pada sistem yang boot dari hard disk dan keyboardnya dinyalakan. Boot "
+"loader\n"
+" tidak menunggu bila \"delay\" dihilangkan atau diset ke nol."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2032,7 +2661,7 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Sekarang Anda akan mengkonfigurasikan X Window System, yang merupakan\n"
-"inti GUI (Graphical User Interface) bagi Linux. Sekarang,\n"
+"inti GUI (Graphical User Interface) bagi GNU/Linux. Sekarang,\n"
"Anda harus konfigurasikan video card dan monitor. Biasanya\n"
"tahapan ini akan otomatis, tapi Anda perlu verifikasi\n"
"hasil deteksi dan memeriksanya, bener apa nggak :)\n"
@@ -2043,7 +2672,7 @@ msgstr ""
"Kalau tidak cocok, Anda bisa kembali lagi dan merubah konfigurasi\n"
"lalu coba lagi."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2051,7 +2680,7 @@ msgstr ""
"Bila ada yang ngaco pada konfigurasi Xnya, silahken pakai pilihan ini untuk\n"
"membuat X Window System lebih bagus."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2059,42 +2688,47 @@ msgstr ""
"Bila Anda ingin menggunakan login grafik, pilih aje \"Ya\". Kalau nggak,\n"
"pilih aje \"Tidak\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Anda bisa pilih opsi berikut untuk sistem ini.\n"
"\n"
@@ -2115,8 +2749,8 @@ msgstr ""
" dengan mode ini juga khusus buat server aja yaaa.\n"
"\n"
"\n"
-" - Penentuan RAM bila perlu: Kadang kala, Linux nggak bisa mendeteksi RAM "
-"yang\n"
+" - Penentuan RAM bila perlu: Kadang kala, GNU/Linux nggak bisa mendeteksi "
+"RAM yang\n"
" ada di sistem. Sayangnya walaupun dunia komputer udah canggih begini,\n"
" nggak ada cara baku untuk cari tahu jumlah memori via BIOS dengan akurat.\n"
" Kalau ini terjadi pada dirimu, tulis saja RAMnya. Oh ya,\n"
@@ -2132,7 +2766,7 @@ msgstr ""
"booting, pilih aja ini (Perhatikan: Num Lock bisa nyala bisa juga nggak di "
"X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2146,96 +2780,117 @@ msgstr ""
"Bila ANda ingin boot ke sistem operasi lain, silahkan baca instruksi\n"
"tambahan."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Pilih Bahasamu"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Pilih kelas instalasi"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Deteksi hard disk"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Konfigurasi mouse"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Pilih Keyboardmu"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Lain-lain"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Setup filesystem"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Melakukan format partisi"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Paket yang akan diinstall"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instal system"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Konfigureasi jaringan"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kriptografi"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Konfigurasi timezone"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Konfigurasi service"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Konfigurasi printer"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Set password root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Menambah user"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Membuat bootdisk"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Install bootloader"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Konfigurasi X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Disket auto install"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Keluar dari proses instal"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Error saat membaca file $f"
+
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Tipe mouse yang anda punya?"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Tipe mouse yang anda punya?"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2245,232 +2900,250 @@ msgstr ""
"Caranya, buatlah partisi (atau pilih di yang sudah ada).\n"
"Lalu pilih ``Mount point'' dan set ke `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Saya nggak bisa baca tabel partisi, udah hancur lebur nih :(\n"
-"Aku akan coba hapus partisi yg jeleknya"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Anda harus buat partisi swap"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake gagal membaca tabel partisi Anda.\n"
-"Lanjutkan tapi resiko tanggung kendiri!"
+"Anda belum punya partisi swap\n"
+"\n"
+"Cuek aja?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Mencari partisi root."
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "digunakan untuk loopback"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informasi"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Ini bukan partisi root, silahkan pilih yang lain."
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Melakukan format partisi"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Tidak ada partisi root"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Saya tidak bisa gunakan broadcast tanpa domain NIS"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "digunakan untuk loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Error saat membaca file $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Ada error nih, tapi aku nggak tahu cara mengatasinya.\n"
-"Lanjutkan saja, tapi resiko tanggung sendiri yah."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Pilih ukurannya"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Lokasi mount %s ada dua"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Ukuran partisi root dalam MB: "
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Ukuran partisi swap dalam MB: "
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
msgstr ""
-"Ada paket yang penting nggak benar diinstalnya.\n"
-"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
-"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
-"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Selamat Datang di %s"
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Tipe partisi yang anda diinginkan?"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Wah maaf nih, nggak ada floppy drive yah ?"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Sedang menghitung bound filesystem fat"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Memulai langkah `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Anda harus buat partisi swap"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
+#, fuzzy
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Anda belum punya partisi swap\n"
+"AWAS!\n"
"\n"
-"Cuek aja?"
+"DrakX sekarang hendak merubah ukuran partisi Windows Anda. Hati-hati:\n"
+"prosesnya ini suanguat berbuahaya. Bila Anda belum melakukannya, silahkan\n"
+"untuk scandisk dulu (dan defrag juga) di partisi ini lalu backup datanya.\n"
+"Habis itu yakin dulu, baru tekan Ok."
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Pilih ukuran yang akan diinstal"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "Sektor mana yang hendak dipindah"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Ukuran total: "
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "Partisi"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versi: %s\n"
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
+msgstr "Resize otomatis gagal"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Ukuran: %d KB\n"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Pilih paket yang akan diinstal"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instal"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Sedang melakukan instal"
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Silahkan tunggu, "
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Ahli"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Sisa waktu "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Total waktu"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Sedang menyiapkan instalasi"
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Anda bisa buat partisi di hard disk %s \n"
+"Habis itu, jangan lupa simpan dengan menekan tombol `w'"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
-#, c-format
-msgid "Installing package %s"
-msgstr "Sedang instal paket %s"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Eh, kamu kan nggak punya partisi windows!"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Cuek aja?"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Aku tak bisa menambah partisi lagi"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Ada error mengurutkan paket"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Gunakan konfigurasi X11 yang ada?"
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partisi tipe: %s\n"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Ehm, silahkan pilih kelas instalasi di bawah:"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Up-kan Jaringan"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Eh, kamu kan nggak punya partisi windows!"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Matikan Jaringan"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Wah, kamu nggak punya cukup space buat Lnx4win"
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Ada error nih, tapi aku nggak tahu cara mengatasinya.\n"
+"Lanjutkan saja, tapi resiko tanggung sendiri yah."
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Lokasi mount %s ada dua"
+
+#: ../../install_steps.pm_.c:375
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
-"AWAS!\n"
-"\n"
-"DrakX sekarang hendak merubah ukuran partisi Windows Anda. Hati-hati:\n"
-"prosesnya ini suanguat berbuahaya. Bila Anda belum melakukannya, silahkan\n"
-"untuk scandisk dulu (dan defrag juga) di partisi ini lalu backup datanya.\n"
-"Habis itu yakin dulu, baru tekan Ok."
+"Ada paket yang penting nggak benar diinstalnya.\n"
+"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
+"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
+"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Resize otomatis gagal"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Selamat Datang di %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Wah maaf nih, nggak ada floppy drive yah ?"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Pilih ukurannya"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Memulai langkah `%s'\n"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Ukuran partisi root dalam MB: "
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Ukuran partisi swap dalam MB: "
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Ehm, silahkan pilih kelas instalasi di bawah:"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2485,7 +3158,7 @@ msgstr ""
"dan sebaliknya persentase 100% akan install semua paket yang tadi sudah\n"
"dipilih"
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2502,58 +3175,102 @@ msgstr ""
"dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
"dipilih sebanyak-banyaknya"
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Anda akan bisa memilih dengan lebih lengkap nanti"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Persentase paket yang akan diinstall"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Pilih paket yang akan diinstal"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instal"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Dependensi otomatis"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Buka Tree"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Tutup Tree"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Paket Error"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versi: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Ukuran: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Derajat: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"Kamu nggak bisa pilih paket ini sebab nggak ada ruang kosong untuk "
+"menginstallnya"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Paket ini yang akan diuninstall"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Paket berikut adalah yang akan diinstall/dihapus"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Anda nggak bisa pilih/buang paket ini"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Paket ini harus diinstall, nggak bisa dibuang"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Anda nggak bisa buang paket ini, sebab dia sudah diinstall"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2561,46 +3278,89 @@ msgstr ""
"Paket ini mesti diupgrade\n"
"Bener nggak mau dipilih?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Kamu nggak bisa buang paket ini. dia mesti diupgrade"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-"Kamu nggak bisa pilih paket ini sebab nggak ada ruang kosong untuk "
-"menginstallnya"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Paket berikut adalah yang akan diinstall/dihapus"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Anda nggak bisa pilih/buang paket ini"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Sedang melakukan instal"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Perkiraan"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Silahkan tunggu, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Sisa waktu "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Total waktu"
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Batalkan"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Sedang menyiapkan instalasi"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Sedang instal paket %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Terima user"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2615,182 +3375,386 @@ msgstr ""
"Kalau Anda nggak punya CDROM ini, teken Batal aja untuk membatalkan "
"instalasidari CD ini."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Ubah ukuran"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Cuek aja?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Ada error mengurutkan paket"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Ada error saat menginstall paket"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Ada error"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Pilih dulu bahasanya dong bow"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Keyboard"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Pilih Keyboardmu"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
"Anda bisa pilih bahasa lain yang akan disediakan setelah install selesai"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Partisi root"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Apa sih partisi root (/) di sistem ini?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Kelas Instal"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Kelas instalasi yang anda diinginkan?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instal/Upgrade"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Akan instal atau upgrade?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Otomatis"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Disarankan"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Customized"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ahli"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-"Ah, enter Pakar? Yang bener nihh...\n"
+"Ah, ente Pakar? Yang bener nihh...\n"
"Lo bakalan bisa ngutak-atik dengan leluasa namun berbahaya dengan mode ini."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Upgrade"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "Informasi"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Development"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Ngomong-ngomong, sistem Anda nanti dipakai untuk apa?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Tipe mouse yang anda punya?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfigurasikan card PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "konfigurasi IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "Tidak ada partisi"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Partisi mana yang hendak digunakan sebagai partisi root"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Saya nggak bisa baca tabel partisi, udah hancur lebur nih :(\n"
+"Aku akan coba hapus partisi yg jeleknya"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake gagal membaca tabel partisi Anda.\n"
+"Lanjutkan tapi resiko tanggung kendiri!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Partisi root"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Apa sih partisi root (/) di sistem ini?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Periksa bad block ?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Melakukan format partisi"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Instalasi tidak bisa diteruskan karena swap kurang, tambahin dong"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Sedang mencari paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Mencari paket untuk diupgrade"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr "Waduh, sistem ini nggak punya cukup space untuk install atawa upgrade"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normal"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Disarankan"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Customized"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Pilih ukuran yang akan diinstal"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2800,12 +3764,12 @@ msgstr ""
"Kalau nggak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2813,173 +3777,11 @@ msgstr ""
"Sedang instal paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Konfigurasi Instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Biarkan konfigurasi IP sekarang"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Ayo kita konfigurasi jaringan"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Jangan Konfigurasi jaringan"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Konfigurasi Jaringan"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Jaringan LAN telah dikonfigurasikan sebelumnya. Sekarang Anda ingin:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Anda ingin konfigurasikan jaringan lokal untuk sistem ini ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "Tidak ada card network ya?"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Konfigurasi Modem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Anda ingin konfigurasikan koneksi dialup untuk sistem ini ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfigurasi perangkat jaringan %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Masukkan konfigurasi IP untuk mesin ini.\n"
-"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
-"bertitik (misalnya 202.159.35.32)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP otomatis"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "Alamat IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Alamat IP harus dalam format 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Konfigureasi jaringan"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Masukkan nama komputernya.\n"
-"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
-"misalnya ``mdamt.fdns.net''.\n"
-"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Server DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Device Gateway: "
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Nama Host:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Cari Modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Di serial port mana modem Anda disambungkan?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Parameter Dialup"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nama koneksi"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Nomor telepon"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Login ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Autentikasi"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Script-based"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminal-based"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nama domain"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Server DNS Primary"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Server DNS Sekondari"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3046,88 +3848,94 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "Timezone Anda?"
+msgstr "Ngomong-ngomong, sistem Anda nanti dipakai untuk apa?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Apakah jam hardwarenya di set ke GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Tipe partisi yang anda diinginkan?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Tak berpassword"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Gunakan file shadow"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Password pakai MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Gunakan NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "yellow pages"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Passwordnya terlalu mudah (harus paling tidak %d karakter)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Autentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Terima user"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Menambah user"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(Sudah ditambahkan %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3137,60 +3945,86 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nama sebenarnya"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nama user"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikon"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Password ini terlalu sederhana"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Silahkan memberikan nama user"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
+"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
+"SILO di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau "
+"SILO\n"
+"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
+"digunakan\n"
+"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
+"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Drive Disket Pertama"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3212,64 +4046,33 @@ msgstr ""
"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Wah maaf nih, nggak ada floppy drive yah ?"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Masukkan disket di drive %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalasi LILO gagal. Ada kesalahan berikut:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Mau pakai SILO saja?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Parameter SILO utama"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ini adalah entri di SILO.\n"
-"Anda boleh tambahkan atau mengubah yang sudah ada."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partisi"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Label ini sudah dipakai"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalasi SILO gagal. Ada kesalahan berikut:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Mau pakai aboot saja?"
+msgstr "Mau pakai SILO saja?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3277,125 +4080,119 @@ msgstr ""
"Wah ada error saat install aboot,\n"
"Paksakan instalasi nggak walaupun nanti bisa merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Konfigurasi Proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy biasanya http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy biasanya ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalasi LILO gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Lemah Buanget"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Lemah"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Sedang"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Kuat"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Wah Sinting nih"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Pertanyaan Tambahan"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(mungkin akan membuat disk corrupt)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Gunakan optimasi hard drive?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Pilih Tingkat Security"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ukuram RAM yg tepat (saya nemu %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automount media removable"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp saat boot"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Buat multi profil"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Enable num lock saat startup"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Berikan jumlah RAM dalam satuan MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Wah nggak bisa pakai supermount di level security Tinggi"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX akan membuat file konfigurasi untuk XFree 3.3 dan XFree 4.0\n"
-"Sebagai defaultnya, server 3.3 akan dipakai karena banyak drivernya.\n"
-"\n"
-"Apakah Anda ingin coba XFree 4.0 saja ?"
+"perhatian: DI LEVEL SEKURITI INI, LOGIN SEBAGAI ROOT PADA KONSOLE TIDAK "
+"AKAN\n"
+"DIPERBOLEHKAN!!! Kalau ingin jadi root, Anda perlu login sebagai user dan\n"
+"kemudian gunakan \"su\". Jangan pakai mesin ini selain jadi server yah!\n"
+"Udah aku bilangin lho..."
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Cari Device PCI?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Gunakan konfigurasi X11 yang ada?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "Mau buat disket auto install untuk replikasi linux?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3405,7 +4202,7 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3424,153 +4221,18 @@ msgstr ""
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Lagi matiin komputer"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Menginstall driver untuk card %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Driver %s mana yang hendak saya coba?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
-"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
-"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
-"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
-"jadi hengki (baca: hang), tapi biasanya sih nggak ngerusak hardwarenya."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Probe otomatis"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Tuliskan optionnya"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Sekarang Anda boleh berikan parameter untuk module %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Silahkan berikan parameter untuk modul %s ini.\n"
-"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
-"Misalnya, ``io=0x300 irq=8''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Pilihan Module:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Module %s gagal diload.\n"
-"Mau coba lagi dengan parameter yang lain?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Cari card PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfigurasikan card PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Cari Device %s ?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Ketemu interface %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Anda punya lagi?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Punya %s interface?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Tidak"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ya"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Lihat info hardware"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Up-kan Jaringan"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Matikan Jaringan"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Instalasi Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> untuk pindah | <Spasi> untuk pilih | <F12> Layar berikut"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Anda bisa buat partisi di hard disk %s \n"
-"Habis itu, jangan lupa simpan dengan menekan tombol `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Silahkan menunggu"
@@ -3580,7 +4242,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Tidak jelas (%s), coba yang lebih tepat\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Pilihan salah, silahkan ulangi\n"
@@ -3594,442 +4256,968 @@ msgstr " ? (default %s) "
msgid "Your choice? (default %s) "
msgstr "Pilihan anda? (default %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Pilihan anda? (default %s pilih 'none' untuk tidak ada) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Ceko"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Jerman"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finland"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Perancis"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norwegia"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polandia"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Rusia"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Keyboard UK"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Keyboard US"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armenia (lama)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armenia (phonetic)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgaria"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazilia"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Belarusia"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Swiss (layout Jerman)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Swiss (layout Perancis)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Denmark"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Norwegia"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Yunani"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hungaria"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroasia"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Ibrani"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Ibrani (Phonetic)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ukrania"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandia"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Amerika Latin"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Belanda"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuania \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugis"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Swedia"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovakia"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Keyboard Thailand"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrania"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Lithuania \"number row\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Yugoslavia (layout latin)"
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Mouse Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Generik"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "level"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serial"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Mouse Generik 2 Tombol"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Mouse Generik 3 Tombol"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Sistem Mouse (serial)"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serial, old C7 type)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Tidak pakai mouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "tidak ada"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Tidak pakai mouse"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Apa sudah sesuai?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "Konfigurasi Proxy"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Anda ingin test konfigurasi ini?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Konfigureasi jaringan"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Jangan Konfigurasi jaringan"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Nama koneksi"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "konfigurasi"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "Konfigurasi Proxy"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "Nomor telepon"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Dialup dengan modem"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Posisi mount"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Password"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Password"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Test konfigurasi"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "Tipe partisi yang anda diinginkan?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Tipe printer yang anda inginkan?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Cuek aja?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Timezone Anda?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Pilih ukuran baru"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Di serial port mana mouse Anda dicolokkan ?"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-"Selamat datang di Sang Pemilih Sistem Operasi, LILO!\n"
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Anda ingin test konfigurasi ini?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "konfigurasi"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Mau pakai aboot saja?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Cari Modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Di serial port mana modem Anda disambungkan?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Parameter Dialup"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nama koneksi"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "Nomor telepon"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Login ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Autentikasi"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Script-based"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminal-based"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Nama domain"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Server DNS Primary"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Server DNS Sekondari"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Untuk melihat daftar pilihan, tekan <TAB>.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Nama koneksi"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
-"Untuk meload salah satu, tulis namanya, dan tekan <ENTER> atau tunggu %d "
-"detik untuk boot ke default.\n"
+"You can reconfigure your connection."
+msgstr "Konfigureasi jaringan"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Jangan Konfigurasi jaringan"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Jangan Konfigurasi jaringan"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Nama koneksi"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Nama koneksi"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "perintah sebelum booting, atau 'c' untuk command line."
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Konfigureasi jaringan"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Koneksi Printer"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "Waah /boot nggak cukup spacenya nih"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Konfigureasi jaringan"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start Menu"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Mouse Sun"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Mouse ADB Apple"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Ahli"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Mouse ADB Apple (2 tombol)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Nama koneksi"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Mouse ADB Apple (3 tombol atau lebih)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Di serial port mana mouse Anda dicolokkan ?"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Mouse USB Apple"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Mouse USB Apple (2 tombol)"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Batalkan"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Mouse USB Apple (3 tombol atau lebih)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Mouse Generik (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Mouse Generik 3 Tombol (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Ahli"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Tipe partisi yang anda diinginkan?"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "Bus Mouse ATI"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Konfigurasi Jaringan"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Bus Mouse Microsoft"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Anda ingin test konfigurasi ini?"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Bus Mouse Logitech"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Mouse USB"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nama koneksi"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Mouse USB (3 tombol atau lebih)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "Jaringan LAN telah dikonfigurasikan sebelumnya. Sekarang Anda ingin:"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Tidak pakai mouse"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Disk mana yang hendak dipindah?"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A atau yg baruan (serial)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Konfigurasi Jaringan"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (serial)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serial)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "Tidak ada card network ya?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serial)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Konfigureasi jaringan"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serial)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Masukkan nama komputernya.\n"
+"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
+"misalnya ``mdamt.fdns.net''.\n"
+"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serial)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Nama Host:"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serial)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serial)"
+#: ../../network.pm_.c:302
+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 ""
+"Masukkan konfigurasi IP untuk mesin ini.\n"
+"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
+"bertitik (misalnya 202.159.35.32)."
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serial)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP otomatis"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Mouse generik (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "Alamat IP:"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Mouse Microsoft (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Netmask:"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Mouse Generik 3 tombol (serial)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Sistem Mouse (serial)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Alamat IP harus dalam format 1.2.3.4"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Apa sudah sesuai?"
+#: ../../network.pm_.c:341
+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 ""
+"Masukkan nama komputernya.\n"
+"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
+"misalnya ``mdamt.fdns.net''.\n"
+"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Server DNS:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "Gateway:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Device Gateway: "
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Konfigurasi Instalasi akhir"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Proxy FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy biasanya http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy biasanya ftp://..."
-#: ../../partition_table.pm_.c:528
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Partisi extended nggak bisa dipakai di platform ini"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4039,21 +5227,21 @@ msgstr ""
"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
"extended selanjutnya"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Proses restore dari file %s gagal: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "File backup rusak"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"
@@ -4087,42 +5275,56 @@ msgstr "menarik"
msgid "maybe"
msgstr "yaah..gimana yaa"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (penting)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (bagus deh)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (bagus)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Tunjukan sedikit"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Tunjukkan lebih banyak"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Printer lokal"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "Pilihan printer lpd remote"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Antrian remote"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "Lpd remote:"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "Pilihan printer NetWare"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Device Printer"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
@@ -4136,11 +5338,11 @@ msgstr "Test port"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Printer dengan tipe \"%s\" telah terdeteksi di "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Alat printer lokal"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4148,15 +5350,15 @@ msgstr ""
"Device mana yang terhubung ke printer\n"
"(ingat, /dev/lp0 = LPT1:) ?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Device Printer"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4166,19 +5368,19 @@ msgstr ""
"tuliskan nama host server printer dan nama antrian\n"
"yang digunakan untuk mencetak di server itu."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Nama Host Remote"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Antrian remote"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (Windows 95/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4192,27 +5394,27 @@ msgstr ""
"dan juga nama share printer tersebut, oh iya...\n"
"nama user, password, dan info workgroupnya juga."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Host server SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP server SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Nama share"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Workgroup"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4224,130 +5426,155 @@ msgstr ""
"dengan nama TCP/IPnya lho) juga nama antrian printer yang \n"
"Anda ingin gunakan beserta nama user dan passwordnya."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Server Printer"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Nama antrian printer"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "Pilihan printer lokal"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "Parameter printer"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Lemah Buanget"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Tipe printer yang anda inginkan?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Anda ingin test cetak?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Saya sedang test cetak..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Halaman test telah dikirim ke daemon printer.\n"
+"Akan butuh waktu sebentar untuk mulai mencetak.\n"
+"Status cetak:\n"
+"%s\n"
+"\n"
+"Bisa tercetak nggak?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Halaman test telah dikirim ke daemon printer.\n"
+"Akan butuh waktu sebentar untuk mulai mencetak.\n"
+"Bisa tercetak nggak?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ya, Test cetak ascii"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ya, Test cetak postscript"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ya, Test cetak postscript dan text ascii"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Konfigurasi Printer"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Tipe printer yang anda inginkan?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Parameter printer"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Ukuran Kertas"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Kertas di eject habis ngeprint?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Parameter driver Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Pilihan kedalaman warna"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Cetak text dalam PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Balikkan urutan halaman"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Betulkan efek tangga pada teks ?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Jumlah halaman per output"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Margin Kiri/Kanan dalam point (1/72 inci)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Margin Atas/Bawah dalam point (1/72 inci)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Extra option pada GhostScript"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Pilihan text extra"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Anda ingin test cetak?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Saya sedang test cetak..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Halaman test telah dikirim ke daemon printer.\n"
-"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-"Status cetak:\n"
-"%s\n"
-"\n"
-"Bisa tercetak nggak?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Halaman test telah dikirim ke daemon printer.\n"
-"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-"Bisa tercetak nggak?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Anda ingin konfigurasikan printer?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4355,19 +5582,69 @@ msgstr ""
"Ini adalah antrian print\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Perkiraan"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Pilih koneksi Printer"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Bagaimana printer ini disambung ke komputer?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Pilih koneksi Printer"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Hapus Antrian"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Tiap antrian cetak harus punya nama (biasanya lp) dan direktori spool\n"
+"yang dialokasikan untuknya. Sekarang saya mau tanya,\n"
+"nama antrian dan direktori yang digunakan apa yah ?\n"
+"Juga saya mau tanya bagaimana printernya disambungkan ke situ?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Printer lokal"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Tuliskan optionnya"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "Informasi"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4379,45 +5656,45 @@ msgstr ""
"nama antrian dan direktori yang digunakan apa yah ?\n"
"Juga saya mau tanya bagaimana printernya disambungkan ke situ?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nama Antrian"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Direktori spool"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Koneksi Printer"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Tidak dapat menambah partisi ke RAID md%d yang terformat"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Tidak bisa menulis ke file $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid gagal"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid gagal (mungkin raidtoolsnya nggak ada?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Skeduler command periodik, Anacron"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4425,7 +5702,7 @@ msgstr ""
"apmd digunakan untuk monitoring status batere dan mencatatnya di syslog.\n"
"apmd juga bisa untuk mematikan mesin waktu baterenya habis."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4434,7 +5711,7 @@ msgstr ""
"saat at dijalankan, dan memulai perintah secara batch waktu rata-rata load\n"
"sedang rendah."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4446,7 +5723,7 @@ msgstr ""
"dari cron UNIX biasa, termasuk pembenahan sekuriti yang lebih baik dan\n"
"lebih mantapnya option pada konfigurasinya."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4458,7 +5735,7 @@ msgstr ""
"konsol\n"
"dan juga bikin menu pop-up di konsol."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4466,7 +5743,7 @@ msgstr ""
"Apache adalah server World Wide Web. Dia dipakai untuk menyediakan file\n"
"HTML dan CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4480,7 +5757,7 @@ msgstr ""
"atas banyak server, misalnya telnet, ftp, rsh, dan rlogin. Menonaktifkan\n"
"inetd berarti menonaktifkan semua servis-servis tadi."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4490,7 +5767,7 @@ msgstr ""
"/etc/sysconfig/keyboard. Mapnya bisa dipilih dari utility kbdconfig.\n"
"Mending Anda aktifkan aja deh ini."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4498,7 +5775,7 @@ msgstr ""
"lpd adalah daemon printer yang jadi tulang punggung lpr. Dia\n"
"bertugas sebagai server yang memberi perintah kepada printer untuk mencetak."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4506,7 +5783,7 @@ msgstr ""
"named (BIND) adalah Domain Name Server (DNS) yang digunakan untuk\n"
"menterjemahkan nama host ke IP address."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4514,7 +5791,7 @@ msgstr ""
"Mount dan unmount semua Network File System (NFS), SMB (Lan\n"
"Manager/Windows), dan NCP (Netware)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4522,7 +5799,7 @@ msgstr ""
"Aktif/nonaktifkan semua interface network yang terkonfigurasi nyala\n"
"pada saat boot."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4533,7 +5810,7 @@ msgstr ""
"menggunakan\n"
"konfigurasi pada file /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4541,7 +5818,7 @@ msgstr ""
"NFS adalah protokol populer untuk file sharing di TCP/IP\n"
"Servis ini memberikan fungsi file lock pada NFS."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4553,7 +5830,7 @@ msgstr ""
"Dia nggak bisa jalan kecuali dikonfigurasikan di sini, jadi nggak apa-apa\n"
"kalau nggak diinstall di mesin yang nggak perlu PCMCIA."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4564,7 +5841,7 @@ msgstr ""
"NFS dan NIS. Server portmap harus jalan di mesin yang bertindak sebagai\n"
"server untuk protokol yang menggunakan mekanisme RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4572,7 +5849,7 @@ msgstr ""
"Postfix adalah Mail Transport Agent yang berupa program yang bertugas\n"
"mengantarkan surat dari suatu mesin ke mesin yang lain."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4580,7 +5857,7 @@ msgstr ""
"Menyimpan dan mengembalikan pool entropi sistem untuk membuat\n"
"angka acak dengan kualitas sangat acak."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4590,7 +5867,7 @@ msgstr ""
"protokol RIP. RIP dipakai di jaringan kecil, dan semakin besar jaringannya\n"
"maka protokol routing yang canggih pun semakin dibutuhkan."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4598,7 +5875,7 @@ msgstr ""
"Protokol rstat digunakan pada jaringan untuk mengambil\n"
"ukuran kinerja sistem di network."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4606,7 +5883,7 @@ msgstr ""
"Protokol ruser digunakan di jaringan untuk mengidentifikasi siapa\n"
"yang lagi login di jaringan."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4614,7 +5891,7 @@ msgstr ""
"Protokol rwho digunakan untuk melihat daftar user yang sedang login\n"
"di suatu sistem yang juga menjalankan daemon rwho (mirip dengan finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4622,53 +5899,200 @@ msgstr ""
"Syslog adalah fasilitas yang digunakan para daemon untuk mencatat\n"
"pesan log sistem di file. Hidupkan aja deh syslognya."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "Skrip ini akan meload modul untuk mouse usb"
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Menghidupkan dan mematikan Server Font X saat boot dan mati."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Pilih service mana yang hendak dijalankan saat boot scr otomatis"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Selamat datang di Sang Pemilih Sistem Operasi, SILO!\n"
-"\n"
-"Untuk melihat daftar pilihan, tekan <TAB>.\n"
-"\n"
-"Untuk meload salah satu, tulis namanya, dan tekan <ENTER> atau tunggu %d "
-"detik untuk boot ke default.\n"
-"\n"
+"Saya nggak bisa baca tabel partisi, udah hancur lebur nih :(\n"
+"Aku akan coba hapus partisi yg jeleknya"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Konfigurasi LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Membuat boot disk"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Format disket"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Pilihan"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalasi LILO gagal. Ada kesalahan berikut:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Konfigurasi X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Koneksi Printer"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Dialup dengan modem"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "baca konfigurasi"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "konfigurasi IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Wah Selamat nih!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4731,23 +6155,36 @@ msgstr "Pilih Tingkat Security"
msgid "Choose the tool you want to use"
msgstr "Pilih tool yang hendak digunakan"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Pilih Keyboardmu"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Ubah Resolusi"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Tipe mouse yang anda punya?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Ganti CDROMnya!\n"
+"\n"
+"Silahkan masukkan CDROM berlabel \"%s\" di drive Anda dan tekan OK\n"
+"Kalau Anda nggak punya CDROM ini, teken Batal aja untuk membatalkan "
+"instalasidari CD ini."
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "tidak ada serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emulasikan tombol ketiga?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Di serial port mana mouse Anda dicolokkan ?"
@@ -4960,8 +6397,875 @@ msgstr "Membuat daun-daunnya"
msgid "Finding leaves takes some time"
msgstr "Sebentar yah. agak lama nih untuk mencari di daun2nya"
-#~ msgid "Recommended"
-#~ msgstr "Disarankan"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Konfigurasi Proxy"
+
+#, fuzzy
+msgid "Internet"
+msgstr "menarik"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "bagus"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Graphics"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Video"
+msgstr ""
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - Sound"
+msgstr ""
+
+#, fuzzy
+msgid "Gnome"
+msgstr "tidak ada"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "Autentikasi"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Multimedia - CD Burning"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Pilih ukuran yang akan diinstal"
+
+#~ msgid "Total size: "
+#~ msgstr "Ukuran total: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Ayo kita konfigurasi jaringan"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Nama koneksi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Nama koneksi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Nama koneksi"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Nama koneksi"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "Jerman"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Jerman"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "Apa yang akan anda mau?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Instal"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Ubah ukuran"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Tipe partisi yang anda diinginkan?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Pilihlah \"Instal\" jika Anda belum pernah menginstal Linux di komputer\n"
+#~ "ini atawa ingin menginstall ulang Linux di mesin ini.\n"
+#~ "\n"
+#~ "Pilih \"Upgrade\" kalau ingin mengupdate sistem Mandrake:\n"
+#~ "%s atau %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Pilih:\n"
+#~ "\n"
+#~ " - Otomatis (disarankan): Bila Anda belum pernah install Linux.\n"
+#~ " pilih ini. CATATAN: Jaringan tidak bisa dikonfigurasikan saat instalasi\n"
+#~ " Anda harus pakai LinuxConf nanti setelah instalasi selesai\n"
+#~ "\n"
+#~ " - Customized: Bila Anda familiar dengan Linux, Anda akan dapat\n"
+#~ " memilih penggunaan sistem ini. Nanti akan dijelaskan lagi\n"
+#~ "\n"
+#~ " - Ahli : Bila Anda sangat dekat dengan GNU/Linux dan ingin\n"
+#~ " menginstall Linux sesuka hati, ini adalah kelas instalasi yang pas\n"
+#~ " untuk kamu, dan kamu bisa memilih penggunaan sistem ini sebagaimana\n"
+#~ " pada kelas \"Customized\". JANGAN COBA-COBA PAKAI MODUS INI KALAO\n"
+#~ " belom cukup makan asam garam di dunia PERLINUXAN\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "Sekarang, kamu bisa memilih partisi yang hendak digunakan untuk tempat\n"
+#~ "menginstall sistem Linux-Mandrake pada partisi yang sudah dibuat sebelum\n"
+#~ "nya (dengan Linux atau program partisi lain). Bila belum ada partisi\n"
+#~ "silahkan buat. Pembuatan partisi adalah membagi hard disk komputer menjadi\n"
+#~ "beberapa area untuk dikapling.\n"
+#~ "\n"
+#~ "\n"
+#~ "Bila Anda telah membuat partisi baru, gunakan \"Alokasi otomatis\" untuk\n"
+#~ "secara otomatis membuatkan partisi Linux. Anda bisa pilih drive yang\n"
+#~ "hendak dipartisi dengan mengklik \"hda\" untuk drive pertama IDE,\n"
+#~ "\"hdb\" untuk drive kedua atau \"sda\" untuk drive SCSI pertama dst.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ada dua partisi yang umum: partisi root (/), yang merupakan titik awal\n"
+#~ "hirarki direktori filesystem, dan /boot, yang berisi file-file penting\n"
+#~ "bagi sistem operasi untuk bekerja saat komputer dinyalakan.\n"
+#~ "\n"
+#~ "\n"
+#~ "Karena biasanya proses ini tidak dapat dikembalikan ke asal, maka proses\n"
+#~ "ini sangat menjengkelkan dan membikin stress bagi user yang belum berpe\n"
+#~ "ngalaman. DiskDrake menyederhanakan proses ini sehingga sekarang tidak\n"
+#~ "perlu jengkel dan stress lagi. Silahkan baca dokumentasi dan belajar\n"
+#~ "dulu sebelum memulai.\n"
+#~ "\n"
+#~ "Anda bisa pakai macam-macam tombol di keyboard: bergerak di partisi\n"
+#~ "pakai Tab/panah atas/bawah. Dan di partisi itu Anda bisa tekan:\n"
+#~ " - Ctrl-c untuk buat partisi baru (pada partisi kosong)\n"
+#~ "\n"
+#~ " - Ctrl-d untuk hapus partisi\n"
+#~ "\n"
+#~ " - Ctrl-m untuk set titik mountnya\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Partisi sekarang harus diformat agar dapat digunakan oleh sistem.Kalau ANda\n"
+#~ "mau, Anda bisa format partisi lama yang sudah ada kalau ingin menghapus\n"
+#~ "habisisi datanya\n"
+#~ "Oh ya, partisi lama tidak perlu diformat lho...apalagi kalau\n"
+#~ "Anda masih butuh datanya (misalnya: /home dan /usr/local)."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Paket yang telah dipilih sedang diinstall. Proses ini makan waktu\n"
+#~ "beberapa menit kecuali bila Anda sedang mengupgrade sistem, yang\n"
+#~ "makan waktu lebih lama lagi, bahkan sebelum proses upgrade berlangsung."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Bila DrakX gagal menemukan mouse, atau bila Anda mau\n"
+#~ "tahu apa saja yg telah dilakukannya, Anda akan diberikan daftar\n"
+#~ "mouse di atas.\n"
+#~ "\n"
+#~ "\n"
+#~ "Bila Anda setuju dgn setting DrakX, langsung saja klik 'Ok'\n"
+#~ "Atau, pilih tipe mouse\n"
+#~ "di menu yang lebih pas dengan mouse Anda.\n"
+#~ "\n"
+#~ "\n"
+#~ "Bila mousenya merupakan mouse serial, jangan lupa bilang DrakX\n"
+#~ "port serialnya sekalian."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Bagian ini adalah untuk mengkonfigurasikan Local Area Network\n"
+#~ "(LAN) atau Modem.\n"
+#~ "\n"
+#~ "Bila Anda jawab \"LAN Lokal\" sekarang, DrakX akan mencoba\n"
+#~ "mencari adapter Ethernet di mesin ini. Adapter PCI biasanya akan\n"
+#~ "mudah ditemukan dan diinit otomatis. Tapi kalau Anda punya ISA,\n"
+#~ "deteksi otomatis tidak bisa dilakukan, dan Anda perlu pilih\n"
+#~ "drivernya dari daftar yang akan muncul kemudian.\n"
+#~ "\n"
+#~ "\n"
+#~ "Untuk adapter SCSI, drivernya bisa melakukan deteksi untuk \n"
+#~ "adapter pertama kali, atau Anda perlu berikan parameter yang\n"
+#~ "digunakan oleh drivernya, yang Anda bisa contek dari Control\n"
+#~ "Panelnya Windows.\n"
+#~ "\n"
+#~ "\n"
+#~ "Bila Anda menginstall sistem Linux-Mandrake di mesin yang merupakan\n"
+#~ "bagian dari jaringan, Anda perlu data penting dari orang Network Anda\n"
+#~ "berupa alamat IP, submask atau netmask Jaringan, dan hostname).\n"
+#~ "Bila Anda melakukan konfigurasi jaringan privat di rumah misalnya, Anda\n"
+#~ "perlu pilih alamatnya\n"
+#~ "\n"
+#~ "\n"
+#~ "Pilih \"Dialup dengan modem\" untuk mengkonfigurasi koneksi \n"
+#~ "ke Internet. DrakX akan mencari modem Anda, dan mengkonfigurasikannya\n"
+#~ "Bila ia gagal mendeteksi modem, silahkan pilih serial port yang tepat\n"
+#~ "tempat modem Anda disambungkan."
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linux bisa menggunakan berbagai macam printer. Tiap jenis\n"
+#~ "membutuhkan setingan yang berbeda pula. Perhatikan bahwa\n"
+#~ "walaupun nama default spool print adalah 'lp', Anda bisa\n"
+#~ "tambahkan keterangan lain dengan memberi karakter '|' sebagai\n"
+#~ "batasnya. Jadi misalnya Anda ingin memberi keterangan\n"
+#~ "dengan \"Printer Gue nih|lp\" pada printer, maka dia adalah\n"
+#~ "sekaligus dijadikan printer defaultnya\n"
+#~ "\n"
+#~ "\n"
+#~ "Kalau printernya langsung dicolok ke komputermu, pilih\n"
+#~ "\"Printer Lokal\". Anda akan diminta menyebutkan port tempat\n"
+#~ "si printer disambung, dan pilihlah filter yang tepat.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kalah Anda ingin mengakses printer yang ada di mesin Unix remote,\n"
+#~ "silahkan pilih \"Antrian lpd remote\". Agar bisa digunakan \n"
+#~ "silahkan berikan nama antrian printer di server ini, tidak usah\n"
+#~ "pakai username atau password\n"
+#~ "\n"
+#~ "\n"
+#~ "Atau bila ingin menggunakan printer SMB (yang berarti printernya\n"
+#~ "ada di mesin Windows 9x/NT), Anda harus berikan nama SMBnya\n"
+#~ "(biasanya nama komputernya, bukan nama TCP/IP), dan alamat IP\n"
+#~ "nya sekalian. Jangan lupa username, workgroup, dan password\n"
+#~ "agar bisa mengakses printernya, dan juga jangan ketinggalan nama\n"
+#~ "printernya. Setup ini juga mirip kalau ingin pakai printer Netware\n"
+#~ "tapi nggak usah pakai informasi workgroup."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Hooi, mas, mbak, jawab \"Ya\" di sini! Ibaratnya, kalau Anda\n"
+#~ "reinstall Windows, dia akan overwrite boot sectornya. Kecuali kalau\n"
+#~ "Anda punya bootdisknya, maka Anda tidak akan bisa boot ke GNU/Linux\n"
+#~ "lagi!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Lupakan saja perubahan yang engkau perbuat?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Koneksi Printer"
+
+#~ msgid "Host name:"
+#~ msgstr "Nama Host:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Tipe mouse yang anda punya?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Resolusi otomatis"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Untuk mencari resolusi lain, sekarang gue mau coba-coba.\n"
+#~ "Screennya akan berkedip...\n"
+#~ "Anda bisa mematikannya kalau mau, dan akan bunyi tiit kalau selesai"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Saya bisa cari resolusi lain (misal: 800x600).\n"
+#~ "Tetapi kadangkala bisa bikin mesin hengki (baca: hang)\n"
+#~ "Mau coba?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Tidak ada mode lain\n"
+#~ "COba gunakan video card lain atau ganti monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Pencarian resolusi otomatis"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Mouse ADB Apple"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Mouse ADB Apple (2 tombol)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Mouse ADB Apple (3 tombol atau lebih)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Mouse USB Apple"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Mouse USB Apple (2 tombol)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Mouse USB Apple (3 tombol atau lebih)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Mouse Generik"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "Bus Mouse ATI"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Bus Mouse Microsoft"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Bus Mouse Logitech"
+
+#~ msgid "USB Mouse"
+#~ msgstr "Mouse USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "Mouse USB (3 tombol atau lebih)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A atau yg baruan (serial)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serial)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serial)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serial)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Mouse generik (serial)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Mouse Microsoft (serial)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Mouse Generik 3 tombol (serial)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "gagal mount nfs"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#, fuzzy
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX akan membuat file konfigurasi untuk XFree 3.3 dan XFree 4.0\n"
+#~ "Sebagai defaultnya, server 3.3 akan dipakai karena banyak drivernya.\n"
+#~ "\n"
+#~ "Apakah Anda ingin coba XFree 4.0 saja ?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Kriptografi"
+
+#, fuzzy
+#~ msgid "Configure LAN"
+#~ msgstr "Konfigurasi X"
+
+#, fuzzy
+#~ msgid "End configuration"
+#~ msgstr "konfigurasi"
+
+#, fuzzy
+#~ msgid "Do not set up networking"
+#~ msgstr "Konfigureasi jaringan"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Anda ingin konfigurasikan jaringan lokal untuk sistem ini ?"
+
+#~ msgid "Show less"
+#~ msgstr "Tunjukan sedikit"
+
+#~ msgid "Show more"
+#~ msgstr "Tunjukkan lebih banyak"
+
+#, fuzzy
+#~ msgid "URI for Local printer"
+#~ msgstr "Printer lokal"
+
+#, fuzzy
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Alat printer lokal"
+
+#, fuzzy
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "Device mana yang terhubung ke printer\n"
+#~ "(ingat, /dev/lp0 = LPT1:) ?\n"
+
+#~ msgid "curly"
+#~ msgstr "Si Kribo"
+
+#~ msgid "default"
+#~ msgstr "Default"
+
+#~ msgid "tie"
+#~ msgstr "dasi"
+
+#~ msgid "brunette"
+#~ msgstr "Si Brunet"
+
+#~ msgid "girl"
+#~ msgstr "cewek"
+
+#~ msgid "woman-blond"
+#~ msgstr "gadis pirang"
+
+#~ msgid "automagic"
+#~ msgstr "IP otomatis"
+
+#, fuzzy
+#~ msgid "Network:"
+#~ msgstr "Netmask:"
+
+#, fuzzy
+#~ msgid "Everything configured!"
+#~ msgstr "baca konfigurasi"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Pilih Keyboardmu"
+
+#~ msgid "Normal"
+#~ msgstr "Normal"
+
+#, fuzzy
+#~ msgid "Configure my card"
+#~ msgstr "Konfigurasi X"
+
+#, fuzzy
+#~ msgid "pptp alcatel"
+#~ msgstr "Pengalokasian otomatis"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Cari card PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Cari Device %s ?"
+
+#, fuzzy
+#~ msgid "Small(%dMB)"
+#~ msgstr "(%dMB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Konfigurasi Modem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Anda ingin konfigurasikan koneksi dialup untuk sistem ini ?"
+
+#, fuzzy
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Anda ingin konfigurasikan jaringan lokal untuk sistem ini ?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Cari Device PCI?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Mencari partisi root."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Ini bukan partisi root, silahkan pilih yang lain."
+
+#~ msgid "No root partition found"
+#~ msgstr "Tidak ada partisi root"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Saya tidak bisa gunakan broadcast tanpa domain NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "Partisi mana yang hendak digunakan sebagai partisi root"
+
+#, fuzzy
+#~ msgid "Autologin at startup"
+#~ msgstr "X saat startup"
+
+#, fuzzy
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "Pilih ukuran baru"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Wah, kamu nggak punya cukup space buat Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Otomatis"
+
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Selamat datang di Sang Pemilih Sistem Operasi, LILO!\n"
+#~ "\n"
+#~ "Untuk melihat daftar pilihan, tekan <TAB>.\n"
+#~ "\n"
+#~ "Untuk meload salah satu, tulis namanya, dan tekan <ENTER> atau tunggu %d "
+#~ "detik untuk boot ke default.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Selamat datang di Sang Pemilih Sistem Operasi, SILO!\n"
+#~ "\n"
+#~ "Untuk melihat daftar pilihan, tekan <TAB>.\n"
+#~ "\n"
+#~ "Untuk meload salah satu, tulis namanya, dan tekan <ENTER> atau tunggu %d "
+#~ "detik untuk boot ke default.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "Parameter SILO utama"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "Ini adalah entri di SILO.\n"
+#~ "Anda boleh tambahkan atau mengubah yang sudah ada."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Label ini sudah dipakai"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Instalasi SILO gagal. Ada kesalahan berikut:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX akan coba mencari adapter SCSI PCI. Kalau ketemu dan punya\n"
+#~ "drivernya, maka gue akan menggunakannya otomatis.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kalau adapter SCSI milikmu adalah ISA atau PCI tapi DrakX tidak\n"
+#~ "tahu drivernya, atawa kalau emang ente nggak punya adapter SCSI\n"
+#~ "Anda akan saya tanya lagi apakah benar punya SCSI atau nggak.\n"
+#~ "Kalau nggak jawab \"Tidak\". Kalau punya, jawab \"Ya\" dong.\n"
+#~ "Nanti akan muncul daftar driver, trus pilih deh.\n"
+#~ "\n"
+#~ "\n"
+#~ "Habis itu, DrakX akan tanya lagi apakah akan memberikan parameter\n"
+#~ "tambahan. Pertama kali, biarkan drivernya cari parameter sendiri\n"
+#~ "biasanya sih bisa langsung tokcer.\n"
+#~ "\n"
+#~ "\n"
+#~ "Kalau gagal, jangan lupa bahwa Anda harus tahu informasi hardwarenya\n"
+#~ "cari di manualnya atau bahkan dari Windows (itu juga kalau ente punya)\n"
+#~ "Nah informasi ini yang harus kamu isikan nantinya."
+
+#~ msgid "Shutting down"
+#~ msgstr "Lagi matiin komputer"
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
@@ -5082,21 +7386,12 @@ msgstr "Sebentar yah. agak lama nih untuk mencari di daun2nya"
#~ msgid "Setup SCSI"
#~ msgstr "Setup SCSI"
-#~ msgid "Which language do you want?"
-#~ msgstr "Bahasa apa yang anda inginkan"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "Paket mana yang akan diinstal"
#~ msgid "Local LAN"
#~ msgstr "LAN lokal"
-#~ msgid "Dialup with modem"
-#~ msgstr "Dialup dengan modem"
-
-#~ msgid "Local Printer Options"
-#~ msgstr "Pilihan printer lokal"
-
#~ msgid "server"
#~ msgstr "server"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 6158ff06f..ef1b53c56 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-01-05 18:53-0500\n"
"Last-Translator: Thorarinn Einarsson <thori@mindspring.com>\n"
"Language-Team: Icelandic\n"
@@ -16,43 +16,91 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "SkjАkort"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Veldu skjАkort"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Veldu X ЧjСn"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X ЧjСnn"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Hverju viltu bФta viП?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Lokauppsetning"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Veldu minnisstФrП skjАkortsins"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Veldu valmЖguleika fyrir ЧjСn"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Veldu skjА"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "SkjАr"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -72,39 +120,40 @@ msgstr ""
"ЧaП er MJжG MIKILVфGT aП velja ekki of hАtt tМПnisviП fyrir skjАinn. Hafir\n"
"ЧЗ einhverjar efasemdir, veldu ЧА lФgri stillingar."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "LАrИtt tМПni"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "LСПrИtt tМПni"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "SkjАr ekki skilgreindur"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "SkjАkort ekki skilgreint enn"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Upplausn ekki valin enn"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Viltu prСfa skilgreininguna"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "AПvЖrun: PrСfanir eru varasamar meП Чetta skjАkort"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "PrСfunar skilgreining"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -112,185 +161,169 @@ msgstr ""
"\n"
"prСfaПu aП breyta stillingum"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Villa Аtti sИr staП"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "HФtti eftir %d sekЗndur"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
#, fuzzy
msgid "Is this the correct setting?"
msgstr "Er Чetta rИtt?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Villa kom upp, reyndu aП breyta fФribreytum"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "SjАlfvirk upplausn"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Til aП finna mЖgulegar upplausnir munu nokkrar verПa prСfaПar.\n"
-"SkjАrinn Чinn mun blikka...\n"
-"чЗ getur slЖkkt А honum ef ЧЗ vilt, tЖlvan flautar Чegar ЧvМ er lokiП"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Upplausn"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Veldu upplausn og fjЖlda lita"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "SkjАkort: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ЧjСnn: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "SЩna alla"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Upplausnir"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"иg get reynt aП finna mЖgulegar upplausnir (t.d: 800x600).\n"
-"Stundum getur tЖlvan frosiП viП ЧaП.\n"
-"Viltu prСfa?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Engar leyfilegar upplausnir fundust\n"
-"PrСfaПu aП velja annaП skjАkort eПa skjА"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tegund lyklaborПs: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tegund mЗsar: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "MЗs: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "SkjАr: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "LАrИtt tМПni skjАs: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "LСПrИtt tМПni skjАs: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "SkjАkort: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "SkjАkortsminni: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "Stillingar А litadЩpt"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Upplausnir"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ЧjСnn: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 ЧjСnn: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "UndirbЩ X-Window skilgreiningu"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Skipta um skjА"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Skipta um skjАkort"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Breyta ЧjСns mЖguleikum"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Breyta upplausn"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "SjАlfvirk leit upplausna"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "SЩna upplЩsingar"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "PrСfa aftur"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "HФtta"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "HvaП viltu gera?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "EyПa breytingum?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Halda nЗverandi IP stillingum"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "StimplaПu Чig aftur inn М %s til aП virkja breytingarnar"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "StimplaПu Чig Зt og slАПu А Ctrl-Alt-Backspace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X М rФsingu"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -298,234 +331,231 @@ msgstr ""
"иg get stillt tЖlvuna ЧМna til aП kveikja sjАlfvirkt А X viП rФsingu\n"
"Vilt ЧЗ kveikja А X viП endurrФsingu?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"иg get stillt tЖlvuna ЧМna til aП kveikja sjАlfvirkt А X viП rФsingu\n"
+"Vilt ЧЗ kveikja А X viП endurrФsingu?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Veldu nЩja stФrП"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Veldu forritiП sem ЧЗ vilt nota"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 litir (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 ЧЗsund litir (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 ЧЗsund litir (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miljСn litir (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miljarПar lita (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB eПa meira"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "StaПlaП VGA, 640x480 @ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 SamhФft, 1024x768 @ 87 Hz samtvinnaП (ekkert 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 @ 87 Hz samtvinnaП, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "сsamtvinnaП SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "HАtМПni SVGA, 1024x768 @ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "SkjАr sem rФПur viП 1280x1024 @ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "SkjАr sem rФПur viП 1280x1024 @ 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "SkjАr sem rФПur viП 1280x1024 @ 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "SkjАr sem rФПur viП 1600x1200 @ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "SkjАr sem rФПur viП 1600x1200 @ 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "default"
-msgstr "SjАlfgefiП"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "tie"
-msgstr "Virk"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "SjАlfvirkt IP"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "а fyrsta geira rФsidisksneiПar"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "м rФsifФrsluna (MBR)"
-#: ../../any.pm_.c:65
+#: ../../any.pm_.c:95
#, fuzzy
-msgid "LILO/grub Installation"
+msgid "SILO Installation"
msgstr "Uppsetning LILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Hvert viltu setja rФsistjСrann?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+#, fuzzy
+msgid "LILO/grub Installation"
+msgstr "Uppsetning LILO"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
#, fuzzy
msgid "None"
msgstr "BЗiП"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
#, fuzzy
msgid "Which bootloader(s) do you want to use?"
msgstr "Hverju viltu bФta viП?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "Stillingar LILO"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "RФsitФki"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "SamЧjappaП"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "samЧjappaП"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "TЖf АПur en sjАlfgefin rФsing byrjar"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "SkjАhamur"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "TЖf АПur en sjАlfgefin rФsing byrjar"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "LykilorП"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "LykilorП (aftur)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Takmarka alla rofa А skipanlМnu"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "takmarka"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
#, fuzzy
msgid "Bootloader main options"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Valkosturinn ``Takmarka alla rofa А skipanalМnu'' gerir ekkert Аn lykilorПs"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Mismunandi lykilorП"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
#, fuzzy
msgid ""
"Here are the different entries.\n"
@@ -534,168 +564,356 @@ msgstr ""
"HИrna eru nЗverandi stillingar LILO .\n"
"чЗ getur bФtt viП fleirum eПa breytt Чessum."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "BФta viП"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "BЗiП"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Hverju viltu bФta viП?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "жПru stЩrikerfi (Window$...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Hverju viltu bФta viП?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "жПru stЩrikerfi (Window$...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "RФsikjarna"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "RСt"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "BФta aftan viП"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Les-skrif"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tafla"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "сЖruggt"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Nafn"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "SjАlfgefiП"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "м lagi"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "FjarlФgja"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Autt er ekki leyft"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
#, fuzzy
msgid "This label is already used"
msgstr "чetta nafn er nЗ Чegar М notkun."
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Fann %s %s tengi"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Er kannski eitt enn М vИlinni?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Eru einhver %s tengi М tЖlvunni?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nei"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "JА"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "SkoПaПu vИlbЗnaПarupplЩsingar"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Set inn rekil fyrir %s kortiП %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(eining %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "HvaПa %s rekil viltu prСfa?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"м sumum tilfellum Чarf rekillinn %s auka viПfЖng svo hann virki rИtt,\n"
+" ЧС hann virki vel М flestum tilfellum Аn Чeirra. Viltu setja inn auka\n"
+" viПfЖng eПa leyfa reklinum sjАlfum aП leita aП Чeim upplЩsingum sem\n"
+" hann Чarf? Stundum frystir sjАlfvirk stilling vИlina en ЧaП Фtti ekki\n"
+"aП skemma neitt."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Stilla sjАlfvirkt"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Stilla handvirkt"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "чЗ getur nЗna gefiП upp viПfЖng fyrir %s eininguna."
+
+# ## skrytid
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"чЗ getur nЗna gefiП upp viПfЖng fyrir eininguna %s.\n"
+"ViПfЖng eru gefin upp sem ``viПfang=gildi viПfang2=gildi2 ...''.\n"
+"Til dФmis: ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Stillingar kjarnaeininga:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Innsetning А einingu %s mistСkst.\n"
+"Viltu prСfa aftur meП СlМk viПfЖng?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Velkomin(n) i %s styrikerfisraesistjorann!\n"
+"\n"
+"Sladu a <TAB> til ad fa lista yfir moegulega valkosti.\n"
+"\n"
+"Til raesa einn af theim, sl═du inn nafnid og sidan a <ENTER>\n"
+"eda biddu i %d sekundur thar til sjalfgefin raesing hefst.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr ""
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr ""
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr ""
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "HФtti eftir %d sekЗndur"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "BЗa til"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Aftengja"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "EyПa"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "ForsnМПa"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "EndurstФkka"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tegund"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Tengipunktur"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Skrifa /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "FФra М snillingsham"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Fara М venjulegan ham"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Endurheimta frА skrА"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Vista М skrА"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Endurheimta frА diskling"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Vista А diskling"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Hreinsa allt"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "ForsnМП"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "RАПstafa skjАlfkrafa"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "жll aПal skrАarsniП eru М notkun"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Get ekki bФtt viП disksneiПum"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -703,59 +921,63 @@ msgstr ""
"Til aП fА fleiri disksneiПar, vinsamlega eyddu einni til aП bЗa til "
"viПbСtarsneiП"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Bjarga sneiПatЖflunni"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Endurheimta"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Skrifa sneiПatЖflu"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "EndurhlaПa"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "TСm"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "AnnaП"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Diskminni"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "TСm"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "AnnaП"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tegundir skrАakerfa:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "мtarleg atriПi"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
#, fuzzy
msgid ""
"You have one big FAT partition\n"
@@ -768,94 +990,94 @@ msgstr ""
"иg legg til aП ЧЗ endursnМПir hana\n"
"(smelltu А hana, sМПan А \"EndursnМПa\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Vinsamlega taktu fyrst afrit af Жllum gЖgnum"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lestu vandlega!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Villa"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Tengipunktur: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "TФki: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drifstafur: %s (bara Аgiskun)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tegund: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Byrja: geiri %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, fuzzy, c-format
msgid "Size: %d MB"
msgstr "StФrП: %d MB\n"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s geirar"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "SМvalningur %d til %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "ForsniПinn\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Ekki forsniПinn\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Tengdur\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -863,79 +1085,79 @@ msgstr ""
"SjАlfgefin disksneiП rФst\n"
" (fyrir MS-DOS rФsingu, ekki fyrir LILO)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Stig %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "HlunkastФrП %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskar %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Smelltu А disksneiП"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "StФrП: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Skilgreining: %s sМvalningar, %s hausar, %s geirar\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "RСtardisksneiП"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "А gagnabraut %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Tengipunktur"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Virk"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "BФta viП RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Taka Зr RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Breyta RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Veldu aПgerП"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -947,7 +1169,7 @@ msgstr ""
"AnnaПhvort notar ЧЗ LILO og ЧaП mun ekki virka, eПa ЧЗ notar ekki LILO og "
"sleppir ЧvМ aП hafa /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -958,202 +1180,208 @@ msgstr ""
"1024. sМvalnings А harПa disknum og ЧЗ hefur enga /boot sneiП.\n"
"Ef ЧЗ Фtlar aП nota LILO rФsistjСrann skaltu muna aП bФta viП /boot sneiП"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Nota ``%s'' М staПinn"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Nota ``Aftengja'' fyrst"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Жll gЖgn А Чessari disksneiП tapast"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Halda samt Аfram?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "HФtta Аn Чess aП vista"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "HФtta Аn Чess aП skrifa sneiПatЖfluna?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Breyta tegund sneiПar"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "HvaПa sneiПtegund viltu?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvar viltu tengja tФki %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvar viltu tengja tФki %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Жll gЖgn А Чessari disksneiП tapast"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "ForsnМПing"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "ForsnМП disksneiП %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "ForsnМП disksneiП %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Eftir forsnМПingu allra sneiПa"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "munu Жll gЖgn А Чessum disksneiПum tapast"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "FФra"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "HvaПa disk viltu fФra til?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Geiri"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "HvaПa geira viltu fФra gЖgn til?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "FФri"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "FФri disksneiП..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "DisksneiПatafla drifs %s mun verПa skrifuП А disk!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "чЗ Чarft aП endurrФsa АПur en breytingar taka gildi"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Reikna takmarkanir FAT skrАarkerfis..."
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "EndursnМП"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "HvaПa sneiПtegund viltu?"
+
+#: ../../diskdrake.pm_.c:597
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "Жll gЖgn А Чessari disksneiП tapast"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Жll gЖgn А Чessari disksneiП tapast"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Veldu nЩja stФrП"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "BЗa til nЩja disksneiП"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Byrjunar geiri"
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "StФrП М MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tegund skrАakerfis:"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Valkostur:"
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
#, fuzzy
msgid "File already exists. Use it?"
msgstr "NafniП %s er Чegar М notkun"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "VeljiП skrА"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1161,11 +1389,11 @@ msgstr ""
"DisksneiПin sem var tekin sem afrit er ekki af sЖmu stФrП\n"
"Halda Аfram?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "AПvЖrun"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1173,77 +1401,77 @@ msgstr ""
"Settu diskling М drifiП\n"
"жll gЖgn А Чessum diskling tapast"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Reyni aП endurheimta disksneiПatЖfluna"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "tФki"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "stig"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "stФrП hlutar"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Veldu RAID sem til er fyrir til aП bФta viП"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nЩ"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsniПiП %s"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "kann ekki aП forsnМПa %s af tegundinni %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "tСkst ekki aП tengja nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "tСkst ekki aП tengja: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa viП aП aftengja %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Heiti tengipunkta verПa aП byrja А /."
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, fuzzy, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "чaП er Чegar disksneiП meП tengipunktinn %s"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Villa viП aП opna %s til skriftar: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1251,75 +1479,82 @@ msgstr ""
"чaП kom upp villa. Engin tФki fundust sem unnt er aП bЗa til nЩ skrАakerfi "
"А. Vinsamlegast athugaПu vИlbЗnaПinn М leit aП orsЖk vandamАlsins."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "чЗ hefur ekki neinar disksneiПar"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Veldu tungumАl til aП nota viП innsetningu og kerfisnotkun."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Veldu sniП sem passar viП lyklaborПiП Чitt frА listanum aП ofan"
-
-#: ../../help.pm_.c:13
-#, fuzzy
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Veldu sniП sem passar viП lyklaborПiП Чitt frА listanum aП ofan"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Veldu \"Innsetning\" ef ЧaП eru engar fyrri ЗtgАfur af Linux А tЖlvunni\n"
-"eПa ef ЧЗ vilt nota fleiri en eina dreifingu af Linux.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Veldu \"UppfФrsla\" ef ЧЗ vilt uppfФra fyrri innsetningu af Linux Mandrake:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios),\n"
-"Gold 2000 eПa 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Select:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - RАПlagt: Ef ЧЗ hefur aldrei sett Linux inn АПur.\n"
"\n"
-" - Eftir Сskum: Ef ЧЗ hefur ЧС nokkra reynslu meПiar with Linux, you will "
-"be able to \n"
-"select the usage for the installed system between normal, development or\n"
-"server. Choose \"Normal\" for a general purpose installation of your\n"
-"computer. You may choose \"Development\" if you will be using the computer\n"
-"primarily for software development, or choose \"Server\" if you wish to\n"
-"install a general purpose server (for mail, printing...).\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Expert: If you are fluent with GNU/Linux and want to perform\n"
-"a highly customized installation, this Install Class is for you. You will\n"
-"be able to select the usage of your installed system as for \"Customized\".\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
+#, fuzzy
msgid ""
"Select:\n"
"\n"
@@ -1327,12 +1562,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Select:\n"
"\n"
@@ -1349,250 +1585,516 @@ msgstr ""
"a highly customized installation, this Install Class is for you. You will\n"
"be able to select the usage of your installed system as for \"Customized\".\n"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-# ## skrytid
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-# ## skrytid
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:160
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:218
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:252
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-# ## skrytid
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:257
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-# ## skrytid
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:267
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\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"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:176
-msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Veldu tengiП sem ЧЗ vilt nota. TengiП COM1 М MS Windows er kallaП\n"
-"ttyS0 М Linux, COM2 er ttyS1, o.s.frv."
-# ***********************************************
-# *** HИr fyrir neПan er ЧЩПingin mМn, en ***
-# *********** Иg fСr lМka aПeins yfir ЧaП sem var ************
-# *** ЧЩtt fyrir ofan. :-) - чСrarinn ***
-# *** (иg klАra Чetta seinnipartinn А morgun) ***
-# ***********************************************
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:303
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"чessi hluti hefur aП geyma uppsetningu А staПarnetstengingu\n"
-"(LAN) eПa mСtaldstengingu.\n"
+
+#: ../../help.pm_.c:329
+msgid ""
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
"\n"
-"Ef ЧЗ velur \"StaПarnetstenging\" ЧА mun DrakX\n"
-"reyna aП finna Ethernet netkortiП М vИlinni. м flestum tilvikum\n"
-"finnast PCI netkort og er ЧА kortiП strax tilbЗiП fyrir netuppsetningu.\n"
-"Ef netkortiП Чitt er hinsvegar ISA kort ЧА er sjАlfvirk uppsetning А ЧvМ\n"
-"ekki mЖguleg og ЧЗ Чarft ЧvМ aП velja rekil af listanum sem birtist.\n"
"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
+msgstr ""
+
+#: ../../help.pm_.c:341
+msgid ""
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
-"Ef ЧЗ ert meП SCSI kort ЧА getur ЧЗ lАtiП leita aП ЧvМ fyrst en sМПan\n"
-"gefiП upp viПfЖng ef ЧaП finnst ekki. ViПfЖngin sem ЧЗ Чarft aП nota\n"
-"Фttir ЧЗ aП finna М leiПbeiningunum sem komu meП kortinu.\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"Ef ЧЗ ert aП setja Linux Mandrake А tЖlvu sem er hluti af staПarneti\n"
-"ЧА Фttir ЧЗ aП fА nauПsynlegar upplЩsingar fyrir tengingu hjА kerfisstjСra.\n"
-"UpplЩsingarnar sem ЧЗ Чarft til aП tengjast staПarneti meП TCP/IP eru:\n"
-"IP vistfang, undirnetssМa (netsМa) og tЖlvunafn. Ef ЧЗ ert aП\n"
-"setja upp einkanet ЧА getur ЧЗ sjАlf(ur) АkveПiП hvaПa vistfang,\n"
-"netsМu og nafn ЧЗ notar А tЖlvuna.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"Ef ЧЗ velur \"MСtaldstenging\" ЧА verПur mСtaldstengingin gerП klАr.\n"
-"DrakX mun reyna aП finna mСtaldiП Чitt en ef sЗ leit ber ekki Аrangur\n"
-"ЧА verПur ЧЗ sjАlf(ur) aП velja raПtengiП (COM port) sem mСtaldiП er\n"
-"tengt viП."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:358
msgid ""
-"Enter:\n"
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+#, fuzzy
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Veldu tengiП sem ЧЗ vilt nota. TengiП COM1 М MS Windows er kallaП\n"
+"ttyS0 М Linux, COM2 er ttyS1, o.s.frv."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
+"\n"
+"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
+"\n"
+"\n"
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
+"\n"
+"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"HИrna geturПu stillt innhringitengingu. Ef ЧЗ ert ekki viss um hvaП ЧЗ "
+"Чarft,\n"
+"hafПu ЧА samband viП ЧjСnustuveituna til aП fА ЧФr upplЩsingar."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"SlАПu inn:\n"
"\n"
@@ -1611,7 +2113,23 @@ msgstr ""
"og meП aПrar stillingar, ЧА vФri ekki slФm hugmynd aП hafa samband viП "
"kerfisstjСra.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Ef NIS er notaП А netinu sem ЧЗ ert А, veldu ЧА \"Nota NIS\". Ef ЧЗ ert "
+"ekki\n"
+"viss hvort ЧaП sИ notaП, spurПu ЧА kerfisstjСra netsins."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1620,7 +2138,7 @@ msgstr ""
"Чarft,\n"
"hafПu ЧА samband viП ЧjСnustuveituna til aП fА ЧФr upplЩsingar."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1630,13 +2148,15 @@ msgstr ""
"hvort ЧЗ Чarft aП still Чau, hafПu ЧА samband viП kerfisstjСra eПa "
"ЧjСnustuveitu."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1648,13 +2168,19 @@ msgstr ""
"leyfa\n"
"А мslandi eПa hvar sem ЧЗ ert nЗna aП nota tЖlvuna."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"HИrna velur ЧЗ tМmasvФПiП sem gildir Чar sem ЧЗ bЩrП.\n"
"\n"
@@ -1662,86 +2188,176 @@ msgstr ""
"Linux notar GMT eПa \"Greenwich Mean Time\" og breytir Чeim tМma\n"
"sМПan М staПartМma samkvФmt ЧvМ tМmasvФПi sem ЧЗ velur."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
-#, fuzzy
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux getur notaП margar gerПir prentara. Prentararnir krefjast\n"
-"mismunandi uppsetninga.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"Ef prentarinn Чinn er tengdur beint viП tЖlvuna veldu ЧА \n"
-"\"StaПbundinn prentari\". чЗ Чarft sМПan aП tilgreina viП\n"
-"hvaПa tengi prentarinn er tengdur og velja viПeigandi sМu.\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Ef ЧЗ vilt hafa aПgang aП prentara sem tengdur er viП fjarlФga UNIX vИl\n"
-"(eПa Windows NT meП LPD) ЧА verПur ЧЗ aП velja \"Fjartengdur prentari\".\n"
-"чЗ Чarft ekki aП gefa upp notandanafn eПa lykilorП en Чarft aП vita \n"
-"nafniП А prentrЖПinni А Чeim ЧjСn.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"Ef ЧЗ vilt hafa aПgang aП SMB prentara (prentara sem er tengdur viП\n"
-"fjarlФga Windows 9x/NT vИl), ЧА Чarftu aП gefa upp SMB nafn ЧjСnsins\n"
-"sem oftast er sama og TCP/IP nafn (en Чarf ekki aП vera). Einnig Чarftu\n"
-"IP vistfang, notandanafn, lykilorП, nafn vinnuhСps og auПvitaП sjАlft\n"
-"nafn prentarans. Sama gildir um NetWare prentara, nema ЧЗ Чarft\n"
-"ekkert vinnuhСpsnafn."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"HИrna bЩrПu til rСtarlykilorП fyrir Linux Mandrake kerfiП (lykilorП\n"
"ofurpaursins :-). чЗ verПur aП slА lykilorПiП inn tvisvar til aП \n"
@@ -1758,7 +2374,7 @@ msgstr ""
"А ЧvМ aП ЧЗ gleymir ЧvМ. чЗ Чarft aП geta munaП hvaПa lykilorП\n"
"gefur rСtaraПgang til aП geta breytt uppsetningu og stillingum."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1766,7 +2382,7 @@ msgstr ""
"Ef ЧЗ vilt gera kerfiП Жruggara ЧА Фttir ЧЗ aП velja \"Nota skuggaskrА\" og\n"
"\"Nota MD5 lykilorП\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1776,7 +2392,7 @@ msgstr ""
"viss hvort ЧaП sИ notaП, spurПu ЧА kerfisstjСra netsins."
# ## skrytid
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1820,22 +2436,18 @@ msgstr ""
"you will have created here, and login as root only for administration\n"
"and maintenance purposes."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"чaП er stranglega mФlt meП ЧvМ aП ЧЗ svarir \"JА\" hИrna. Ef ЧЗ setur\n"
-"Microsoft Windows inn sМПar ЧА skrifar ЧaП yfir rФsihluta disksins og\n"
-"gerir ЧИr Чar meП Сkleyft aП rФsa Linux nema ЧЗ hafir veriП bЗin(n)\n"
-"aП ЗtbЗa rФsidiskling."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1848,7 +2460,7 @@ msgstr ""
"Veldu \"м rФsifФrsluna (MBR)\" nema ЧЗ vitir nАkvФmlega\n"
"hvaП ЧЗ ert aП gera."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
#, fuzzy
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
@@ -1857,10 +2469,10 @@ msgstr ""
"Ef um algengar aПstФПur er aП rФПa ЧА er rИtt svar \"/dev/hda\"\n"
"(aПal diskurinn А aПal IDE rАsinni)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1872,7 +2484,7 @@ msgid ""
msgstr ""
# ## skrytid
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -1890,8 +2502,74 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
+" * normal: select normal 80x25 text mode.\n"
+"\n"
+" * <number>: use the corresponding text mode."
+msgstr ""
+"LILO main options are:\n"
+" - Boot device: Sets the name of the device (e.g. a hard disk\n"
+"partition) that contains the boot sector. Unless you know specifically\n"
+"otherwise, choose \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Linear: Generate linear sector addresses instead of\n"
+"sector/head/cylinder addresses. Linear addresses are translated at run\n"
+"time and do not depend on disk geometry. Note that boot disks may not be\n"
+"portable if \"linear\" is used, because the BIOS service to determine the\n"
+"disk geometry does not work reliably for floppy disks. When using\n"
+"\"linear\" with large disks, /sbin/lilo may generate references to\n"
+"inaccessible disk areas, because 3D sector addresses are not known\n"
+"before boot time.\n"
+"\n"
+"\n"
+" - Compact: Tries to merge read requests for adjacent sectors into a\n"
+"single read request. This drastically reduces load time and keeps the\n"
+"map smaller. Using \"compact\" is especially recommended when booting from\n"
+"a floppy disk.\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero.\n"
+"\n"
+"\n"
+" - Video mode: This specifies the VGA text mode that should be selected\n"
+"when booting. The following values are available: \n"
" * normal: select normal 80x25 text mode.\n"
" * <number>: use the corresponding text mode."
+
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+# ## skrytid
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
msgstr ""
"LILO main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1927,10 +2605,11 @@ msgstr ""
" * normal: select normal 80x25 text mode.\n"
" * <number>: use the corresponding text mode."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1953,7 +2632,7 @@ msgstr ""
"stillingarnar sИu viПunnandi. Ef ЧЗ ert ekki sАtt(ur) viП ЧФr X\n"
"stillingar sem eru valdar, ЧА getur ЧЗ breytt Чeim aП eigin vild."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1961,7 +2640,7 @@ msgstr ""
"Ef eitthvaП kemur upp А М X, notaПu ЧА Чessar stillingar til aП stilla\n"
"ЧaП aftur."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -1970,43 +2649,47 @@ msgstr ""
"ЧА \"Nei\"."
# ## skrytid
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"You can now select some miscellaneous options for your system.\n"
"\n"
@@ -2035,7 +2718,7 @@ msgstr ""
"booting, select this option (Note: Num Lock will still not work under\n"
"X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2049,189 +2732,133 @@ msgstr ""
"keyra upp eitthvaП annaП stЩrikerfi, lestu ЧА leiПbeiningarnar\n"
"sem fylgja."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Veldu tungumАl"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Veldu innsetningarflokk"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
#, fuzzy
msgid "Hard drive detection"
msgstr "Nota fМnstillingar А hЖrПum disk(um)"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Tilgreindu mЗs"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Veldu lyklaborП"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "щmislegt"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Setja upp skrАarkerfi"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "ForsnМПa disksneiПar"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Veldu pakka til aП setja inn"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Setja kerfiП inn"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Stilla nettengingu"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "DulkСПun"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Tilgreina tМmasvФПi"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
#, fuzzy
msgid "Configure services"
msgstr "Setja upp prentara"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Setja upp prentara"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "аkveПa rСtarlykilorП"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "BФta viП notanda"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "BЗa til rФsidiskling"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Setja inn rФsihlaПara"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Stilla X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "HФtta innsetningu"
-#: ../../install2.pm_.c:337
-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 ""
-"чЗ verПur aП hafa rСtarsneiП fyrir Linux. BЗПu ЧvМ annaПhvort\n"
-"til rСtarsneiП eПa veldu sneiП sem nЗ Чegar er til А disknum.\n"
-"Veldu sМПan ``Tengipunktur'' og slАПu inn `/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"иg get ekki lesiП disksneiПatЖflu ЧМna, hЗn er of skemmd fyrir mig :-(\n"
-"иg mun reyna aП halda Аfram meП ЧvМ aП hreinsa skemmdar disksneiПar"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Villa viП lestur skrАarinnar $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake gat ekki lesiП sneiПatЖfluna.\n"
-"Haltu Аfram А eigin АbyrgП!"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Hvernig mЗs ertu meП?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Leita aП rСtardisksneiП"
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Hvernig mЗs ertu meП?"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "UpplЩsingar"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: чetta er ekki rСtardisksneiП. Veldu aПra."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Engin rСtarsneiП fannst"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Get ekki notaП Зtsendingu Аn NIS lИns"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Villa viП lestur skrАarinnar $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"сЧekkt villa kom upp sem ekki er hФgt aП meПhЖndla.\n"
-"Haltu Аfram А eigin АbyrgП."
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "%s tengipunktur er nЗ Чegar til"
-
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
+"чЗ verПur aП hafa rСtarsneiП fyrir Linux. BЗПu ЧvМ annaПhvort\n"
+"til rСtarsneiП eПa veldu sneiП sem nЗ Чegar er til А disknum.\n"
+"Veldu sМПan ``Tengipunktur'' og slАПu inn `/'"
-#: ../../install_steps.pm_.c:390
-#, fuzzy, c-format
-msgid "Welcome to %s"
-msgstr "Velkomin(n) М tЖlvuЧrjСtinn"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Ekkert disklingadrif aПgengilegt"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Hef skref `%s'\n"
-
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "чЗ verПur aП hafa diskminni"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2241,101 +2868,80 @@ msgstr ""
"\n"
"Halda samt Аfram?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Veldu ЧА stФrП sem ЧЗ vilt setja inn"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Notandanafn:"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "HeildarstФrП: "
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "зtgАfa: %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "ForsnМП disksneiП %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "StФrП: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Reyni aП endurheimta disksneiПatЖfluna"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Veldu pakkana sem ЧЗ vilt setja inn"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "UpplЩsingar"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "HvaПa disksneiП vilt ЧЗ nota sem rСtardisksneiП"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Innsetning"
+#: ../../install_interactive.pm_.c:92
+#, fuzzy
+msgid "Choose the sizes"
+msgstr "Veldu nЩja stФrП"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Set inn"
+#: ../../install_interactive.pm_.c:93
+#, fuzzy
+msgid "Root partition size in MB: "
+msgstr "RСtardisksneiП"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Vinsamlegast hinkriП, "
+#: ../../install_interactive.pm_.c:94
+#, fuzzy
+msgid "Swap partition size in MB: "
+msgstr "StФrП М MB: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "TМmi eftir "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Heildar tМmi "
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "HvaПa sneiПtegund viltu?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "UndirbЩ innsetningu"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Reikna takmarkanir FAT skrАarkerfis..."
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Set inn pakka %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Viltu samt halda Аfram?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "чaП kom upp villa viП aП raПa pЖkkum:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Nota ЧА X uppsetningu sem er til?"
-
-#: ../../install_steps_gtk.pm_.c:158
-#, fuzzy
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Vinsamlega tilgreindu eftirfarandi"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:199
-#, fuzzy
-msgid "You don't have any windows partitions!"
-msgstr "чЗ hefur ekki neinar disksneiПar"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
+#: ../../install_interactive.pm_.c:113
#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "чЗ hefur ekki neinar disksneiПar"
-
-#: ../../install_steps_gtk.pm_.c:217
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2352,42 +2958,153 @@ msgstr ""
"gЖgnunum ЧМnum.\n"
"SlАПu А 'м lagi' til aП halda Аfram."
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "HvaПa geira viltu fФra gЖgn til?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "RСtardisksneiП"
+
# ******************************************
# ***** ByrjaПi hИrna 4. jan 2000 *******
# *** ATH: чaП er sumt eftir fyrir ofan ***
# ******************************************
#
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "SjАlfvirk endurstФkkun brАst"
-#: ../../install_steps_gtk.pm_.c:265
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Жll gЖgn А Чessari disksneiП tapast"
+
+#: ../../install_interactive.pm_.c:164
#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "HvaПa disksneiП vilt ЧЗ nota sem rСtardisksneiП"
+msgid "Expert mode"
+msgstr "F. snillinga"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:195
#, fuzzy
-msgid "Choose the sizes"
-msgstr "Veldu nЩja stФrП"
+msgid "You don't have enough free space on your Windows partition"
+msgstr "чЗ hefur ekki neinar disksneiПar"
-#: ../../install_steps_gtk.pm_.c:286
+#: ../../install_interactive.pm_.c:210
#, fuzzy
-msgid "Root partition size in MB: "
+msgid "I can't find any room for installing"
+msgstr "Get ekki bФtt viП disksneiПum"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
msgstr "RСtardisksneiП"
-#: ../../install_steps_gtk.pm_.c:288
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Keyri upp netiП"
+
+#: ../../install_interactive.pm_.c:238
#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "StФrП М MB: "
+msgid "Bringing down the network"
+msgstr "Keyri upp netiП"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"сЧekkt villa kom upp sem ekki er hФgt aП meПhЖndla.\n"
+"Haltu Аfram А eigin АbyrgП."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "%s tengipunktur er nЗ Чegar til"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+#: ../../install_steps.pm_.c:450
+#, fuzzy, c-format
+msgid "Welcome to %s"
+msgstr "Velkomin(n) М tЖlvuЧrjСtinn"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Ekkert disklingadrif aПgengilegt"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Hef skref `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+#, fuzzy
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Vinsamlega tilgreindu eftirfarandi"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2396,7 +3113,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2406,105 +3123,191 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
#, fuzzy
msgid "You will be able to choose them more specifically in the next step."
msgstr "чЗ munt geta valiП af meiri nАkvФmni М nФsta skrefi"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
#, fuzzy
msgid "Percentage of packages to install"
msgstr "Veldu pakka til aП setja inn"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Veldu pakkana sem ЧЗ vilt setja inn"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "UpplЩsingar"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Innsetning"
+
+#: ../../install_steps_gtk.pm_.c:272
#, fuzzy
msgid "Automatic dependencies"
msgstr "Athuga tengsli milli pakka"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Opna trИ"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Loka trИ"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Skemmdur pakki"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "зtgАfa: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "StФrП: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, fuzzy, c-format
msgid "Total size: %d / %d MB"
msgstr "HeildarstФrП: "
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Eftirfarandi pakkar verПa fjarlФgПir"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Eftirfarandi pakkar verПa fjarlФgПir"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:496
-#, fuzzy
-msgid "The following packages are going to be installed/removed"
-msgstr "Eftirfarandi pakkar verПa fjarlФgПir"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Set inn"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "аФtla"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Vinsamlegast hinkriП, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "TМmi eftir "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Heildar tМmi "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "HФtta viП"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "UndirbЩ innsetningu"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakkar"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Set inn pakka %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "SamЧykkja notanda"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2514,202 +3317,403 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "EndurstФkka"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Viltu samt halda Аfram?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "чaП kom upp villa viП aП raПa pЖkkum:"
+
+#: ../../install_steps_gtk.pm_.c:573
#, fuzzy
msgid "There was an error installing packages:"
msgstr "чaП kom upp villa viП aП raПa pЖkkum:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Villa kom upp"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
+#, fuzzy
msgid "Please, choose a language to use."
-msgstr ""
+msgstr "Hvernig mЗs ertu meП?"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "LyklaborП"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
#, fuzzy
msgid "Please, choose your keyboard layout."
msgstr "HvaПa lyklaborПsuppsetningu viltu?"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "RСtardisksneiП"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Hver er rСtardisksneiП (/) kerfisins?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "InnsetningaraПferП"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
#, fuzzy
msgid "Which installation class do you want?"
msgstr "Hverskonar innsetningaraПferП viltu?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Innsetning/UppfФrsla"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Er Чetta innsetning eПa uppfФrsla?"
-#: ../../install_steps_interactive.pm_.c:110
-#, fuzzy
-msgid "Automated"
-msgstr "SjАlfvirkt IP"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "AuПvelda"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "SИrlagaПa"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "F. snillinga"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "UppfФrsla"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Venjulega"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "UpplЩsingar"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Forritun"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Sem ЧjСn"
-#: ../../install_steps_interactive.pm_.c:141
+#: ../../install_steps_interactive.pm_.c:228
#, fuzzy
-msgid "Which usage is your system used for ?"
+msgid "What is your system used for?"
msgstr "а hvaПa tМmasvФПi ertu?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
#, fuzzy
msgid "Please, choose the type of your mouse."
msgstr "Hvernig mЗs ertu meП?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "MЗsartengi"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
#, fuzzy
msgid "Please choose on which serial port your mouse is connected to."
msgstr "ViП hvaПa raПtengi er mЗsin ЧМn tengd?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Stilli PCMCIA kort..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Configuring IDE"
msgstr "Uppsetning"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "engar reiПubЗnar disksneiПar"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-#, fuzzy
-msgid "Please choose a partition to use as your root partition."
-msgstr "HvaПa disksneiП vilt ЧЗ nota sem rСtardisksneiП"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Veldu tengipunktana"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"иg get ekki lesiП disksneiПatЖflu ЧМna, hЗn er of skemmd fyrir mig :-(\n"
+"иg mun reyna aП halda Аfram meП ЧvМ aП hreinsa skemmdar disksneiПar"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake gat ekki lesiП sneiПatЖfluna.\n"
+"Haltu Аfram А eigin АbyrgП!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "RСtardisksneiП"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Hver er rСtardisksneiП (/) kerfisins?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"чЗ verПur aП rФsa tЖlvuna aftur svo breytingar А sneiПatЖflunni taki gildi"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Veldu ЧФr disksneiПar sem А aП forsnМПa"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Athuga skemmdar blokkir?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
#, fuzzy
msgid "Formatting partitions"
msgstr "ForsnМП disksneiП %s"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Ekki nФgjanlegt diskminni fyrir innsetningu. BФttu viП ЧaП"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Leita aП fАanlegum pЖkkum"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Leita aП pЖkkum til aП uppfФra"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Venjulega"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "AuПvelda"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "SИrlagaПa"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Veldu ЧА stФrП sem ЧЗ vilt setja inn"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Val А pakkahСp"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2717,178 +3721,11 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Halda nЗverandi IP stillingum"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Endurstilla netstillingar nЗna"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ekki setja upp netstillingar"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Netstillingar"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "LAN netuppsetning er Чegar til staПar. HvaП viltu gera?"
-
-#: ../../install_steps_interactive.pm_.c:421
-#, fuzzy
-msgid "Do you want to configure a local network for your system?"
-msgstr "Viltu setja upp staПarnet (ekki innhringingu)?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "ekkert netkort fannst"
-
-#: ../../install_steps_interactive.pm_.c:449
-#, fuzzy
-msgid "Modem Configuration"
-msgstr "Uppsetning"
-
-#: ../../install_steps_interactive.pm_.c:450
-#, fuzzy
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Viltu setja upp staПarnet (ekki innhringingu)?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Stilli nettФki %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"SlАПu inn IP uppsetningu Чessarar vИlar. Hver fФrsla\n"
-"А aП vera IP tala rituП meП punkt А milli.\n"
-"(dФmi 192.168.1.13)"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "SjАlfvirkt IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP vistfang:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "NetsМa:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP vistfang А aП vera А sniПinu 192.168.1.10"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Stilli staПarnetstenginu"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"SlАПu inn heiti vИlarinnar. VИlarheitiП Чarf aП vera fullt \n"
-"heiti, t.d. odinn.grimsey.is чЗ mАtt lМka slА inn IP \n"
-"vistfang gАttarinnar ef ЧЗ veist hvaП ЧaП vistfang er.\n"
-"GАttin gefur ЧИr aПgang Зt Зr staПarnetinu (t.d. А InternetiП)."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "NafnamiПlari:"
-
-# ## skrytid
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "GАtt (tФkiП):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "GАtt:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "VИlarheiti:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Reyna aП finna mСtald?"
-
-#: ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "HvaПa raПtengi er mСtaldiП tengt viП?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Innhringistillingar"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nafn tengingar"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "SМmanЗmer"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Notendanafn"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AuПkenning"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "MeП skriftu"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "MeП skjАhermi"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nafn lИns"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "AПal nafnamiПlari"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Vara nafnamiПlari"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
#, fuzzy
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
@@ -2971,89 +3808,95 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvИlina ЧaПan sem А aП sФkja pakkanna"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Hef samband viП vИlina til aП sФkja lista yfir fАanlega pakka"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
#, fuzzy
msgid "Please choose the packages you want to install."
msgstr "Veldu pakkana sem ЧЗ vilt setja inn"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
msgstr "а hvaПa tМmasvФПi ertu?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Veltu stilla tЖlvuklukkuna А GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "HvaПa sneiПtegund viltu?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Ekkert lykilorП"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Nota skuggaskrА"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "skuggi"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Nota MD5 lykilorП"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "Gular sМПur (yp)"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "чetta lykilorП er of einfalt (verПur aП vera minnst %d stafa langt)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "AuПkenning NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS lИn"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS ЧjСnn"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "SamЧykkja notanda"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "BФta viП notanda"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s er nЗ Чegar til)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3063,62 +3906,91 @@ msgstr ""
"SlАПu inn notanda\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Notandanafn:"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Skel"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "чetta lykilorП er of einfalt"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Vinsamlega slАПu inn notandanafn"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "NotandanafniП mА bara innihalda litla stafi, tЖlustafi, `-' og `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "чetta notandanafn er nЗ Чegar til"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"SИrsmМПaПur rФsidisklingur gerir ЧИr kleyft aП rФsa Linux Аn Чess aП nota "
+"rФsistjСra\n"
+" eins og LILO. чetta kemur aП gagni ef ЧЗ vilt ekki setja upp LILO А vИlinni "
+"eПa ef\n"
+" annaП stЩrikerfi hefur fjarlФgt LILO eПa LILO virkar ekki meП ЧМnum "
+"vИlbЗnaПarstillingum.\n"
+" RФsidiskling mА einnig nota meП Linux Mandrake 'rescue' disklingnum svo "
+"hФgt sИ aП bjarja\n"
+" vИlinni ef alvarleg vandamАl koma upp.\n"
+"Viltu bЗa til rФsidiskling fyrir vИlina ЧМna?"
+
+#: ../../install_steps_interactive.pm_.c:869
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
#, fuzzy
msgid "Second floppy drive"
msgstr "AnnaП drif"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -3143,188 +4015,149 @@ msgstr ""
" vИlinni ef alvarleg vandamАl koma upp.\n"
"Viltu bЗa til rФsidiskling fyrir vИlina ЧМna?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til staПar"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Veldu disklingadrifiП sem ЧЗ vilt nota til aП gera rФsidisk"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Settu tСman diskling М drif %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "BЩ til rФsidiskling..."
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Innsetning LILO brАst sЖkum eftirfarandi villu:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Viltu nota SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Stillingar SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"HИrna eru nЗverandi stillingar SILO .\n"
-"чЗ getur bФtt viП fleirum eПa breytt Чessum."
-
-#: ../../install_steps_interactive.pm_.c:858
-#, fuzzy
-msgid "Partition"
-msgstr "RСtardisksneiП"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "чetta nafn er nЗ Чegar М notkun."
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Innsetning SILO brАst sЖkum eftirfarandi villu:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Set upp rФsistjСrann..."
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Viltu nota aboot?"
+msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Sel stillingar"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP sel:"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP Sel:"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Sel А aП vera http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Sel А aП vera ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Innsetning LILO brАst sЖkum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Velkomin(n) М tЖlvuЧrjСtinn"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "LИlegt"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "LАgt"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "MiПlungs"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "HАtt"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "TaugaveiklaП"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "щmsar spurningar:"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(getur skaПaП vistuП gЖgn)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Nota fМnstillingar А hЖrПum disk(um)"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Veldu Жryggisstig"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "NАkvФm stФrП vinnsluminnis (fann %d MB)"
# ## skrytid
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "SjАlfvirk tenging aukatФkja"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Kveikja А NUMLOCK viП eftir rФsingu"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "SlАПu inn vinnsluminni М MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
#, fuzzy
msgid "Can't use supermount in high security level"
msgstr "Stilli ЖryggisЧrep"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Leita aП PCI kortum?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Nota ЧА X uppsetningu sem er til?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tСman diskling М drif %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
#, fuzzy
msgid "Creating auto install floppy"
msgstr "UndirbЩ innsetningu"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3334,7 +4167,7 @@ msgstr ""
"\n"
"Viltu virkilega hФtta nЗna?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3355,153 +4188,18 @@ msgstr ""
"Frekari upplЩsingar um hvernig А aП stilla vИlina eftir innsetninguna er aП\n"
"finna М viПeigandi kafla М Official Linux Mandrake User's Guide bСkinni."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Slekk А tЖlvunni"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Set inn rekil fyrir %s kortiП %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(eining %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "HvaПa %s rekil viltu prСfa?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"м sumum tilfellum Чarf rekillinn %s auka viПfЖng svo hann virki rИtt,\n"
-" ЧС hann virki vel М flestum tilfellum Аn Чeirra. Viltu setja inn auka\n"
-" viПfЖng eПa leyfa reklinum sjАlfum aП leita aП Чeim upplЩsingum sem\n"
-" hann Чarf? Stundum frystir sjАlfvirk stilling vИlina en ЧaП Фtti ekki\n"
-"aП skemma neitt."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Stilla sjАlfvirkt"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Stilla handvirkt"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "чЗ getur nЗna gefiП upp viПfЖng fyrir %s eininguna."
-
-# ## skrytid
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"чЗ getur nЗna gefiП upp viПfЖng fyrir eininguna %s.\n"
-"ViПfЖng eru gefin upp sem ``viПfang=gildi viПfang2=gildi2 ...''.\n"
-"Til dФmis: ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Stillingar kjarnaeininga:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Innsetning А einingu %s mistСkst.\n"
-"Viltu prСfa aftur meП СlМk viПfЖng?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Viltu leita aП PCMCIA kortun?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Stilli PCMCIA kort..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Leita aП %s kortum?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Fann %s %s tengi"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Er kannski eitt enn М vИlinni?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Eru einhver %s tengi М tЖlvunni?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nei"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "JА"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "SkoПaПu vИlbЗnaПarupplЩsingar"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Keyri upp netiП"
-
-#: ../../install_steps_interactive.pm_.c:1207
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "Keyri upp netiП"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux Mandrake innsetning %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> milli hluta | <BilslА> velur | <F12> nФsti skjАr "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Augnablik..."
@@ -3511,7 +4209,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "сljСst (%s), vertu nАkvФmari\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "SlФm hugmynd, reyndu aftur\n"
@@ -3525,471 +4223,979 @@ msgstr " ? (sjАlfgefiП %s) "
msgid "Your choice? (default %s) "
msgstr "чitt val? (sjАlfgefiП %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "чitt val? (sjАlfgefiП %s slАПu inn `none' fyrir engan) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "TИkkneskt"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "чЩskt"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "SpФnskt"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finnskt"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Franskt"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "PСlskt"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "RЗssneskt"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Breskt lyklaborП"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "BandarМskt lyklaborП"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
#, fuzzy
msgid "Armenian (old)"
msgstr "ArmenМskt"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
#, fuzzy
msgid "Armenian (typewriter)"
msgstr "ArmenМskt (hljСПfrФПilegt)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "ArmenМskt (hljСПfrФПilegt)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "BelgМskt"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BЗlgarskt"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "BrasilМskt"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
#, fuzzy
msgid "Belarusian"
msgstr "BЗlgarskt"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Svissneskt (ЧЩsk uppsetn.)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Svissneskt (frЖnsk uppsetn.)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Danskt"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Norkst"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Eistlenskt"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "GeorgМskt (\"RЗssneskt\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "GeorgМskt (\"LatМnu\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GrМskt"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Ungverskt"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "мsraelМskt"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "мsraelМskt (hljСПfr.)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "зkraМnkst"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "мslenskt"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "мtalskt"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "SuПur amerМskt"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Hollenskt"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "LithАenМskt AZERTY"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "LithАenМskt AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "LithАenМskt \"tЖlurЖП\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "LithАenМskt \"hljСПfrФПilegt\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
#, fuzzy
msgid "Polish (qwerty layout)"
msgstr "Svissneskt (ЧЩsk uppsetn.)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
#, fuzzy
msgid "Polish (qwertz layout)"
msgstr "Svissneskt (ЧЩsk uppsetn.)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortЗgМskt"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "KanadМskt (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "RЗssneskt (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "SФnskt"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "SlСvenskt"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SlСvakМskt"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "ThФlenskt lyklaborП"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkneskt (hefПbundiП \"F\" mСdel)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkneskt (nЗtМma \"Q\" mСdel)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "зkraМnkst"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "BandarМskt (alЧjСПlegt)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "LithАenМskt \"tЖlurЖП\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "JЗgoslavneskt (LatМnu upps.)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-# '\240' is 'А' (aacute) in cp437 encoding
-# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
-# '\221' is 'Ф' (ae) in cp437 encoding
-# '\241' is 'М' (iacute) in cp437 encoding
-# '\242' is 'С' (oacute) in cp437 encoding
-# '\230' is 'Щ' (yacute) in cp437 encoding
-# '\243' is 'З' (oacute) in cp437 encoding
-# there is no 'Ч' nor 'П' in cp437; changed respectively to 'th' and 'd'
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+#, fuzzy
+msgid "Sun - Mouse"
+msgstr "USB mЗs"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr ""
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "stig"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "raПtengd"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr ""
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Almenn Чriggja hnappa mЗs"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech mЗs (raПtengd, gЖmul C7 tegund)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Engin mЗs"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+#, fuzzy
+msgid "none"
+msgstr "BЗiП"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Engin mЗs"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Er Чetta rИtt?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "Sel stillingar"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Viltu prСfa skilgreininguna"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Stilla nettengingu"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "HvaПa disk viltu fФra til?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
-"\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Nafn tengingar"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "Uppsetning"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
msgstr ""
-"Velkomin(n) ║ LILO st≤rikerfisr▒sistj╒rann!\n"
-"\n"
-"Sl═du ═ <TAB> til ad f═ lista yfir m■gulega valkosti.\n"
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "Sel stillingar"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "SМmanЗmer"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Hringja inn meП mСtaldi"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Tengipunktur"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "LykilorП"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "LykilorП"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "PrСfunar skilgreining"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "HvaПa sneiПtegund viltu?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Hvernig prentara ertu meП?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Halda samt Аfram?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"Til r▒sa einn af theim, sl═du inn nafnid og s║dan ═ <ENTER>\n"
-"eda b║ddu ║ %d sekёndur thar til sj═lfgefin r▒sing hefst.\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 ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "а hvaПa tМmasvФПi ertu?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
msgstr ""
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Veldu nЩja stФrП"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "ViП hvaПa raПtengi er mЗsin ЧМn tengd?"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
msgstr ""
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Viltu prСfa skilgreininguna"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "Uppsetning"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Viltu nota aboot?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Reyna aП finna mСtald?"
+
+#: ../../netconnect.pm_.c:539
+#, fuzzy
+msgid "Please choose which serial port your modem is connected to."
+msgstr "HvaПa raПtengi er mСtaldiП tengt viП?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Innhringistillingar"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nafn tengingar"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "SМmanЗmer"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Notendanafn"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AuПkenning"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "MeП skriftu"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "MeП skjАhermi"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Nafn lИns"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "AПal nafnamiПlari"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Vara nafnamiПlari"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Nafn tengingar"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Stilla nettengingu"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "HvaПa disk viltu fФra til?"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "HvaПa disk viltu fФra til?"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Nafn tengingar"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Nafn tengingar"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Stilla nettengingu"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Veldu prenttengingu"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:21
+#: ../../netconnect.pm_.c:641
#, fuzzy
-msgid "Sun - Mouse"
-msgstr "USB mЗs"
+msgid "Configure a normal modem connection"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:23
+#: ../../netconnect.pm_.c:661
#, fuzzy
-msgid "Apple ADB Mouse"
-msgstr "ATI brautarmЗs"
+msgid "Configure an ISDN connection"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:24
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
+
+#: ../../netconnect.pm_.c:668
#, fuzzy
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "USB mЗs (3 eПa fleiri takkar)"
+msgid "External ISDN modem"
+msgstr "F. snillinga"
-#: ../../mouse.pm_.c:25
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
#, fuzzy
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "USB mЗs (3 eПa fleiri takkar)"
+msgid "Connect to the Internet"
+msgstr "Nafn tengingar"
-#: ../../mouse.pm_.c:26
+#: ../../netconnect.pm_.c:672
#, fuzzy
-msgid "Apple USB Mouse"
-msgstr "USB mЗs"
+msgid "What kind is your ISDN connection?"
+msgstr "ViП hvaПa raПtengi er mЗsin ЧМn tengd?"
-#: ../../mouse.pm_.c:27
+#: ../../netconnect.pm_.c:691
#, fuzzy
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "USB mЗs (3 eПa fleiri takkar)"
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:28
+#: ../../netconnect.pm_.c:700
#, fuzzy
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "USB mЗs (3 eПa fleiri takkar)"
+msgid "France"
+msgstr "HФtta viП"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Almenn mЗs (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Almenn Чriggja hnappa mЗs (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "F. snillinga"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "HvaПa sneiПtegund viltu?"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI brautarmЗs"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft brautarmЗs"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Netstillingar"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech brautarmЗs"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Viltu prСfa skilgreininguna"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB mЗs"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Stilla nettengingu"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB mЗs (3 eПa fleiri takkar)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nafn tengingar"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Engin mЗs"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "LAN netuppsetning er Чegar til staПar. HvaП viltu gera?"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft ЗtgАfa 2.1A eПa nЩrri (raПtengd)"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "HvaПa disk viltu fФra til?"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (raПtengd)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Netstillingar"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (raПtengd)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (raПtengd)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "ekkert netkort fannst"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (raПtengd)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Stilli staПarnetstenginu"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (raПtengd)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"SlАПu inn heiti vИlarinnar. VИlarheitiП Чarf aП vera fullt \n"
+"heiti, t.d. odinn.grimsey.is чЗ mАtt lМka slА inn IP \n"
+"vistfang gАttarinnar ef ЧЗ veist hvaП ЧaП vistfang er.\n"
+"GАttin gefur ЧИr aПgang Зt Зr staПarnetinu (t.d. А InternetiП)."
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (raПtengd)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "VИlarheiti:"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (raПtengd)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech mЗs (raПtengd, gЖmul C7 tegund)"
+#: ../../network.pm_.c:302
+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 ""
+"SlАПu inn IP uppsetningu Чessarar vИlar. Hver fФrsla\n"
+"А aП vera IP tala rituП meП punkt А milli.\n"
+"(dФmi 192.168.1.13)"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (raПtengd)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Stilli nettФki %s"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Almenn mЗs (raПtengd)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "SjАlfvirkt IP"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft samhФfП (raПtengd)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "IP vistfang:"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Almenn Чriggja hnappa mЗs (raПtengd)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "NetsМa:"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (raПtengd)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Er Чetta rИtt?"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP vistfang А aП vera А sniПinu 192.168.1.10"
+
+#: ../../network.pm_.c:341
+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 ""
+"SlАПu inn heiti vИlarinnar. VИlarheitiП Чarf aП vera fullt \n"
+"heiti, t.d. odinn.grimsey.is чЗ mАtt lМka slА inn IP \n"
+"vistfang gАttarinnar ef ЧЗ veist hvaП ЧaП vistfang er.\n"
+"GАttin gefur ЧИr aПgang Зt Зr staПarnetinu (t.d. А InternetiП)."
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "NafnamiПlari:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "GАtt:"
+
+# ## skrytid
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "GАtt (tФkiП):"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "Lokauppsetning"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP sel:"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP Sel:"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Sel А aП vera http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Sel А aП vera ftp://..."
-#: ../../partition_table.pm_.c:528
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -3999,21 +5205,21 @@ msgstr ""
"Eina lausnins er aП fФra aПalsneiПar svo aП gatiП verПi viП hliПina А "
"viПbСtasneiП"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "villa viП lestur Зr skrАnni %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Villa viП lestur Зr skrАnni %s: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Skemmd afritsskrА"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Villa viП aП skrifa М skrАna %s"
@@ -4050,42 +5256,56 @@ msgstr "EndursnМП..."
msgid "maybe"
msgstr "RФsikjarna"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr ""
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr ""
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr ""
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "SЩna fФrri"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "SЩna fleiri"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "StaПbundinn prentari"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "ViПfЖng fyrir fjartengda lpd prentara"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Fjartengd prentrЖП"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "Fjartengdur"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "ViПfЖng NetWare prentara"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "PrenttФki:"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Leita aП tФkjum..."
@@ -4099,11 +5319,11 @@ msgstr "PrСfa tengi"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Prentari af gerПinni \"%s\" fannst А "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "StaПbundiП prenttФki"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
#, fuzzy
msgid ""
"What device is your printer connected to \n"
@@ -4112,16 +5332,16 @@ msgstr ""
"ViП hvaПa tФki er prentarinn Чinn tengdur\n"
" (AthugaПu aП /dev/lp0 er ЧaП sama og LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
#, fuzzy
msgid "Printer Device"
msgstr "PrenttФki:"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "ViПfЖng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4131,20 +5351,20 @@ msgstr ""
"upp vИlarheiti prentЧjСnsins og prentrЖПina А Чeim sem\n"
"ЧЗ vilt senda prentverkin М."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
#, fuzzy
msgid "Remote hostname"
msgstr "PrentЧjСnn:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Fjartengd prentrЖП"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB/Windows 9x/NT prentviПfЖng"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4158,27 +5378,27 @@ msgstr ""
"Аsamt samnЩtingarheiti prentarans, notandaheiti, lykilorПi og\n"
"vinnuhСpsupplЩsingum fyrir prentarann."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Heiti SMB ЧjСns"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "Vistfang SMB ЧjСns"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "SamnЩtingarheiti"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "VinnuhСpur"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "ViПfЖng NetWare prentara"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4190,122 +5410,147 @@ msgstr ""
"Аsamt heiti prentaraПar, notandaheiti og lykilorПi fyrir\n"
"prentarann."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "PrentЧjСnn"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Heiti prentraПar"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "ViПfЖng staПbundinna prentara"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "Stillingar А prentara"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "LИlegt"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Hvernig prentara ertu meП?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Viltu prenta Зt prufublaПsМПu?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Prenta Зt prufublaПsМПu(r)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "JА, prenta ASCII prufusМПu"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "JА, prenta PostScript prufusМПu"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "JА, prenta bАПar prufusМПur"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Stilla prentara"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Hvernig prentara ertu meП?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Stillingar А prentara"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "PappМrsstФrП"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Koma blaПsМПu Зt eftirА?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint rekilvalkostir"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Stillingar А litadЩpt"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr ""
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr ""
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Afstalla texta (trЖppurnar)?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr ""
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
#, fuzzy
msgid "Extra Text options"
msgstr "Stillingar А litadЩpt"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Viltu prenta Зt prufublaПsМПu?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Prenta Зt prufublaПsМПu(r)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Viltu setja upp prentara?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
#, fuzzy
msgid ""
"Here are the following print queues.\n"
@@ -4314,20 +5559,69 @@ msgstr ""
"HИrna eru nЗverandi stillingar LILO .\n"
"чЗ getur bФtt viП fleirum eПa breytt Чessum."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "аФtla"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Hvernig er Чessi prentari tengdur?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Veldu prenttengingu"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
#, fuzzy
msgid "Remove queue"
msgstr "Fjartengd prentrЖП"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Allar prentraПir (sem taka viП prentverkum) Чurfa heiti\n"
+"(oft bara lp) og mЖppu. HvaПa heiti og mЖppu viltu nota fyrir\n"
+"Чessa prentrЖП?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "StaПbundinn prentari"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Stilla handvirkt"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "UpplЩsingar"
+
+#: ../../printerdrake.pm_.c:419
#, fuzzy
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
@@ -4339,60 +5633,60 @@ msgstr ""
"(oft bara lp) og mЖppu. HvaПa heiti og mЖppu viltu nota fyrir\n"
"Чessa prentrЖП?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
#, fuzzy
msgid "Name of queue"
msgstr "Heiti prentraПar:"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
#, fuzzy
msgid "Spool directory"
msgstr "Mappa prentraПar:"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
#, fuzzy
msgid "Printer Connection"
msgstr "Veldu prenttengingu"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki nСgu margar disksneiПar fyrir RAID %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4400,7 +5694,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4408,13 +5702,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4424,51 +5718,51 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4476,7 +5770,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4484,115 +5778,247 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Veldu ЧФr ЧjСnustur sem skal sjАlfkrafa keyra viП rФsingu"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-# '\240' is 'А' (aacute) in cp437 encoding
-# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
-# '\221' is 'Ф' (ae) in cp437 encoding
-# '\241' is 'М' (iacute) in cp437 encoding
-# '\242' is 'С' (oacute) in cp437 encoding
-# '\230' is 'Щ' (yacute) in cp437 encoding
-# '\243' is 'З' (oacute) in cp437 encoding
-# there is no 'Ч' nor 'П' in cp437; changed respectively to 'th' and 'd'
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Velkomin(n) ║ SILO st≤rikerfisr▒sistj╒rann!\n"
-"\n"
-"Sl═du ═ <TAB> til ad f═ lista yfir m■gulega valkosti.\n"
-"\n"
-"Til r▒sa einn af theim, sl═du inn nafnid og s║dan ═ <ENTER>\n"
-"eda b║ddu ║ %d sekёndur thar til sj═lfgefin r▒sing hefst.\n"
-"\n"
+"иg get ekki lesiП disksneiПatЖflu ЧМna, hЗn er of skemmd fyrir mig :-(\n"
+"иg mun reyna aП halda Аfram meП ЧvМ aП hreinsa skemmdar disksneiПar"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
#, fuzzy
msgid "Configure LILO/GRUB"
msgstr "Stilla X"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
#, fuzzy
msgid "Create a boot floppy"
msgstr "BЗa til rФsidiskling"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
#, fuzzy
msgid "Format floppy"
msgstr "ForsnМП"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
#, fuzzy
msgid "Choice"
msgstr "tФki"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Innsetning LILO brАst sЖkum eftirfarandi villu:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tafla"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Stilla X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tafla"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Veldu prenttengingu"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Hringja inn meП mСtaldi"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "Les uppsetningarskrА"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Uppsetning"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Til hamingju!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4649,23 +6075,30 @@ msgstr "Stilli ЖryggisЧrep"
msgid "Choose the tool you want to use"
msgstr "Veldu forritiП sem ЧЗ vilt nota"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "HvaПa lyklaborПsuppsetningu viltu?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Breyta upplausn"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Hvernig mЗs ertu meП?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "ekkert serial_usb fannst\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Herma eftir ЧriПja hnapp?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "ViП hvaПa raПtengi er mЗsin ЧМn tengd?"
@@ -4878,8 +6311,620 @@ msgstr "Leita aП \"laufblЖПum\"."
msgid "Finding leaves takes some time"
msgstr "чessi leit mun taka dАlМtinn tМma"
-#~ msgid "Recommended"
-#~ msgstr "AuПvelda"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Sel stillingar"
+
+#, fuzzy
+msgid "Internet"
+msgstr "EndursnМП..."
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "tФki"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "MargmiПlun"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "MargmiПlun"
+
+# ../../share/compssUsers
+msgid "KDE"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "MargmiПlun"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "MargmiПlun"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "BЗiП"
+
+msgid "Documentation"
+msgstr "LeiПbeiningar"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "MargmiПlun"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Veldu ЧА stФrП sem ЧЗ vilt setja inn"
+
+#~ msgid "Total size: "
+#~ msgstr "HeildarstФrП: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Endurstilla netstillingar nЗna"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Nafn tengingar"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Nafn tengingar"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Nafn tengingar"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Nafn tengingar"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "чЩskt"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "чЩskt"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "HvaП viltu gera?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Innsetning"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "EndurstФkka"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "HvaПa sneiПtegund viltu?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Veldu \"Innsetning\" ef ЧaП eru engar fyrri ЗtgАfur af Linux А tЖlvunni\n"
+#~ "eПa ef ЧЗ vilt nota fleiri en eina dreifingu af Linux.\n"
+#~ "\n"
+#~ "Veldu \"UppfФrsla\" ef ЧЗ vilt uppfФra fyrri innsetningu af Linux Mandrake:\n"
+#~ "%s eПa %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - RАПlagt: Ef ЧЗ hefur aldrei sett Linux inn АПur.\n"
+#~ "\n"
+#~ " - Eftir Сskum: Ef ЧЗ hefur ЧС nokkra reynslu meПiar with Linux, you will "
+#~ "be able to \n"
+#~ "select the usage for the installed system between normal, development or\n"
+#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
+#~ "computer. You may choose \"Development\" if you will be using the computer\n"
+#~ "primarily for software development, or choose \"Server\" if you wish to\n"
+#~ "install a general purpose server (for mail, printing...).\n"
+#~ "\n"
+#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
+#~ "a highly customized installation, this Install Class is for you. You will\n"
+#~ "be able to select the usage of your installed system as for \"Customized\".\n"
+
+# ***********************************************
+# *** HИr fyrir neПan er ЧЩПingin mМn, en ***
+# *********** Иg fСr lМka aПeins yfir ЧaП sem var ************
+# *** ЧЩtt fyrir ofan. :-) - чСrarinn ***
+# *** (иg klАra Чetta seinnipartinn А morgun) ***
+# ***********************************************
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "чessi hluti hefur aП geyma uppsetningu А staПarnetstengingu\n"
+#~ "(LAN) eПa mСtaldstengingu.\n"
+#~ "\n"
+#~ "Ef ЧЗ velur \"StaПarnetstenging\" ЧА mun DrakX\n"
+#~ "reyna aП finna Ethernet netkortiП М vИlinni. м flestum tilvikum\n"
+#~ "finnast PCI netkort og er ЧА kortiП strax tilbЗiП fyrir netuppsetningu.\n"
+#~ "Ef netkortiП Чitt er hinsvegar ISA kort ЧА er sjАlfvirk uppsetning А ЧvМ\n"
+#~ "ekki mЖguleg og ЧЗ Чarft ЧvМ aП velja rekil af listanum sem birtist.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef ЧЗ ert meП SCSI kort ЧА getur ЧЗ lАtiП leita aП ЧvМ fyrst en sМПan\n"
+#~ "gefiП upp viПfЖng ef ЧaП finnst ekki. ViПfЖngin sem ЧЗ Чarft aП nota\n"
+#~ "Фttir ЧЗ aП finna М leiПbeiningunum sem komu meП kortinu.\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef ЧЗ ert aП setja Linux Mandrake А tЖlvu sem er hluti af staПarneti\n"
+#~ "ЧА Фttir ЧЗ aП fА nauПsynlegar upplЩsingar fyrir tengingu hjА kerfisstjСra.\n"
+#~ "UpplЩsingarnar sem ЧЗ Чarft til aП tengjast staПarneti meП TCP/IP eru:\n"
+#~ "IP vistfang, undirnetssМa (netsМa) og tЖlvunafn. Ef ЧЗ ert aП\n"
+#~ "setja upp einkanet ЧА getur ЧЗ sjАlf(ur) АkveПiП hvaПa vistfang,\n"
+#~ "netsМu og nafn ЧЗ notar А tЖlvuna.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef ЧЗ velur \"MСtaldstenging\" ЧА verПur mСtaldstengingin gerП klАr.\n"
+#~ "DrakX mun reyna aП finna mСtaldiП Чitt en ef sЗ leit ber ekki Аrangur\n"
+#~ "ЧА verПur ЧЗ sjАlf(ur) aП velja raПtengiП (COM port) sem mСtaldiП er\n"
+#~ "tengt viП."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux getur notaП margar gerПir prentara. Prentararnir krefjast\n"
+#~ "mismunandi uppsetninga.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef prentarinn Чinn er tengdur beint viП tЖlvuna veldu ЧА \n"
+#~ "\"StaПbundinn prentari\". чЗ Чarft sМПan aП tilgreina viП\n"
+#~ "hvaПa tengi prentarinn er tengdur og velja viПeigandi sМu.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef ЧЗ vilt hafa aПgang aП prentara sem tengdur er viП fjarlФga UNIX vИl\n"
+#~ "(eПa Windows NT meП LPD) ЧА verПur ЧЗ aП velja \"Fjartengdur prentari\".\n"
+#~ "чЗ Чarft ekki aП gefa upp notandanafn eПa lykilorП en Чarft aП vita \n"
+#~ "nafniП А prentrЖПinni А Чeim ЧjСn.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ef ЧЗ vilt hafa aПgang aП SMB prentara (prentara sem er tengdur viП\n"
+#~ "fjarlФga Windows 9x/NT vИl), ЧА Чarftu aП gefa upp SMB nafn ЧjСnsins\n"
+#~ "sem oftast er sama og TCP/IP nafn (en Чarf ekki aП vera). Einnig Чarftu\n"
+#~ "IP vistfang, notandanafn, lykilorП, nafn vinnuhСps og auПvitaП sjАlft\n"
+#~ "nafn prentarans. Sama gildir um NetWare prentara, nema ЧЗ Чarft\n"
+#~ "ekkert vinnuhСpsnafn."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "чaП er stranglega mФlt meП ЧvМ aП ЧЗ svarir \"JА\" hИrna. Ef ЧЗ setur\n"
+#~ "Microsoft Windows inn sМПar ЧА skrifar ЧaП yfir rФsihluta disksins og\n"
+#~ "gerir ЧИr Чar meП Сkleyft aП rФsa Linux nema ЧЗ hafir veriП bЗin(n)\n"
+#~ "aП ЗtbЗa rФsidiskling."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "EyПa breytingum?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Veldu prenttengingu"
+
+#~ msgid "Host name:"
+#~ msgstr "VИlarheiti:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Hvernig mЗs ertu meП?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "SjАlfvirk upplausn"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Til aП finna mЖgulegar upplausnir munu nokkrar verПa prСfaПar.\n"
+#~ "SkjАrinn Чinn mun blikka...\n"
+#~ "чЗ getur slЖkkt А honum ef ЧЗ vilt, tЖlvan flautar Чegar ЧvМ er lokiП"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "иg get reynt aП finna mЖgulegar upplausnir (t.d: 800x600).\n"
+#~ "Stundum getur tЖlvan frosiП viП ЧaП.\n"
+#~ "Viltu prСfa?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Engar leyfilegar upplausnir fundust\n"
+#~ "PrСfaПu aП velja annaП skjАkort eПa skjА"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "SjАlfvirk leit upplausna"
+
+#, fuzzy
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "ATI brautarmЗs"
+
+#, fuzzy
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "USB mЗs (3 eПa fleiri takkar)"
+
+#, fuzzy
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "USB mЗs (3 eПa fleiri takkar)"
+
+#, fuzzy
+#~ msgid "Apple USB Mouse"
+#~ msgstr "USB mЗs"
+
+#, fuzzy
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "USB mЗs (3 eПa fleiri takkar)"
+
+#, fuzzy
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "USB mЗs (3 eПa fleiri takkar)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Almenn mЗs"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI brautarmЗs"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft brautarmЗs"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech brautarmЗs"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB mЗs"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB mЗs (3 eПa fleiri takkar)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft ЗtgАfa 2.1A eПa nЩrri (raПtengd)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (raПtengd)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (raПtengd)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (raПtengd)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Almenn mЗs (raПtengd)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Microsoft samhФfП (raПtengd)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Almenn Чriggja hnappa mЗs (raПtengd)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "tСkst ekki aП tengja nfs"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "DulkСПun"
+
+#~ msgid "Show less"
+#~ msgstr "SЩna fФrri"
+
+#~ msgid "Show more"
+#~ msgstr "SЩna fleiri"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "HvaПa lyklaborПsuppsetningu viltu?"
+
+#~ msgid "Normal"
+#~ msgstr "Venjulega"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Viltu leita aП PCMCIA kortun?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Leita aП %s kortum?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Leita aП PCI kortum?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Leita aП rСtardisksneiП"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: чetta er ekki rСtardisksneiП. Veldu aПra."
+
+#~ msgid "No root partition found"
+#~ msgstr "Engin rСtarsneiП fannst"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Get ekki notaП Зtsendingu Аn NIS lИns"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+# '\240' is 'А' (aacute) in cp437 encoding
+# '\224' is 'Ж' (odiaeresis) in cp437 encoding.
+# '\221' is 'Ф' (ae) in cp437 encoding
+# '\241' is 'М' (iacute) in cp437 encoding
+# '\242' is 'С' (oacute) in cp437 encoding
+# '\230' is 'Щ' (yacute) in cp437 encoding
+# '\243' is 'З' (oacute) in cp437 encoding
+# there is no 'Ч' nor 'П' in cp437; changed respectively to 'th' and 'd'
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Velkomin(n) ║ LILO st≤rikerfisr▒sistj╒rann!\n"
+#~ "\n"
+#~ "Sl═du ═ <TAB> til ad f═ lista yfir m■gulega valkosti.\n"
+#~ "\n"
+#~ "Til r▒sa einn af theim, sl═du inn nafnid og s║dan ═ <ENTER>\n"
+#~ "eda b║ddu ║ %d sekёndur thar til sj═lfgefin r▒sing hefst.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Velkomin(n) i SILO styrikerfisraesistjorann!\n"
+#~ "\n"
+#~ "Sladu a <TAB> til ad fa lista yfir moegulega valkosti.\n"
+#~ "\n"
+#~ "Til raesa einn af theim, sl═du inn nafnid og sidan a <ENTER>\n"
+#~ "eda biddu i %d sekundur thar til sjalfgefin raesing hefst.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "Stillingar SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "HИrna eru nЗverandi stillingar SILO .\n"
+#~ "чЗ getur bФtt viП fleirum eПa breytt Чessum."
+
+#~ msgid "This label is already in use"
+#~ msgstr "чetta nafn er nЗ Чegar М notkun."
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Innsetning SILO brАst sЖkum eftirfarandi villu:"
+
+#~ msgid "Shutting down"
+#~ msgstr "Slekk А tЖlvunni"
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
@@ -4930,10 +6975,6 @@ msgstr "чessi leit mun taka dАlМtinn tМma"
#~ "ЧЗ vilt sitja inn. чЗ getur tilgreint litla eПa fulla \n"
#~ "innsetningu af pЖkkum Зr Чeim flokkum sem ЧЗ valdir."
-#, fuzzy
-#~ msgid "Choose other CD to install"
-#~ msgstr "Veldu pakka til aП setja inn"
-
#~ msgid ""
#~ "Select:\n"
#~ "\n"
@@ -4985,9 +7026,6 @@ msgstr "чessi leit mun taka dАlМtinn tМma"
#~ msgid "Local LAN"
#~ msgstr "StaПarnet(LAN)"
-#~ msgid "Dialup with modem"
-#~ msgstr "Hringja inn meП mСtaldi"
-
#~ msgid "Size: %s MB"
#~ msgstr "StФrП: %s MB"
@@ -5012,9 +7050,6 @@ msgstr "чessi leit mun taka dАlМtinn tМma"
#~ msgid "Password:"
#~ msgstr "LykilorП:"
-#~ msgid "Local Printer Options"
-#~ msgstr "ViПfЖng staПbundinna prentara"
-
#~ msgid "server"
#~ msgstr "netЧjСnn"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index f1aefff8b..494ca8c89 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -1,4 +1,4 @@
-# SOME DESCRIPTIVE TITLE.
+# DrakX Japanese Translation.
# Copyright (c) 1999 MandrakeSoft
# Junichi Kimura <jun@kde.gr.jp>, 1999-2000
# YAMAGATA Hiroo <hiyori13@alum.mit.edu>, 1999-2000
@@ -6,51 +6,104 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-12-10 16:27+0100\n"
-"Last-Translator: Junichi Kimura <jun@kde.gr.jp>\n"
+"Last-Translator: YAMAGATA Hiroo <hiyori13@alum.mit.edu>\n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-jp\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "хфмя"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓Ра╙бР╓╥╓ф╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "X ╔╣║╪╔п╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X ╔╣║╪╔п"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "╓и╓н╧╫ю╝╓нXFree ╓к╓╥╓ч╓╧╓╚"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"╓Ё╓н╔╚║╪╔и╓оXFree %s ╓г╓н╓ъ3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╡дг╫╓г╓╧║ё\n"
+"XFree %s ╓г╓н╓Ё╓н╔╚║╪╔и╓н╔╣╔щ║╪╔х╓о║╒2D ╓н╓ш╓╕╓╛╓╧╓╟╓Л╓ф╓╓╓ч╓╧║ё"
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "╓Ё╓н╔╚║╪╔и╓оXFree %s ╓г3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╡дг╫╓г╓╧║ё"
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "╔о║╪╔и╔╕╔╖╔╒3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╓д╓╜╓нXFree %s"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"╓Ё╓н╔╚║╪╔и╓о╔о║╪╔и3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╓╛╡дг╫╓г╓╧╓╛║╒XFree %s╓╛и╛мв╓г╓╧║ё\n"
+"╓©╓ю╓╥╓╒╓╞╓ч╓г║╒╪б╦Ёе╙╓й╔╣╔щ║╪╔х╓г║╒╔ч╔╥╔С╔у╔Й║╪╔╨╓н╡дг╫ю╜╓╛╓╒╓Й╓ч╓╧║ё\n"
+"XFree %s ╓г╓н╓Ё╓н╔╚║╪╔и╓н╔╣╔щ║╪╔х╓о║╒2D ╓н╓ш╓╕╓╛╓╧╓╟╓Л╓ф╓╓╓ч╓╧║ё"
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"╓Ё╓н╔╚║╪╔и╓оXFree %s ╓г3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╡дг╫╓г╓╧║ё\n"
+"╓©╓ю╓╥╓╒╓╞╓ч╓г║╒╪б╦Ёе╙╓й╔╣╔щ║╪╔х╓г║╒╔ч╔╥╔С╔у╔Й║╪╔╨╓н╡дг╫ю╜╓╛╓╒╓Й╓ч╓╧║ё"
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "╪б╦ЁцйЁ╛╓н╔о║╪╔и╔╕╔╖╔╒3D╔╒╔╞╔╩╔И╔Л║╪╔╥╔Г╔С╓д╓╜╓нXFree %s"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree╓нюъдЙ"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓н╔А╔Б╔Й╔╣╔╓╔╨╓Ра╙бР╓╥╓ф╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "╔╣║╪╔п╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "╔Б╔к╔©╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "╔Б╔к╔©"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -71,39 +124,40 @@ msgstr ""
"╔Б╔к╔©╓╛╔ю╔А║╪╔╦╓Р╪У╓╠╓К╓╚╓Бцн╓Л╓ч╓╩╓С║ё\n"
"й╛╓╚╓И╓й╓╓╬Л╧Г╓о, дЦ╓А╓нюъдЙ╓к╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "©Ей©╔Й╔у╔Л╔ц╔╥╔Е╔Л║╪╔х"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "©Бд╬╔Й╔у╔Л╔ц╔╥╔Е╔Л║╪╔х"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "╔Б╔к╔©╓╛юъдЙ╓╣╓Л╓ф╓ч╓╩╓С"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓╛юъдЙ╓╣╓Л╓ф╓ч╓╩╓С"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "╡РаЭеы╓╛а╙бР╓╣╓Л╓ф╓ч╓╩╓С"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "╓Ё╓нюъдЙ╓г╩Н╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "╥ы╧П║╖╓Ё╓н╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓г╔ф╔╧╔х╓о╢М╦╠╓г╓╧"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"╥ы╧П║╖╓Ё╓н╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓Р╔ф╔╧╔х╓╧╓К╓х╔ч╔╥╔С╓╛╔у╔Й║╪╔╨╓╧╓К╓╚╓Б╓╥╓Л╓ч╓╩╓С"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "юъдЙ╓Р╩Н╓╥╓ч╓╧"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -111,185 +165,172 @@ msgstr ""
"\n"
"╓╓╓╞╓д╓╚╔я╔И╔А║╪╔©╓Рйя╓╗╓ф╓ъ╓ф╓╞╓ю╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "╔╗╔И║╪х╞ю╦"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "╓╒╓х %d иц╓глА╓Й╓ч╓╧"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "юъдЙ╓о╓Ё╓Л╓г╓╓╓╓╓г╓╧╓╚║╘"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "╔╗╔И║╪х╞ю╦║╓╓╓╓╞╓д╓╚╓н╔я╔И╔А║╪╔©╓Рйя╓╗╓ф╓ъ╓ф╓╞╓ю╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "╡РаЭеы╓н╪╚ф╟юъдЙ"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"м╜╦З╓й╡РаЭеы╓Рфю╓К╓©╓А╓кйл╓нйЩк║╓Р╩Н╓╥╓ф╓ъ╓ч╓╧║ё\n"
-"╔╧╔╞╔Й║╪╔С╓╛люлг╓╥╓ч╓╧...\n"
-"╓╓╓Д╓й╓И╔Б╔к╔©╓н╔╧╔╓╔ц╔а╓Рюз╓ц╓ф╓Б╓ю╓╓╓╦╓Г╓╕╓ж║ё╫╙╓О╓ц╓©╓И beep ╡╩\n"
-"╓гцн╓И╓╩╓ч╓╧║ё"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "╡РаЭеы"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "╡РаЭеы╓х©╖©╪еы"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ╔╣║╪╔п: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "а╢╓ф╓Ри╫╪╗"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "╡РаЭеы"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"м╜╦З╓й╡РаЭеы(нЦ: 800x600)╓Р╪╚ф╟е╙╓кц╣╓╩╓ч╓╧║ё\n"
-"╓╛║╒╓Ё╓Л╓г╔ч╔╥╔С╓╛╩ъ╓ч╓ц╓ф╓╥╓ч╓╕╓╚╓Б╓╥╓Л╓ч╓╩╓С║ё\n"
-"ц╣╓╥╓ф╓ъ╓ч╓╥╓Г╓╕╓╚║╘"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"м╜╦З╓й╔Б║╪╔и╓╛╦╚иу╓╚╓Й╓ч╓╩╓С\n"
-"б╬╓н╔с╔г╔╙╔╚║╪╔и/╔Б╔к╔©╓г╩Н╓╥╓ф╡╪╓╣╓╓║ё"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "╔╜║╪╔э║╪╔и╔Л╔╓╔╒╔╕╔х: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "╔ч╔╕╔╧╓н╪ОнЮ: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "╔ч╔╕╔╧╔г╔п╔╓╔╧: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "╔Б╔к╔©: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "╔Б╔к╔©©Ей©ф╠╢Э: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "╔Б╔к╔©©Бд╬╔Й╔у╔Л╔ц╔╥╔Е: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔А╔Б╔Й: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "©╖©╪еы: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "╡РаЭеы: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ╔╣║╪╔п: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 ╔и╔И╔╓╔п: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "X Window System ╓нюъдЙ╓н╫ЮхВ"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "╔Б╔к╔©╓нйя╧╧"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "╔╟╔И╔у╔ё╔ц╔╞╔╚║╪╔и╓нйя╧╧"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "╔╣║╪╔п╔╙╔в╔╥╔Г╔С╓нйя╧╧"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "╡РаЭеы╓нйя╧╧"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "╡РаЭеы╓н╪╚ф╟╦║╨В"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "╬ПйС╓Ри╫╪╗"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "╓Б╓╕╟Л╡С╔ф╔╧╔х"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "╫╙н╩"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "╓и╓╕╓╥╓ч╓╧╓╚║╘"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "йя╧╧╓Ра╢иТгк╢Ч╓╥╓ч╓╧╓╚║╘"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"йя╧╧╓Рйщб╦╓╥╓ч╓╧╓╚?\n"
+"╦╫╨ъ╓нюъдЙ╓о╟й╡╪╓ндл╓Й╓г╓╧:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "йя╧╧╓Рм╜╦З╓к╓╧╓К╓к╓о %s ╓к╔М╔╟╔╓╔С╓╥╓й╓╙╓╥╓ф╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "╔М╔╟╔╒╔╕╔х╓╥╓©╬Е╓г Ctrl-Alt-BackSpace ╓Р╡║╓╥╓ф╡╪╓╣╓╓"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X ╓н╣╞ф╟"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -297,228 +338,223 @@ msgstr ""
"╔Ё╔С╔т╔Е║╪╔©╓Р╔ж║╪╔х╓╥╓©╩Ч║╓╪╚ф╟е╙╓к X ╓╛н╘╓а╬Е╓╛╓КюъдЙ╓к╓г╓╜╓ч╓╧║ё\n"
"╔Й╔ж║╪╔х╓╥╓©╩Ч X ╓Рн╘╓а╬Е╓╡╓ч╓╧╓╚║╘"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "╪╚ф╟╔М╔╟╔╓╔С"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"╪╚ф╟е╙╓к╔Ф║╪╔╤╓╛╔М╔╟╔╙╔С╓╧╓К╓Х╓╕╓к╔Ё╔С╔т╔Е║╪╔©╓РюъдЙ╓г╓╜╓ч╓╧║ё\n"
+"╓Ё╓н╣║г╫╓Рк╬╓ч╓й╓╓╬Л╧Г║╒╔╜╔Ц╔С╔╩╔К╔э╔©╔С╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "╔г╔у╔╘╔К╔х╔Ф║╪╔╤╓на╙бР:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "╩х╓╕╔╕╔ё╔С╔и╔╕╔ч╔м║╪╔╦╔Ц╓Ра╙╓С╓г╡╪╓╣╓╓║╖"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 ©╖(8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "3кЭ2юИ©╖ (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "6кЭ5юИ©╖ (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "1600кЭ©╖ (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "40╡╞©╖ (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 KB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 KB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ╟й╬Е"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "╔╧╔©╔С╔ю║╪╔и VGA, 640x480 at 60Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "╔╧║╪╔я║╪ VGA, 800x600 at 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 ╦ъ╢╧, 1024x768 at 87 Hz interlaced (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "╔╧║╪╔я║╪ VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Ёхд╔ ╔╧║╪╔я║╪ VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "1024x768 at 60 Hz, 800x600 at 72 Hz╓н╔н╔С╔╓╔С╔©║╪╔Л╔╧SVGA"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "1280x1024 at 70 Hz╓нHigh Frequency SVGA"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "1280x1024 at 60 Hz╓╛╡дг╫╓й╔ч╔К╔а╔╧╔╜╔Ц╔С╔Б╔к╔©"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "1280x1024 at 74 Hz╓╛╡дг╫╓й╔ч╔К╔а╔╧╔╜╔Ц╔С╔Б╔к╔©"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "1280x1024 at 76 Hz╓╛╡дг╫╓й╔ч╔К╔а╔╧╔╜╔Ц╔С╔Б╔к╔©"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "1600x1200 at 70 Hz ╓╛╡дг╫╓й╔Б╔к╔©"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "1600x1200 at 76 Hz ╓╛╡дг╫╓й╔Б╔к╔©"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "╔╚║╪╔К"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "╔г╔у╔╘╔К╔х"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "╔м╔╞╔©╔╓"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "╔ж╔К╔м╔ц╔х"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "╫В╓н╩р"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "╔ж╔М╔С╔и╫Вю╜"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "╔╙║╪╔х╔ч╔╦╔ц╔╞"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "╔ж║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓н╨г╫И╓н╔╩╔╞╔©"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "╔и╔И╔╓╔ж╓н╨г╫И╓н╔╩╔╞╔© (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub ╓н╔╓╔С╔╧╔х║╪╔К"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO ╓н╔╓╔С╔╧╔х║╪╔К"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "╔ж║╪╔х╔М║╪╔ю╓Р╓и╓Ё╓к╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧╓╚║╘"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub ╓н╔╓╔С╔╧╔х║╪╔К"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "╓й╓╥"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "╓и╓н╔ж║╪╔х╔М║╪╔ю╓Р╩х╓╓╓ч╓╧╓╚"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "╔ж║╪╔х╔М║╪╔ю╓н╔╓╔С╔╧╔х║╪╔К"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "╔ж║╪╔х╔г╔п╔╓╔╧"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (╦е╓╓ BIOS ╓г╓оф╟╓╚╓й╓╓)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "╔Ё╔С╔я╔╞╔х"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "╔Ё╔С╔я╔╞╔х"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "╔г╔у╔╘╔К╔х╔╓╔А║╪╔╦╣╞ф╟╓нбт╓а╩Ч╢ж"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "╔с╔г╔╙╔Б║╪╔и"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "╔г╔у╔╘╔К╔х╔╓╔А║╪╔╦╣╞ф╟╓нбт╓а╩Ч╢ж"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "╔я╔╧╔О║╪╔и"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "╔я╔╧╔О║╪╔и (╓Б╓╕╟Леы)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "╔Ё╔ч╔С╔и╔И╔╓╔С╔╙╔в╔╥╔Г╔С╓ню╘╦б"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ю╘╦б"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "╔ж║╪╔х╔М║╪╔ю╓н╔А╔╓╔С╔╙╔в╔╥╔Г╔С"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``╔Ё╔ч╔С╔и╔И╔╓╔С╔╙╔в╔╥╔Г╔С╓ню╘╦б''╔╙╔в╔╥╔Г╔С╓о╔я╔╧╔О║╪╔и╓╛╓й╓╓╓х\n"
"лР╓к╓©╓а╓ч╓╩╓С║ё"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "╓Б╓╕╟Леы╩Н╓╥╓ф╡╪╓╣╓╓"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "╔я╔╧╔О║╪╔и╓╛╟Лцв╓╥╓ч╓╩╓С"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -526,167 +562,349 @@ msgstr ""
"╔╗╔С╔х╔Й╓о╟й╡╪╓н╓х╓╙╓Й╓г╓╧║ё\n"
"ди╡ц║╕йя╧╧╓г╓╜╓ч╓╧║ё"
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "╡ц╓╗╓К"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "╫╙н╩"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "╓и╓н╔©╔╓╔в╓Рди╡ц╓╥╓ч╓╧╓╚"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "б╬╓н OS (SunOS╓й╓и...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "б╬╓н OS (╔╕╔ё╔С╔и╔╕╔╨╓й╓и...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "╓и╓н╔©╔╓╔в╓Рди╡ц╓╥╓ч╓╧╓╚"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "╔╓╔А║╪╔╦"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "╔К║╪╔х"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "ди╡ц"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "фи╓ъ╫Я╓╜"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "╔ф║╪╔ж╔К"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "╢М╦╠"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "╔И╔ы╔К"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "╔г╔у╔╘╔К╔х"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "OK"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "╔╗╔С╔х╔Й╓Р╬ц╓╧"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "╤УгР╓н╔И╔ы╔К╓о╣Ж╓╣╓Л╓ф╓╓╓ч╓╩╓С"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "╓Ё╓н╔И╔ы╔К╓о╓╧╓г╓к╩х╓О╓Л╓ф╓╓╓ч╓╧"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s %s ╔╓╔С╔©║╪╔у╔╖║╪╔╧╓╛╦╚╓д╓╚╓Й╓ч╓╥╓©"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "йл╓н╓Б╓н╓о╓╒╓Й╓ч╓╧╓╚║╘"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "%s ╔╓╔С╔©║╪╔у╔╖║╪╔╧╓о╓╒╓Й╓ч╓╧╓╚║╘"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "╓╓╓╓╓╗"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "╓о╓╓"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "╔о║╪╔и╔╕╔╖╔╒╓н╬ПйС╓Р╦╚╓ф╡╪╓╣╓╓"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "%s ╔╚║╪╔и %s ╓н╔и╔И╔╓╔п╔╓╔С╔╧╔х║╪╔КцФ"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(╔Б╔╦╔Е║╪╔К %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "╓и╓н %s ╔и╔И╔╓╔п╓Р╩Н╓╥╓ч╓╥╓Г╓╕╓╚║╘"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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"
+"╔ч╔╥╔С╓╛╓Ё╓О╓Л╓©╓Й╓╧╓К╓Ё╓х╓о╓╒╓Й╓ч╓╩╓С║ё"
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "╔╙║╪╔х╔в╔М║╪╔ж"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "╔╙╔в╔╥╔Г╔С╩ьдЙ"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "╔Б╔╦╔Е║╪╔К %s ╓н╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its 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''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "╔Б╔╦╔Е║╪╔К╓н╔╙╔в╔╥╔Г╔С"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"╔Б╔╦╔Е║╪╔К %s ╓н╔М║╪╔и╓╛╓г╓╜╓ч╓╩╓С╓г╓╥╓©║ё\n"
+"╔я╔И╔А║╪╔©╓Рйя╓╗╓ф╓Д╓Й╓й╓╙╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"%s operating system chooser-he youkosou!\n"
+"\n"
+"Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "GRUB operating system chooser-he youkosou!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "/boot ╓нмфнлитб╜╓г╓╧"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "╔г╔╧╔╞╔х╔ц╔в"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "╔╧╔©║╪╔х╔А╔к╔Е║╪"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "╓╒╓х %d й╛"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "╓╒╓х 1 й╛"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "╓╒╓х %d иц"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "╨Ню╝"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "╔╒╔С╔ч╔╕╔С╔х"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "╨О╫Э"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "╔у╔╘║╪╔ч╔ц╔х"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "╔Й╔╣╔╓╔╨"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "╔©╔╓╔в"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "/etc/fstab ╓Р╧╧©╥"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "╔╗╔╜╔╧╔я║╪╔х╔Б║╪╔и╓к╟э╓К"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "╔н║╪╔ч╔К╔Б║╪╔и╓к╟э╓К"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "╔у╔║╔╓╔К╓╚╓И╔Й╔╧╔х╔╒╓╧╓К"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "╔у╔║╔╓╔К╓к╔╩║╪╔ж╓╧╓К"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "╔╕╔ё╔╤║╪╔и"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "╔у╔М╔ц╔т║╪╓╚╓И╔Й╔╧╔х╔╒╓╧╓К"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "╔у╔М╔ц╔т║╪╓к╔╩║╪╔ж╓╧╓К"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "а╢╓ф╓Р╔╞╔Й╔╒"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "а╢╓ф╓Р╔у╔╘║╪╔ч╔ц╔х"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "╪╚ф╟ЁД╓ЙеЖ╓ф"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "а╢╓ф╓н╔в╔И╔╓╔ч╔Й╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╩х╓О╓Л╓ф╓╓╓ч╓╧"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "╓Ё╓Л╟й╬Е╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓оди╡ц╓г╓╜╓ч╓╩╓С"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -694,59 +912,63 @@ msgstr ""
"╔я║╪╔ф╔ё╔╥╔Г╔С╓РаЩ╓Д╓╥╓©╓╓╓й╓И║╓Ёхд╔╔я║╪╔ф╔ё╔╥╔Г╔С╓╛\n"
"╨Н╓Л╓К╓Х╓╕╓к╓и╓Ё╓╚╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╬ц╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╩д╓╧"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "╓Б╓х╓клА╓╧"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╧╧©╥"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "╔Й╔М║╪╔и"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "╔К║╪╔в╔п╔ц╔╞"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "╤У"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "╓╫╓нб╬"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "╔╧╔О╔ц╔в"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "╤У"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "╓╫╓нб╬"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю ╔©╔╓╔в:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "╬э╨ы"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -756,19 +978,19 @@ msgstr ""
"╔о║╪╔и╔г╔ё╔╧╔╞а╢бн╓╛бГ╓╜╓й FAT ╔я║╪╔ф╔ё╔╥╔Г╔С╟Л╓д╓ю╓╠╓г╓╧╓м\n"
"║й╓©╓ж╓СMS Dos/╔╕╔ё╔С╔и╔╕╔╨╓н╓Б╓н╓г╓╧║к║ё\n"
"╓ч╓╨╓о╓Ё╓╓╓д╓Р╔Й╔╣╔╓╔╨╓╧╓К╓н╓╛╓╓╓╓╓г╓╥╓Г╓╕\n"
-"║й╓╫╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔╞╔Й╔ц╔╞╓╥╓ф║╒╪║╓к \"╔Й╔╣╔╓╔╨\" ╓Р╔╞╔Й╔ц╔╞╓╥╓ф╡╪╓╣╓╓)"
+"║й╓╫╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔╞╔Й╔ц╔╞╓╥╓ф║╒╪║╓к║ж╔Й╔╣╔╓╔╨║в╓Р╔╞╔Й╔ц╔╞╓╥╓ф╡╪╓╣╓╓)"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "╔г║╪╔©╓н╔п╔ц╔╞╔╒╔ц╔в╓Р╪Х╓ц╓ф╡╪╓╣╓╓"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "╓Х╓╞фи╓С╓г╡╪╓╣╓╓║╙"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -777,77 +999,77 @@ msgstr ""
"╓Б╓╥ aboot ╓Р╩х╓╕╓д╓Б╓Й╓й╓И║╒╔г╔ё╔╧╔╞╓нюХф╛╓к╤У╓╜нн╟Х (2048╔╩╔╞╔©╓╞╓И╓╓)\n"
"╓Р╩д╓╧╓Х╓╕╣╓╓Риу╓╠╓ф╡╪╓╣╓╓║ё"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "цМ╟у: ╓Ё╓наЮ╨Н╓о╢М╦╠╓г╓╧║ё"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "╔╗╔И║╪"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "╔г╔п╔╓╔╧: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ╔г╔п╔╓╔╧╔Л╔©║╪: %s (©ДдЙ)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "╔©╔╓╔в: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Ё╚╩о: ╔╩╔╞╔© %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "╔╣╔╓╔╨: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s ╔╩╔╞╔©"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "╔╥╔Й╔С╔ю %d ╓╚╓И╔╥╔Й╔С╔ю %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "╔у╔╘║╪╔ч╔ц╔х╨я╓ъ\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "л╓╔у╔╘║╪╔ч╔ц╔х\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "╔ч╔╕╔С╔х╨я╓ъ\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "╔К║╪╔в╔п╔ц╔╞╔у╔║╔╓╔К: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -855,79 +1077,79 @@ msgstr ""
"╔г╔у╔╘╔К╔х╓г╔я║╪╔ф╔ё╔╥╔Г╔С╔ж║╪╔х\n"
" (MS-DOS ╓н╔ж║╪╔х, lilo ╓г╓о╓й╓╓)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "╔Л╔ы╔К %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "╔а╔Ц╔С╔╞╔╣╔╓╔╨ %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID╔г╔ё╔╧╔╞ %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "╔К║╪╔в╔п╔ц╔╞╔у╔║╔╓╔Кл╬: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "йя╧╧╓╧╓К╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "╔╣╔╓╔╨: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "╔╦╔╙╔А╔х╔Й: %s ╔╥╔Й╔С╔ю, %s ╔ь╔ц╔и, %s ╔╩╔╞╔©\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╔©╔╓╔в: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "╔п╔╧ %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "╔ч╔╕╔С╔х"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "╔╒╔╞╔ф╔ё╔ж"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "RAID ╓к╡ц╓╗╓К"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "RAID ╓╚╓И╫Э╓╞"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "RAID╓нйя╧╧"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "╔К║╪╔в╔п╔ц╔╞╓н╩хмя"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "ф╟╨Н╓Ра╙бР"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -938,7 +1160,7 @@ msgstr ""
"╓╫╓Ё╓к /boot ╓о╨Н╓Л╓ч╓╩╓С║ё/boot╓╛╓╫╓Ё╓ю╓х║╒LILO ╓╛╓╕╓ч╓╞ф╞╓╚╓й╓╓╓╥║╓\n"
"LILO ╓Р╩х╓О╓й╓╓╓й╓И /boot ╓омв╓Й╓ч╓╩╓С╓╚╓И"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -950,26 +1172,26 @@ msgstr ""
"╩Щ╓ц╓ф╓╓╓ч╓╩╓С╓м║ёLILO ╓Р╔ж║╪╔х╔ч╔м║╪╔╦╔Ц╓к╩х╓╕╓й╓И║╓/boot ╔я║╪╔ф╔ё\n"
"╔╥╔Г╔С╓нди╡ц╓Р╓╙к╨╓Л╓й╓╞║ё"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"╓╒╓й╓©╓о╔К║╪╔х(/)╓х╓х╓╥╓ф╔╫╔у╔х╔╕╔╖╔╒RAID╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓с╓ч╓╥╓©╓м║ё\n"
"/boot ╔я║╪╔ф╔ё╔╥╔Г╔Сл╣╓╥╓г╓Ё╓Л╓РаЮ╨Н╫пмХ╓К╔ж║╪╔х╔М║╪╔ю╓о╓╒╓Й╓ч╓╩╓С║ё\n"
-"╓й╓н╓г lilo ╓ч╓©╓о grub ╓Р╩х╓╕╓й╓И /boot ╔я║╪╔ф╔ё╔╥╔Г╔С╓нди╡ц╓Р╓╙к╨╓Л╓й╓╞║ё"
+"╓г╓╧╓╚╓И /boot ╔я║╪╔ф╔ё╔╥╔Г╔С╓нди╡ц╓Р╓╙к╨╓Л╓й╓╞║ё"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "бЕ╓О╓Й╓к ``%s'' ╓Р╩х╓ц╓ф╡╪╓╣╓╓"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "╨г╫И╓к ``Unmount`` ╓Р╩х╓ц╓ф╡╪╓╣╓╓"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -977,41 +1199,41 @@ msgstr ""
"╔я║╪╔ф╔ё╔╥╔Г╔С╓н╥©╓Р %s "
"╓кйя╧╧╓╥╓©╦Е║╒╓Ё╓н╔я║╪╔ф╔ё╔╥╔Г╔С╬Е╓н╔г║╪╔©╓о╪╨╓О╓Л╓ч╓╧"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
-msgstr "бЁ╓╠╓ч╓╧╓╚║╘"
+msgstr "╓╫╓Л╓г╓БбЁ╓╠╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "╔╩║╪╔ж╓╩╓╨╫╙н╩"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╧╧©╥╓╩╓╨╓к╫╙н╩║╘"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔©╔╓╔в╓нйя╧╧"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔©╔╓╔в╓к╓╥╓ч╓╧╓╚║╘"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "╓и╓н╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓к╓╥╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB╟й╡╪╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓к ReiserFS ╓о╩х╓╗╓ч╓╩╓С"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "╔К║╪╔в╔п╔ц╔╞╔у╔║╔╓╔К %s ╓Р╓и╓Ё╓к╔ч╔╕╔С╔х╓╥╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "╔г╔п╔╓╔╧ %s ╓Р╓и╓Ё╓к╔ч╔╕╔С╔х╓╥╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1020,138 +1242,142 @@ msgstr ""
"╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓╚╓И╪Х╓Й╫╒╓╞╓Ё╓х╓╛╫пмХ╓ч╓╩╓С║ё\n"
"╓ч╓╨╔К║╪╔в╔п╔ц╔╞╓Р╡Р╫Э╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "╔у╔╘║╪╔ч╔ц╔х╓╥╓©╓И║╒╔я║╪╔ф╔ё╔╥╔Г╔С %s ╬Е╓н╔г║╪╔©╓о╪╨╓О╓Л╓ч╓╧║ё"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "╔у╔╘║╪╔ч╔ц╔хцФ"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "╔К║╪╔в╔п╔ц╔╞╔у╔║╔╓╔К %s ╓Р╔у╔╘║╪╔ч╔ц╔хцФ"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С %s ╓Р╔у╔╘║╪╔ч╔ц╔хцФ"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "а╢╓ф╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔у╔╘║╪╔ч╔ц╔х╓╥╓©╦Е,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "╓Ё╓Л╓И╓н╔я║╪╔ф╔ё╔╥╔Г╔СцФ╓н╔г║╪╔©╓о╪╨╓О╓Л╓ч╓╧"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "╟эф╟"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "╓и╓н╔г╔ё╔╧╔╞╓к╟эф╟╓╥╓ч╓╧╓╚?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "╔╩╔╞╔©"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "╓и╓н╔╩╔╞╔©╓Р╟эф╟╓╥╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "╟эф╟цФ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╟эф╟цФ..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "╔и╔И╔╓╔ж %s ╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╔г╔ё╔╧╔╞╓к╫Я╓╜╧Ч╓ъ╓ч╓╧║╙"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "╔Й╔ж║╪╔х╓╥╓ф╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓нйя╧╧╓Рх©╠г╓╣╓╩╓Ки╛мв╓╛╓╒╓Й╓ч╓╧"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "fat ╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓н╤╜Ё╕╓Р╥в╩╩"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "╔Й╔╣╔╓╔╨цФ"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "╓Ё╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓о╔Й╔╣╔╓╔╨╓г╓╜╓ч╓╩╓С"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "╓Ё╓н╔я║╪╔ф╔ё╔╥╔Г╔С╬Е╓н╔г║╪╔©╓о╔п╔ц╔╞╔╒╔ц╔в╓╧╓К╓ы╓╜╓г╓╧"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "╔Й╔╣╔╓╔╨╦Е╓к╓о║╒╔я║╪╔ф╔ё╔╥╔Г╔С %s ╬Е╓н╔г║╪╔©╓о╪╨╓О╓Л╓ч╓╧"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "©╥╓╥╓╓╔╣╔╓╔╨╓Ра╙бР"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "©╥╓╥╓╓╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Ню╝"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Ё╚╩о╔╩╔╞╔©: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "MB ╓г╓н╔╣╔╓╔╨: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╔©╔╓╔в: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "╔в╔Й╔у╔║╔Л╔С╔╧: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "╓Ё╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓о╔К║╪╔в╔п╔ц╔╞╓к╓о╩х╓╗╓ч╓╩╓С"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "╔К║╪╔в╔п╔ц╔╞"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "╔К║╪╔в╔п╔ц╔╞╔у╔║╔╓╔Кл╬: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "╔у╔║╔╓╔К╓о╓╧╓г╓кйл╓н╔К║╪╔в╔п╔ц╔╞╓г╩хмяцФ║ёб╬╓н╓Ра╙╓с╓ч╓╥╓Г╓╕"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "╔у╔║╔╓╔К╓о╓╧╓г╓кб╦╨ъ╓╥╓ч╓╧║ё╓╓╓ч╓╒╓К╓н╓Р╩х╓╓╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "╔у╔║╔╓╔К╓Ра╙бР"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1159,11 +1385,11 @@ msgstr ""
"╔п╔ц╔╞╔╒╔ц╔в╓╧╓К╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓н╔╣╔╓╔╨╓╛╟Ц╓╓╓ч╓╧\n"
"бЁ╓╠╓ч╓╧╓╚║╘"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "╥ы╧П"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1171,79 +1397,79 @@ msgstr ""
"╔у╔М╔ц╔т║╪╓Р╔и╔И╔╓╔ж╓качфЧ╓╥╓ф╓╞╓ю╓╣╓╓\n"
"╔у╔М╔ц╔т║╪╬Е╓на╢╓ф╓н╔г║╪╔©╓о╪╨╓О╓Л╓ч╓╧"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╣ъ╫п╓╥╓ф╓ъ╓╧"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "╔г╔п╔╓╔╧"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "╔Л╔ы╔К"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "╔а╔Ц╔С╔╞╔╣╔╓╔╨"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "ди╡ц╓╧╓К╢Шб╦╓н RAID ╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "©╥╣╛"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ╔у╔╘║╪╔ч╔ц╔х, %s ╪╨гт"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s ╓Р ╔©╔╓╔в %s ╓г╔у╔╘║╪╔ч╔ц╔х╓╧╓КйЩк║╓Рцн╓Й╓ч╓╩╓С"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs ╔ч╔╕╔С╔х╓к╪╨гт"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "╔ч╔╕╔С╔х╓к╪╨гт: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ╓Р╔╒╔С╔ч╔╕╔С╔хцФ╓к╔╗╔И║╪: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓о / ╓г╩о╓ч╓Ки╛мв╓╛╓╒╓Й╓ч╓╧"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╓о╔ч╔╕╔С╔х╔щ╔╓╔С╔х %s ╓к╔ч╔╕╔С╔х╨я╓ъ\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "╫Д╡С╔ч╔╕╔С╔х %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й╓о root ╔у╔║╔╓╔К╔╥╔╧╔ф╔ЮфБ╓к╩д╓╥╓ф╓╞╓ю╓╣╓╓"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"╓Ё╓н╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓к╓о║╒╪б╨ъ╓╧╓К╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю (ext2, reiserfs) \n"
"╓╛и╛мв╓г╓╧║ё\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "╫Я╓╜╧Ч╓ъ╓н╓©╓А %s ╓РЁ╚╓╞╓х╓╜╔╗╔И║╪╓╛х╞ю╦: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1251,72 +1477,118 @@ msgstr ""
"╔╗╔И║╪х╞ю╦ - ©╥╓╥╓╓╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓Р╧╫цш╓г╓╜╓К╓Х╓╕╓й╔г╔п╔╓╔╧╓╛\n"
"╦╚иу╓╚╓Й╓ч╓╩╓С║ё╓й╓к╓╛╦╤╟Ь╓╚║╒╔о║╪╔и╔╕╔╖╔╒╓Р╔а╔╖╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С║╙"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "╔╓╔С╔╧╔х║╪╔К╓н╩Ч╓х╔╥╔╧╔ф╔ЮмЬмя╩Ч╓к╩х╓╓╓©╓╓╦ю╦Л╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"╔╓╔С╔╧╔х║╪╔К╓РбЁ╓╠╓К╓к╓о║╒╬Е╓н╔И╔╓╔╩╔С╔╧╓н╬Р╧Ю╓кф╠╟у╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"╬Р╧Ю╓кф╠╟у╓╧╓К╓й╓И║жф╠╟у╓╧╓К║в╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"\n"
+"ф╠╟у╓г╓╜╓й╓╠╓Л╓п║ж╣Яхщ║в╓Ра╙╓с╓ч╓╧║ё╔╓╔С╔╧╔х║╪╔К╓о╫╙н╩╓╥║╒╦╫╨ъ╓нюъдЙ╓о\n"
+"╓╫╓н╓ч╓ч╓г╓╧"
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "╬Е╓н╔Й╔╧╔х╓╚╓И║╒╪╚й╛╓н╔╜║╪╔э║╪╔игшцж╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"╓ш╓╚╓н╓Ё╓х╓п║й╔╓╔С╔╧╔х║╪╔КЁ╚╩о╩Ч╓ка╙╓С╓ю╓н╓х╓ойл╓н╓Ё╓х╓п║к╓Рк╬╓Ю\n"
+"╓й╓И║╒╬Е╓н╟ЛмВ╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓║ёа╢иТа╙╓ж╓х╓╜╓к╓о║╒║жа╢иТ║в╓Р\n"
+"а╙╓ы╓п╓ю╓╓╓╦╓Г╓╕╓ж╓г╓╧║ё"
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-"Linux╓н╔╓╔С╔╧╔х║╪╔К╓╛╫И╓А╓ф╓╚║╒╓ш╓╚╓нLinux╔г╔ё╔╧╔х╔Й╔с╔Е║╪╔╥╔Г╔С╓Д\n"
-"╔п║╪╔╦╔Г╔С╓х╤╕б╦╓╣╓╩╓©╓╓╓х╓╜╓к╓о║╒ \"╔╓╔С╔╧╔х║╪╔К\" ╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"╦е╓╓╔п║╪╔╦╔Г╔С╓нLinux-Mandrake╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ф╓╓╓й╓╓╓╚║╒йё©Т╓н OS\n"
+"╓Рйб╧т╓╥╓ф╩х╓╕╬Л╧Г╓к╓о║╒║ж╔╓╔С╔╧╔х║╪╔К║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000, 7.0 (Air)╓й╓и║╒╦е╓╓Mandrake Linux╓Р\n"
-"╔╒╔ц╔в╔╟╔Л║╪╔и╓╧╓К╓й╓И\"╔╒╔ц╔в╔╟╔Л║╪╔и\"╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
+"╦е╓╓Linux-Mandrake╓Р╧╧©╥╓╥╓©╓╓╓н╓й╓И║ж╧╧©╥║в╓Ра╙╓с╓ч╓╧║ё\n"
"\n"
-"а╙бР:\n"
"\n"
-" - а╢╪╚ф╟(©Д╬╘): Linux╓н╔╓╔С╔╧╔х║╪╔К╓╛╫И╓А╓ф╓й╓И║╒╓Ё╓Л╓Ра╙╓с╓ч╓╥╓Г╓╕║ёцМ:\n"
-" ╔м╔ц╔х╔О║╪╔╞╣║г╫╓о╔╓╔С╔╧╔х║╪╔КцФ╓к╓оюъдЙ╓╣╓Л╓й╓╓╓н╓г║╒\n"
-" ╔╓╔С╔╧╔х║╪╔К╦Е╓к \"LinuxConf\"╓гюъдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"GNU/Linux ╓ь╓н╫╛╫оеы╓к╠Ч╓╦╓ф║╒╟й╡╪╓н╔╓╔С╔╧╔х║╪╔К║╕╧╧©╥╔Л╔ы╔К╓╛\n"
+"а╙╓ы╓ч╓╧:\n"
"\n"
-" - ╔╚╔╧╔©╔ч╔╓╔╨: GNU/Linux ╓к╬э╓╥╓╠╓Л╓п║╒╪╚й╛╓н╔ч╔╥╔С╓н╪Г╓й╩х╓╓йЩ╓к\n"
-" ╓╒╓О╓╩╓фа╙╓с╓ч╓╥╓Г╓╕║ё╬э╓╥╓╞╓о╟й╡╪╓Р╩╡╬х╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\t* ©Д╬╘: GNU/Linux \t "
+"╓н╔╓╔С╔╧╔х║╪╔К╓о╫И╓А╓ф║╒╓х╓╓╓╕©м╓о╓Ё╓Л╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"\t ╓╕╓К╓╣╓╓╪алД╓Б╓╒╓ч╓Й╓╒╓К╓╞║╒╓х╓ф╓Б╢йц╠╓к╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╧║ё\n"
"\n"
-" - ╔╗╔╜╔╧╔я║╪╔х: ╓Ё╓Л╓окэеЖ╓кGNU/Linux╓к╬э╓╥╓╓©м╓╛║╒хС╬О╓кфц╪Л╓й\n"
-" ╔╓╔С╔╧╔х║╪╔К╓Р╓╥╓©╓╓╬Л╧Г╓ка╙╓с╓ч╓╧║ё\"╔╚╔╧╔©╔ч╔╓╔╨\"\n"
-" ╓н╔╓╔С╔╧╔х║╪╔К╓хф╠╓╦╓╞║╒╪╚й╛╓н╔╥╔╧╔ф╔Ю╓н╩х╓╓йЩ╓Ра╙╓ы╓ч╓╧║ё\n"
-" ╓г╓Б║╒╢╟а╢╓к╪╚©╝╓╛╓й╓╓╓й╓И║╒юДбп╓к╓Ё╓Л╓о╩х╓О╓й╓╓╓г╓╞╓ю╓╣╓╓║╙\n"
+"\n"
+"\t* ╔╚╔╧╔©╔ч╔╓╔╨: GNU/Linux ╓н╓Ё╓х╓Р╓Х╓╞цн╓ц╓ф╓╓╓К©м╓о║╒╔╥╔╧╔ф╔Ю╓н\n"
+"\t ╪Г╓й╩х╓╓йЩ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║й╔О║╪╔╞╔╧╔ф║╪╔╥╔Г╔С║╒╔╣║╪╔п║╒Ё╚х╞║к║ё\n"
+"\t ║ж©Д╬╘║в╓Х╓Й╓о╓©╓╞╓╣╓С╪алД╓кеЗ╓╗╓К╓Ё╓х╓к╓й╓К╓н╓г║╒╓Ё╓н╔╞╔И╔╧╓Р\n"
+"\t а╙╓ж╓к╓о GNU/Linux ╓н╩еах╓ъ╓к╓д╓╓╓фцн╪╠╓╛╓╓╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+"\t* ╔╗╔╜╔╧╔я║╪╔х: GNU/Linux ╓к╬э╓╥╓╓©м╓о║╒╓Ё╓н╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧╓Р\n"
+"\t а╙╓ы╓ч╓╧║ё║ж╔╚╔╧╔©╔ч╔╓╔╨║в╓хф╠╓╦╓╞║╒╪Г╓╒й╩х╓╓й║й╔О║╪╔╞╔╧╔ф║╪╔╥╔Г╔С║╒\n"
+"\t ╔╣║╪╔п║╒Ё╚х╞║к╓Ра╙╓ы╓ч╓╧║ё╓Ё╓н╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧╓Ра╙╓жа╟╓к\n"
+"\t ╓Х╓╞╧м╓╗╓ф╓╞╓ю╓╣╓╓║ё╓╜╓О╓А╓ф╔╚╔╧╔©╔Ю╡╫╓╥╓©╔╓╔С╔╧╔х║╪╔К╓╛╓г╓╜╓ч╓╧║ё\n"
+"\t GNU/Linux╓к╓д╓╓╓ф╓Х╓ш╓и╬э╓╥╓╞╓й╓╓╓х║╒╓й╓╚╓й╓╚еЗ╓╗╓И╓Л╓й╓╓╪алД╓╛\n"
+"\t ╓╒╓Й╓ч╓╧║ё╓О╓╚╓ц╓©©м╟йЁ╟╓о║╒╓Ё╓н╔╞╔И╔╧╓оа╙╓п╓й╓╓╓Ё╓х║ё"
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1324,371 +1596,884 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"а╙бР:\n"
"\n"
" - ╔╚╔╧╔©╔ч╔╓╔╨: GNU/Linux ╓к╬э╓╥╓╠╓Л╓п║╒╪╚й╛╓н╔ч╔╥╔С╓н╪Г╓й╩х╓╓йЩ╓к\n"
" ╓╒╓О╓╩╓фа╙╓с╓ч╓╥╓Г╓╕║ё╬э╓╥╓╞╓о╟й╡╪╓Р╩╡╬х╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
+"\n"
" - ╔╗╔╜╔╧╔я║╪╔х: ╓Ё╓Л╓окэеЖ╓кGNU/Linux╓к╬э╓╥╓╓©м╓╛║╒хС╬О╓кфц╪Л╓й\n"
-" ╔╓╔С╔╧╔х║╪╔К╓Р╓╥╓©╓╓╬Л╧Г╓ка╙╓с╓ч╓╧║ё\"╔╚╔╧╔©╔ч╔╓╔╨\"\n"
+" ╔╓╔С╔╧╔х║╪╔К╓Р╓╥╓©╓╓╬Л╧Г╓ка╙╓с╓ч╓╧║ё║ж╔╚╔╧╔©╔ч╔╓╔╨║в\n"
" ╓н╔╓╔С╔╧╔х║╪╔К╓хф╠╓╦╓╞║╒╪╚й╛╓н╔╥╔╧╔ф╔Ю╓н╩х╓╓йЩ╓Ра╙╓ы╓ч╓╧║ё\n"
-" ╓г╓Б║╒╢╟а╢╓к╪╚©╝╓╛╓й╓╓╓й╓И║╒юДбп╓к╓Ё╓Л╓о╩х╓О╓й╓╓╓г╓╞╓ю╓╣╓╓║╙\n"
+" ╓г╓Б║╒╢╟а╢╓к╪╚©╝╓╛╓й╓╓╓й╓И║╒юДбп╓к╓Ё╓Л╓о╩х╓О╓й╓╓╓г╓╞╓ю╓╣╓╓║╙"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"╔ч╔╥╔С╓н╩х╓╓йЩ╓на╙бР╩Х║й╓Ё╓Л╓о╓д╓ч╓Й║╒╓╒╓й╓©╓╛╔╓╔С╔╧╔х║╪╔К╓на╙бР╓г\n"
-"\"╔╚╔╧╔©╔Ю\" ╓╚ \"╔╗╔╜╔╧╔я║╪╔х\" ╓Ра╙╓С╓ю╓И╩х╓╓╓ч╓╧║к╓о╟й╡╪╓ндл╓Й:\n"
+"║ж╔╚╔╧╔©╔Ю║в╓╚║ж╔╗╔╜╔╧╔я║╪╔х║в╓Ра╙╓С╓ю╓И╩х╓╓╓ч╓╧║к╓о╟й╡╪╓ндл╓Й:\n"
+"\n"
+"\n"
+" - ╔О║╪╔╞╔╧╔ф║╪╔╥╔Г╔С: ╔ч╔╥╔С╓Р╪Г╓к╔г╔╧╔╞╔х╔ц╔в╓н╟ЛхлмЬмя╓г╩х╓╕╓й\n"
+" ╓И║╒╓Ё╓Л╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╔╙╔у╔ё╔╧╤хлЁ║╒╡ХаЭ╓нйт╫╦╓й╓и╓г╔ч╔╥╔С\n"
+" ╓Р╩х╓╕╬Л╧Г╓к╓о╓Ё╓Л╓г╓╧║ё╔Ё╔С╔я╔╓╔И╓ДЁ╚х╞мя╓н╔Ф║╪╔ф╔ё╔Й╔ф╔ё╓офЧ\n"
+" ╓Л╓ч╓╩╓С║ё\n"
"\n"
-" - ╔н║╪╔ч╔К: ╔ч╔╥╔С╓Р╪Г╓к╔г╔╧╔╞╔х╔ц╔в╓н╟ЛхлмЬмя╓г╩х╓╕╓й╓И║╒╓Ё╓Л╓Р\n"
-" а╙╓С╓г╓╞╓ю╓╣╓╓║ё╔╙╔у╔ё╔╧╤хлЁ║╒╡ХаЭ╓нйт╫╦╓й╓и╓г╔ч╔╥╔С╓Р╩х╓╕╬Л╧Г\n"
-" ╓к╓о╓Ё╓Л╓г╓╧║ё╔Ё╔С╔я╔╓╔И╓ДЁ╚х╞мя╓н╔Ф║╪╔ф╔ё╔Й╔ф╔ё╓офЧ╓Л╓ч╓╩╓С║ё\n"
"\n"
" - Ё╚х╞мя: л╬а╟╓н╓х╓╙╓Й║ё╓Ё╓н╔ч╔╥╔С╓Р╪Г╓к╔╫╔у╔хЁ╚х╞╓г╩х╓╕╓н╓й╓И║╒\n"
" ╓Ё╓Л╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╔╫║╪╔╧╔Ё║╪╔и╓Р╔Ё╔С╔я╔╓╔К║╒╔г╔п╔ц╔╟║╒ю╟╥а\n"
" ╓╥╓©╓Й║╒╔╫╔у╔х╔я╔ц╔╠║╪╔╦╓Р╨Н╓ц╓©╓Й╓╧╓К╓н╓к╩х╓╕╔╫╔у╔х╫╦╓╛╓╧╓ы╓ф\n"
" ╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧║ё\n"
"\n"
+"\n"
" - ╔╣║╪╔пмя: Linux-Mandrake╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓Х╓╕╓х╓╥╓ф╓╓╓К╔ч╔╥╔С╓Р║╒\n"
" ╔╣║╪╔пюЛмя╓г╩х╓╕╓д╓Б╓Й╓й╓И╓Ё╓Л╓г╓╧║ё╔у╔║╔╓╔К╔╣║╪╔п (NFS╓ДSMB)║╒\n"
" ╔в╔Й╔С╔©╔╣║╪╔п║йUnix╓нlp (╔И╔╓╔С╔в╔Й╔С╔©) ╔в╔М╔х╔Ё╔К╓╚╔╕╔ё╔С╔и╔╕╔╨\n"
" ╪╟╓нSMB╥пмЁ╓н╟У╨Ч)║╒г╖╬з╔╣║╪╔п (NIS)║╒╔г║╪╔©╔ы║╪╔╧╔╣║╪╔п╓й╓и╓г╓╧║ё\n"
-" ╓Ё╓н╬Л╧Г╓к╓о║╒KDE╓ДGNOME╓й╓и╓н╓╙╓Б╓а╓Ц╓о╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╩╓С║ё\n"
+" ╓Ё╓н╬Л╧Г╓к╓о║╒KDE╓ДGNOME╓й╓и╓н╓Ё╓╤╓╚╓╥╓╓бЕй╙╓о╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╩╓С║ё"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX ╓о╓ч╓╨║╒PCI╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓Рц╣╓╥╓к╓╓╓╜╓ч╓╧║ё╔╒╔ю╔в╔©╓╛╓ъ╓д\n"
-"╓╚╓ц╓ф║╒╩х╓╕╔и╔И╔╓╔п╓╛╓О╓╚╓Л╓п║╒╓╫╓Л╓Р╪╚ф╟е╙╓ках╓ъ╧Ч╓ъ╓ч╓╧║ё╔╒╔ю╔в╔©\n"
-"╓╛╓©╓╞╓╣╓С╓╒╓ц╓ф╓БбГ╬Фив╓г╓╧║ё\n"
+"DrakX╓оPCI SCSI╔╒╔ю╔в╔©╓Р╦║╫п╓╥╓Х╓╕╓х╓╥╓ч╓╧║ё\n"
+"╓Б╓╥DrakX╓╛SCSI╔╒╔ю╔в╔©╓Р╓ъ╓д╓╠║╒╓и╓н╔и╔И╔╓╔п╓Р╩х╓╗╓п╓╓╓╓╓╚╓Рцн╓ц╓ф╓╓╓Л╓п║╒\n"
+"╪╚ф╟е╙╓к╔и╔И╔╓╔п╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧║ё\n"
"\n"
"\n"
-"╓Б╓╥ISA╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓Р╩х╓ц╓ф╓╓╓©╓Й║╒PCI╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓г╓Б\n"
-"DrakX╓к╔и╔И╔╓╔п╓╛╓О╓╚╓И╓й╓╚╓ц╓©╓Й╓╧╓К╓х╓╜║╒╓ч╓©╓оSCSI╔╒╔ю╔в╔©╓╛╓й╓╓\n"
-"╓х╓╜╓к╓о║╒╔в╔М╔С╔в╔х╓╛╫п╓ф╓╜╓ф║╒SCSI╔╒╔ю╔в╔©╓╛╓╒╓К╓╚╓и╓╕╓╚╓╜╓╜╓ч╓╧║ё\n"
-"╓й╓╠╓Л╓п\"╓╓╓╓╓╗\"╓хеЗ╓╗╓ф╓╞╓ю╓╣╓╓║ё╓╒╓Л╓п\"╓о╓╓\" ╓хеЗ╓╗╓ч╓╥╓Г╓╕║ё\n"
-"╓╧╓К╓х╔и╔И╔╓╔п╓н╟ЛмВи╫╓╛╫п╓ф╓╞╓К╓н╓г║╒е╛юз╓й╓Б╓н╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"╓Б╓╥SCSI╔╒╔ю╔в╔©╓╛╓й╓╓╓╚║╒ISA SCSI╔╒╔ю╔в╔©╓╚║╒╓ч╓©╓о\n"
+"DrakX╓╛г╖╪╠╓╥╓й╓╓PCI SCSI╔╒╔ю╔в╔©╓ю╓ц╓©╬Л╧Г║╒ SCSI╔╒╔ю╔в╔©╓╛╔╥╔╧╔ф╔Ю\n"
+"╓к╓╒╓К╓╚╓Р©р╓м╓И╓Л╓ч╓╧║ё╔╥╔╧╔ф╔Ю╓к╔╒╔ю╔в╔©╓╛╓й╓╠╓Л╓п\n"
+"'No'╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё 'Yes'╓Р╔╞╔Й╔ц╔╞╓╧╓К╓х║╒\n"
+"╔╒╔ю╔в╔©╓н╔и╔И╔╓╔п╟ЛмВ╓Ри╫╪╗╓╧╓К╓н╓г║╒╓╫╓Ё╓╚╓Иа╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
"\n"
-"╔и╔И╔╓╔п╓Ра╙╓С╓ю╓И║╒╓╫╓н╔и╔И╔╓╔п╓г╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓©╓╓╓╚╓и╓╕╓╚╓Р\n"
-"DrakX╓╛╓╜╓╓╓ф╓╜╓ч╓╧║ё╨г╫И╓о║╒╔и╔И╔╓╔п╓к╔о║╪╔и╔╕╔╖╔╒╓Р╔в╔М║╪╔ж╓╣╓╩╓ф\n"
-"╓ъ╓ч╓╥╓Г╓╕║ё╓©╓╓╓╛╓╓╓о╓Ё╓Л╓г╓╕╓ч╓╞╓╓╓╜╓ч╓╧║ё\n"
+"╓Б╓╥╪Йф╟╓г╔╒╔ю╔в╔©╓Р╩ьдЙ╓╥╓©╬Л╧Г╓к╓о║╒DrakX╓о╔╙╔в╔╥╔Г╔С╩ьдЙ╓Р╓╥╓©╓╓╓╚╓и╓╕╓╚\n"
+"╪алД╓╥╓ф╓╜╓ч╓╧║ёDrakX╓к╔о║╪╔и╔╕╔╖╔╒╓Р╔в╔М║╪╔ж╓╣╓╩╓ф║╒╔╙╔в╔╥╔Г╔С╓Р╥Х╓А╓╣╓╩\n"
+"╓ч╓╥╓Г╓╕║ё╓©╓╓╓ф╓╓╓Ё╓Л╓г╓╕╓ч╓╞ф╞╓╜╓ч╓╧║ё\n"
"\n"
-"\n"
-"╓Ё╓Л╓╛╔ю╔А╓й╓И║╒╓╫╓н╔╒╔ю╔в╔©╓к╓д╓╓╓ф╔и╔╜╔Е╔А╔С╔ф║╪╔╥╔Г╔С╓к╫Я╓╓╓ф╓╒╓ц╓©\n"
-"╓Ё╓х╓Д║╒╔╕╔ё╔С╔и╔╕╔╨╓н╔в╔М╔я╔ф╔ё╓н╬ПйС╓й╓и╓Р╩в╓╓╓ю╓╥╓ф╓ъ╓ч╓╥╓Г╓╕║ё╔╓╔С\n"
-"╔╧╔х║╪╔К╔╛╔╓╔и╓г╓Б║╒╓Ё╓Л╓Р╧╣╓╗╓ф╓╙╓╞╓Х╓╕╓к╓╙╬╘╓А╓╥╓ч╓╥╓©╓Х╓м║ё╓╫╓н╬ПйС\n"
-"╓Р╔и╔И╔╓╔п╓к╓О╓©╓╥╓ф╓Д╓К╓Ё╓х╓к╓й╓Й╓ч╓╧║ё"
+"╓Б╓╥╔ю╔А╓й╓И║╒╔и╔И╔╓╔п╓к╪╚й╛╓г╔╙╔в╔╥╔Г╔С╓Рм©╓╗╓Ки╛мв╓╛╓╒╓Й╓ч╓╧║ё\n"
+"╔Ф║╪╔╤╔╛╔╓╔и (3╬о, \"╔о║╪╔и╔╕╔╖╔╒╓к╓д╓╓╓ф╓н╬ПйС╪Щ╫╦) ╓╚╓И║╒╓Ё╓Л╓к╢ь╓О╓К\n"
+"╬ПйС╓Р╔о║╪╔и╓н╔ч╔к╔Е╔╒╔К╓Д╔А║╪╔╚║╪ Web ╔╣╔╓╔х║й╔м╔ц╔х╓к╔╒╔╞╔╩╔╧╓г╓╜╓Л╓п║к\n"
+"╓╒╓К╓╓╓о║й╔╥╔╧╔ф╔Ю╬Е╓к╓╒╓Л╓п║кMS Windows ╓╚╓И╓и╓╕╓Д╓ц╓фи╛мв╬ПйС╓Рфю╓К╓╚\n"
+"╓Рд╢╓ы╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+"╓╣╓ф╓Ё╓С╓и╓о║╒╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓гLinux-Mandrake OS ╓Р╓и╓Ё╓к╔╓╔С╔╧╔х║╪╔К\n"
+"╓╧╓К╓╚а╙╓ж╓Ё╓х╓к╓й╓Й╓ч╓╧║ё╓Б╓╥╔о║╪╔и╔г╔ё╔╧╔╞╓╛╤У╓╚║╒╓╧╓г╓кйл╓н OS ╓╛\n"
+"╔╧╔з║╪╔╧╓Ра╢иТ╩х╓ц╓ф╓╥╓ч╓ц╓ф╓╓╓©╓И║╒╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓ц╓ф╓Д╓Ки╛мв╓╛\n"
+"╓╒╓Й╓ч╓╧║ё╟Л╦ю╓г║╒╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓х╓╓╓╕╓н╓о║╒╔о║╪╔и╔г╔ё╔╧╔╞╓РоюмЩ\n"
+"е╙╓к╤Хюз╓ц╓ф╓Д╓К╓Ё╓х╓г╓╧║ё╓╫╓╕╓Д╓ц╓ф║╒©╥╓╥╓╞ Linux-Mandrake ╔╥╔╧╔ф╔Ю╓Р\n"
+"╔╓╔С╔╧╔х║╪╔К╓╧╓К╤Хюз╓Й╓Р╓Ё╓╥╓И╓╗╓ф╓Д╓К╓О╓╠╓г╓╧║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓н╓о║╒╓Д╓Й╓й╓╙╓╥╓Д╦ЕлА╓Й╓╛╓╜╓╜╓ч╓╩╓С║ё╓ю╓╚╓И\n"
+"╫И©╢╪т╓к╓о╓╙╓ц╓╚╓й╓╓╓╥║╒╣╓хХ╓Л╓╧╓К╨Н╤х╓г╓о╓╒╓Й╓ч╓╧║ё\n"
+"╓Ё╓н╔╕╔ё╔╤║╪╔и╓о╔в╔М╔╩╔╧╓Р╢йц╠╓к╓╧╓К╓©╓А╓н╓Б╓н╓г╓╧║ё╩о╓А╓Ка╟╓к║╒\n"
+"╔ч╔к╔Е╔╒╔К╓Р╓╦╓ц╓╞╓Йфи╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"╨гдЦ╓г╓БфС╓д╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛мв╓Й╓ч╓╧║ё╟Л╓д╓о╔╥╔╧╔ф╔Ю╓╫╓н╓Б╓нмя╓г\n"
+"╓Б╓╕╟Л╓д╓о╡╬аш╔А╔Б╔Й║й╓ч╓©╓о╔╧╔О╔ц╔в║кмя╓г╓╧║ё\n"
+"\n"
+"\n"
+"╓Б╓╥╓╧╓г╓к╔я║╪╔ф╔ё╔╥╔Г╔С╓РдЙ╣а╓╥╓ф╓╒╓К╓й╓И║й╓©╓х╓╗╓п╟йа╟╓к╔╓╔С╔╧╔х║╪╔К\n"
+"╓╥╓©╓х╓╚йл╓н╔д║╪╔К╓Р╩х╓ц╓©╓х╓╚║к║╒Mandrake-Linux╓г╓╫╓Л╓Р╩х╓╕╓Х╓╕а╙бР\n"
+"╓╧╓Л╓п╓╧╓ъ╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓ч╓юдЙ╣а╓╣╓Л╓ф╓╓╓й╓╠╓Л╓п║╒©╥╓╥╓╞╨Н╓Й╓ч╓╥╓Г╓╕║ё\n"
+"╓╫╓Л╓к╓о║╒╬Е╓гмя╟у╓╥╓©╔╕╔ё╔╤║╪╔и╓Р╩х╓ц╓ф╓╞╓ю╓╣╓╓║ё╔о║╪╔и╔г╔ё╔╧╔╞╓нюъдЙ\n"
+"╓к╠Ч╓╦╓ф║╒╓╓╓╞╓д╓╚╓Д╓ЙйЩ╓╛╓╒╓Й╓ч╓╧:\n"
+"\n"
+"\t* ╢Шб╦╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╩х╓╕: ╔╕╔ё╔╤║╪╔и╓╛╢Шб╦╓нLinux \t "
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔г╔ё╔╧╔╞╬Е╓г╦╚╓д╓╠╓ч╓╥╓©║ё\n"
+"\t ╓Б╓╥╓Ё╓Л╓Р╩х╓╕╓й╓И║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓с╓ч╓╧║ё\n"
+"\n"
+"\n"
+"\t* ╔г╔ё╔╧╔╞а╢бн╓Р╬ц╣Н: ╔о║╪╔и╔и╔И╔╓╔ж╬Е╓на╢╔г║╪╔©╓Д╔я║╪╔ф╔ё╔╥╔Г╔С╓Р\n"
+"\t ╬ц╣Н╓╥╓ф║╒©╥╓╥╓╞ Linux-Mandrake ╓г╬Е╫Я╓╜╓╥╓©╓╠╓Л╓п║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Р\n"
+"\t а╙╓с╓ч╓╥╓Г╓╕║ё╓Ё╓н╬Л╧Г║╒©╣╫е╓к╓╥╓ф╓╞╓ю╓╣╓╓║ё╓╓╓ц╓©╓СЁнг╖╔э╔©╔С╓Р\n"
+"\t ╡║╓╥╓©╓И║╒╓Б╓╕╓Д╓Й╓й╓╙╓╥╓о╓╜╓╜╓ч╓╩╓С║ё\n"
+"\n"
+"\n"
+"\t* ╔╕╔ё╔С╔и╔╕╔╨╓н╤У╓╜иТй╛╓Р╩х╓╕: ╔о║╪╔и╔г╔ё╔╧╔╞╓к╔╕╔ё╔С╔и╔╕╔╨╓╛\n"
+"\t ╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ф╓╓╓ф║╒╔г╔ё╔╧╔╞а╢бн╓Р╩х╓ц╓ф╓╓╓К╓й╓И║╒\n"
+"\t Linux ╓н╔г║╪╔©мя╓к╤У╓╜╓Р╓д╓╞╓Ки╛мв╓╛╓╒╓Й╓ч╓╧║ё╓Ё╓Л╓к╓о║╒\n"
+"\t ╔╕╔ё╔С╔и╔╕╔╨╓Р╬ц╓╥╓ф╓╥╓ч╓ц╓ф╓Б╓╓╓╓╓г╓╧╓╥║й╬Е╓н║жа╢╔г╔ё╔╧╔╞╬ц╣Н║в\n"
+"\t ╓╚║ж╔╗╔╜╔╧╔я║╪╔х╔Б║╪╔и║в╓Р╦╚╓ф╓╞╓ю╓╣╓╓║к║╒╔╕╔ё╔С╔и╔╕╔╨╓н\n"
+"\t ╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔Й╔╣╔╓╔╨╓╧╓КйЩк║╓Б╓╒╓Й╓ч╓╧║ё╔Й╔╣╔╓╔╨╓н╬Л╧Г║╒\n"
+"\t ╔г║╪╔©╓о╓╧╓ы╓ф╩д╓Й╓ч╓╧║ё Linux-Mandrake ╓х╔╕╔ё╔С╔и╔╕╔╨╓Рф╠╓╦\n"
+"\t ╔ч╔╥╔С╓г╩х╓╓╓©╓╠╓Л╓п╓Ё╓Л╓╛╓╙╬╘╓А╓г╓╧║ё\n"
+"\n"
+"\n"
+"\t ╓Ё╓нйЩк║╓Ра╙╓жа╟╓к║╒╓Ё╓Л╓Р╓Д╓К╓х╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓о\n"
+"\t а╟╓Х╓Й╬╝╓╣╓╞╓й╓К╓н╓о╬╣цн╓╥╓ф╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\t ╓д╓ч╓Й║╒╔╕╔ё╔С╔и╔╕╔╨╓н╓ш╓╕╓г╓о║╒╔г║╪╔©╓Рйщб╦╓╥╓©╓Й©╥╓╥╓╓╔╫╔у╔х╓Р\n"
+"\t ╔╓╔С╔╧╔х║╪╔К╓╧╓К╓х╓╜╓к║╒╩х╓╗╓К╤У╓╜╓╛╬╞╓й╓╞╓й╓К╓О╓╠╓г╓╧║ё\n"
+"\n"
+"\n"
+"\t* ╔╗╔╜╔╧╔я║╪╔х╔Б║╪╔и: ╔о║╪╔и╔г╔ё╔╧╔╞╓Р╪Йф╟╓г╔я║╪╔ф╔ё╔╥╔Г╔С╓╥╓©╓╠╓Л╓п║╒\n"
+"\t ╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓с╓ч╓╥╓Г╓╕║ё╓г╓Б║╒цМ╟у╓╥╓ф╓╞╓ю╓╣╓╓║ё╤╞но╓й╓ю╓╠╓к║╒\n"
+"\t "
+"╢М╦╠╓йа╙бР╓г╓Б╓╒╓Й╓ч╓╧║ё╔г╔ё╔╧╔╞╬Е╓на╢╔г║╪╔©╓Р╓╒╓ц╓╣╓Й╬ц╓╥╓ф╓╥╓ч╓╗╓ч╓╧║ё\n"
+"\t ╓Х╓╞╓Х╓╞╓О╓╚╓ц╓©╓╕╓╗╓г╓й╓╠╓Л╓п║╒╓Ё╓Л╓оа╙╓п╓й╓╓╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+"╓╣╓ф╓Ё╓Ё╓г║╒©╥╓╥╓╓ Linux-Mandrake ╔╥╔╧╔ф╔Ю╓н\n"
+"╔╓╔С╔╧╔х║╪╔К╓к╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╩х╓╕╓╚╩ьдЙ╓╥╓ч╓╧║ё╓Б╓╥\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓╛дЙ╣а╨я╓ъ╓й╓И║йа╟╓к GNU/Linux ╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓©\n"
+"╓Ё╓х╓╛╓╒╓ц╓©╓Ййл╓н╔д║╪╔К╓Р╩х╓ц╓©╓Й╓╥╓©╬Л╧Г║к║╒╓╫╓Л╓Р╓╫╓н╓ч╓ч╩х╓╕\n"
+"╓Ё╓х╓Б╓г╓╜╓ч╓╧║ё╓╫╓Л╟йЁ╟╓о║╒╔я║╪╔ф╔ё╔╥╔Г╔СдЙ╣а╓╛и╛мв╓г╓╧║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╓к╓о║╒╓ч╓╨╔о║╪╔и╔г╔ё╔╧╔╞╓Ра╙╓с╓ч╓╧║ё╓Б╓╥\n"
+"╨г╫И╓н IDE ╔и╔И╔╓╔ж╓Ра╙╓ж╓й╓И║жhda║в║╒фСхжлэ╓н IDE ╓й╓И║жhdb║в║╒\n"
+"╨г╫И╓н SCSI ╔г╔ё╔╧╔╞╓й╓И║жsda║в╓х╓╓╓╕╤Я╧Г╓ка╙╓с╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╔о║╪╔и╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓к╓о║╒╟й╡╪╓н╔╙╔в╔╥╔Г╔С╓╛╩х╓╗╓ч╓╧:\n"
+"\n"
+" * а╢╬ц╣Н: а╙╓С╓ю╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓на╢╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╬ц╣Н╓╥╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╪╚ф╟ЁД╓ЙеЖ╓ф: ╔о║╪╔и╔г╔ё╔╧╔╞╓н╤У╓╜иТй╛╓к║╒╪╚ф╟е╙╓к Ext2 ╓х\n"
+" ╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╔Л╔╧╔╜╔Е║╪╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К: ╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓╛гк╡У╓╣╓Л\n"
+" ╓©╓И║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓г╓╫╓Л╓Р╫╓иЭ╓╥╓ф╓ъ╓К╓Ё╓х╓╛╓г╓╜╓ч╓╧║ё\n"
+" ©╣╫е╓к╩х╓ц╓ф║╒╓Ё╓Л╓╛кЭг╫╓г╓й╓╓╓Ё╓х╓о╬╣цн╓╥╓ф╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+" * ╪Х╓Й╬ц╓╥: йя╧╧╓Р╪Х╓Й╬ц╓╥╓ч╓╧║ё\n"
+"\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * ╔Й╔М║╪╔и: "
+"йя╧╧╓Ра╢иТ╪Х╓Й╬ц╓╥╓ф║╒╨г╫И╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Рфи╓ъ╧Ч╓ъ╓ч╓╧║ё\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * ╔╕╔ё╔╤║╪╔и: ╔о║╪╔и╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔╕╔ё╔╤║╪╔и╓Р╩х╓╕╓х╓╜╓н\n"
+" ╔╙╔в╔╥╔Г╔С╓г╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓к╓д╓╓╓ф╓нцн╪╠╓╛╓й╓╓©м╓о║╒╓Ё╓Л╓╛\n"
+" ╓╙╬╘╓А╓г╓╧║ё\n"
+"\n"
+"\n"
+" * ╔у╔М╔ц╔т║╪╓╚╓И╡СиЭ: ╟йа╟╓н╔╓╔С╔╧╔х║╪╔К╓г║╒╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р\n"
+" ╔у╔М╔ц╔т║╪╓кйщб╦╓Ё╓Л╓г╓╫╓Л╓Р╡СиЭ╓г╓╜╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╔у╔М╔ц╔т║╪╓кйщб╦: ╡СиЭмя╓к╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Р╔у╔М╔ц╔т║╪╓к\n"
+" йщб╦╓╥╓©╓╓╓х╓╜╓к╩х╓╓╓ч╓╧║ё╓Ё╓Л╓Р╩х╓╕╓Х╓╕╤╞╓╞╓╙╬╘╓А╓╥╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╢╟н╩: ╔о║╪╔и╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔Сюз╓Й╓╛╫╙╓О╓ц╓©╓И║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Р\n"
+" ╩х╓ц╓фйя╧╧╓Рйщб╦╓╥╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╩╡╧м╓ч╓г╓к║╒╔╜║╪╔э║╪╔и╓╚╓ИЁф╔╙╔в╔╥╔Г╔С╓╛а╙╓ы╓ч╓╧║ё╔©╔ж╓х╬Е╡╪лП╟У╓Р╩х╓ц╓ф\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╓И║╒╟й╡╪╓╛╩х╓╗╓ч╓╧:\n"
+"\n"
+" * Ctrl-c║╖©╥╣╛╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К║й╤У╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╓х╓╜)\n"
+"\n"
+" * Ctrl-d║╖╔я║╪╔ф╔ё╔╥╔Г╔С╨О╫Э\n"
+"\n"
+" * Ctrl-m║╖╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓Р╔╩╔ц╔х"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-"Linuxмя╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓н╫ЮхВ╓╛╓г╓╜╓ф╓╓╓Л╓п║йа╟╓к╔╓╔С╔╧╔х║╪╔К╓╥╓©╓Й║╒\n"
-"йл╓н╔Ф║╪╔ф╔ё╔Й╔ф╔ё╓г╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓ц╓©╬Л╧Г║к║╒╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓к\n"
-"Linux-Mandrake╔╥╔╧╔ф╔Ю╓Р╔╓╔С╔╧╔х║╪╔К╓╧╓К╓╚╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
-"╓Б╓╥╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓ц╓ф╓╓╓й╓╠╓Л╓п║╒╔о║╪╔и╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р\n"
-"╓Ё╓Ё╓г╨Н╓Й╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓х╓╓╓╕╓н╓о║╒╔Ё╔С╔т╔Е║╪╔©╓н╔о║╪╔и╔г╔ё╔╧╔╞\n"
-"╓Рлэе╙╓к╓╒╓О╓╩╓фоюмЩе╙╓к╤Хюз╓К╓Ё╓х╓г╓╧║ё\n"
+"╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓к╦║╫п╓╣╓Л╓©║╒╢Шб╦╓н Linux ╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╬Е╓к\n"
+"╪╗╓╥╓ч╓╧║ё╔╕╔ё╔╤║╪╔и╓на╙бР╓Р╓╫╓н╓ч╓ч╓к╓╥╓ф╓╙╓╓╓ф╓Б╓╓╓╓╓г╓╥╓Г╓╕║ё\n"
+"дл╬О╓нмЬмя╓к╓олДбЙ╓╒╓Й╓ч╓╩╓С║ёа╙бР╓Рйя╓╗╓©╓И║╒╨гдЦ╓г╓Б root\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С (\"/\")╓Р╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё╓╒╓ч╓Й╬╝╓╣╓╓╔я║╪╔ф╔ё╔╥╔Г╔С\n"
+"╓Р╓Ё╓Ё╓га╙╓ж╓х║╒╔╫╔у╔х╓╛фЧ╓Йюз╓И╓й╓╞╓й╓Й╓ч╓╧╓Х║ё╓ч╓©║╒╔г║╪╔©╓Рйл╓н\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓к╣╞╓╜╓©╓╠╓Л╓п║╒\"/home\" ╓Б╩ьдЙ╓╥╓ч╓╥╓Г╓╕║й╓Ё╓Л╓о║╒\n"
+"Linux ╔я║╪╔ф╔ё╔╥╔Г╔С╓╛йё©Т╓й╓╓╓хит╡дг╫╓г╓╧╓╛)║ё\n"
+"\n"
+"\n"
+"╓а╓й╓ъ╓кЁф╔я║╪╔ф╔ё╔╥╔Г╔С╓о╟й╡╪╓н╫Я╪╟╓г╣С╓╛╓ц╓ф╓╓╓ч╓╧: ║жл╬а╟║в║жмфнл║в\n"
+"\n"
"\n"
+"║жл╬а╟║в╓о╪║╓н╫Я╪╟╓г╓╧: ║ж╔о║╪╔и╔г╔ё╔╧╔╞╪ОнЮ║в║ж╔и╔И╔╓╔жхж╧Ф║в\n"
+"║ж╔я║╪╔ф╔ё╔╥╔Г╔Схж╧Ф║в║й╓©╓х╓╗╓п║жhda1║в)\n"
"\n"
-"©╥╓╥╓╞╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╓й╓И║╒\"╪╚ф╟ЁД╓ЙеЖ╓ф\"╓Ра╙╓ы╓п║╒╪╚ф╟е╙╓к\n"
-"Linuxмя╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓г╓╜╓╒╓╛╓Й╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╔о║╪╔и\n"
-"╔г╔ё╔╧╔╞╓Ра╙╓ж╓х╓╜╓о║╒╨г╫И╓нIDE╔и╔И╔╓╔ж╓╛\"hda\"║╒2хжлэ╓╛\"hdb\"║╒╨г╫И\n"
-"╓нSCSI╔и╔И╔╓╔ж╓╛\"sda\"║╒╓х╓╓╓╕╤Я╧Г╓к╓й╓Й╓ч╓╧║ё\n"
"\n"
+"║ж╔о║╪╔и╔г╔ё╔╧╔╞╪ОнЮ║в╓о║╒IDE ╔г╔ё╔╧╔╞╓й╓И║жhd║в╓г║╒SCSI ╓й╓И║жsd║в\n"
+"╓г╓╧║ё\n"
"\n"
-"╓Х╓╞╓╒╓К╔я║╪╔ф╔ё╔╥╔Г╔С╓нюз╓ЙйЩ╓х╓╥╓ф╓о║╒root╔я║╪╔ф╔ё╔╥╔Г╔С(/) ╓х\n"
-"boot╔я║╪╔ф╔ё╔╥╔Г╔С(/boot) ╓Р╨Н╓Й╓ч╓╧║ёroot╓о╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓н\n"
-"╔г╔ё╔Л╔╞╔х╔Й╓н╓ф╓ц╓з╓С╓г║╒/boot╓к╓о╔Ё╔С╔т╔Е║╪╔©╓н╔╧╔╓╔ц╔а╓РфЧ╓Л╓©\n"
-"╓х╓╜╓к╣╞ф╟╓ки╛мв╓й╔у╔║╔╓╔К╓╛цж╓╓╓ф╓╒╓К╓х╓Ё╓М╓г╓╧║ё\n"
"\n"
+"║ж╔и╔И╔╓╔жхж╧Ф║в╓о║╒║жhd║в╓Д║жsd║в╓н╦Е╓к╓д╓╞й╦╩З╓г╓╧║ёIDE╓й╓И:\n"
"\n"
-"╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓х║╒╓у╓д╓╕╓о╓╫╓Ё╓н╔г║╪╔©╓оа╢иТ╬ц╓╗╓ф║╒╓Б╓х╓к\n"
-"лА╓Й╓ч╓╩╓С║ё╓ю╓╚╓И╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓н╓о║╒╫И©╢╪т╓к╓о╓╙╓ц╓╚╓й╓╓\n"
-"╓г╓╧╓╥║╒╓х╓ц╓ф╓Б╣╓хХ╓Л╓╧╓К╓Б╓н╓г╓╧║ё╓╫╓╕╓й╓И╓й╓╓╓Х╓╕╓к║╒DiskDrake\n"
-"╓о╓Ё╓н╔в╔М╔╩╔╧╓Р╓й╓К╓ы╓╞╢йц╠╓к╓╥╓ч╓╧║ё╓ч╓╨╓о╔и╔╜╔Е╔А╔С╔ф║╪╔╥╔Г╔С╓Р\n"
-"фи╓С╓г║╒юХ╓к©й╓Юа╟╓к╓╦╓ц╓╞╓Й╣╓╓РмН╓ацЕ╓╠╓ч╓╥╓Г╓╕║ё\n"
+" * ║жa║в╓о╔в╔И╔╓╔ч╔Й╔Ё╔С╔х╔М║╪╔И╬Е╓н╔ч╔╧╔©╔г╔ё╔╧╔╞\n"
"\n"
+" * ║жb║в╓о╔в╔И╔╓╔ч╔Й╔Ё╔С╔х╔М║╪╔И╬Е╓н╔╧╔Л║╪╔ж╔г╔ё╔╧╔╞\n"
"\n"
-"╓и╓н╔╙╔в╔╥╔Г╔С╓Б║╒╔╜║╪╔э║╪╔и╓га╙╓ы╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓ж╓к╓о║╒\n"
-"╔©╔ж╓х╬Е╡╪╓н╔╚║╪╔╫╔К╔╜║╪╓Р╩х╓╓╓ч╓╥╓Г╓╕║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╓И║╒\n"
-"╪║╓н╔╜║╪╓╛╩х╓╗╓ч╓╧║╖\n"
+" * ║жc║в╓о╔╩╔╚╔С╔ю╔ЙIDE╔Ё╔С╔х╔М║╪╔И╬Е╓н╔ч╔╧╔©╔г╔ё╔╧╔╞\n"
"\n"
-"- Ctrl-c ©╥╓╥╓╓╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓К║й╤У╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╬Л╧Г║к\n"
+" * ║жd║в╓о╔╩╔╚╔С╔ю╔ЙIDE╔Ё╔С╔х╔М║╪╔И╬Е╓н╔╧╔Л║╪╔ж╔г╔ё╔╧╔╞\n"
"\n"
-"- Ctrl-d ╓╫╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨О╫Э\n"
"\n"
-"- Ctrl-m ╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓нюъдЙ\n"
+"SCSI "
+"╔о║╪╔и╔г╔ё╔╧╔╞╓н╬Л╧Г║╒║жa║в╓о╔в╔И╔╓╔ч╔Й║╒║жb║в╓о╔╩╔╚╔С╔ю╔Й║╒╓х╓╓╓╕╤Я╧Г╓г╓╧"
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"©╥╓╥╓╞╨Н╓ц╓©╔я║╪╔ф╔ё╔╥╔Г╔С╓о╓╧╓ы╓ф║╒╔у╔╘║╪╔ч╔ц╔х╓╥╓й╓╓╓х╩х╓╗╓ч╓╩╓С\n"
-"║й╔у╔╘║╪╔ч╔ц╔х╓х╓╓╓╕╓н╓о╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓Р╓д╓╞╓К╓Ё╓х╓г╓╧║к║ё╓╣╓И╓к\n"
-"╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔у╔╘║╪╔ч╔ц╔х╓╥╓ф║╒╓╫╓Ё╓н╔г║╪╔©╓Р╬ц╣Н╓Б╓г╓╜╓ч╓╧║ё\n"
-"цМ╟у║╖╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓о║╒╔у╔╘║╪╔ч╔ц╔х╓╥╓й╓╙╓╧и╛мв╓о╓╒╓Й╓ч╓╩╓С║ё\n"
-"фц╓кйщб╦╓╥╓©╓╓╔г║╪╔©║й/home ╓х /usr/local╓й╓и║к╓╛╓╒╓Л╓п║╒╔у╔╘║╪╔ч╔ц╔х\n"
-"╓╥╓ф╓о╓╓╓╠╓ч╓╩╓С║ё"
+"©╥╓╥╓╓ Linux-Mandrake ╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔╓╔С╔╧╔х║╪╔Кмя╓к╬ц╣Н╓╥╓©╓╓\n"
+"╔о║╪╔и╔г╔ё╔╧╔╞╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓╫╓н╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓н╔г║╪╔©╓оа╢иТ\n"
+"╬ц╓╗╓ф╡СиЭ╓г╓╜╓ч╓╩╓С║ёцМ╟у╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+"╓Ё╓н╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓н╓╧╓ы╓ф╓н╔г║╪╔©╓Д╔я║╪╔ф╔ё╔╥╔Г╔С╓Р\n"
+"╬ц╣Н╓╧╓К╓й╓И║жOK║в╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё║жOK║в╓Р╔╞╔Й╔ц╔╞╓╥╓©╓И║╒\n"
+"╓Ё╓н╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓к╨ё╓╒╓К╔г║╪╔©╓Д╔я║╪╔ф╔ё╔╥╔Г╔С╓о║╒╔╕╔ё╔С╔и╔╕╔╨\n"
+"╓н╓Б╓н╓Р╢ч╓А║╒╓╧╓ы╓ф╬ц╣Н╓╣╓Л╓ф╡СиЭит╡дг╫╓к╓й╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╓Ё╓наЮ╨Н╓Р╪Х╓Й╓Д╓А╓ф║╒╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓н╔г║╪╔©╓Д╔я║╪╔ф╔ё╔╥╔Г╔С╓Р\n"
+"╓╫╓н╓ч╓ч╓к╓╥╓ф╓╙╓╞╓к╓о║ж╔╜╔Ц╔С╔╩╔К║в╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё"
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+"╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╔о║╪╔и╔г╔ё╔╧╔╞╬Е╓к╦╚╓д╓╚╓Й╓ч╓╥╓©║ё\n"
+"Linux-Mandrake OS ╓н╔╓╔С╔╧╔х║╪╔Кмя╓к╔Й╔╣╔╓╔╨╓╥╓©╓╓╓Б╓н╓Ра╙╓С╓г\n"
+"╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"╓а╓й╓ъ╓кЁф╔я║╪╔ф╔ё╔╥╔Г╔С╓о╟й╡╪╓н╫Я╪╟╓г╣С╓╛╓ц╓ф╓╓╓ч╓╧: "
+"║жл╬а╟║в║ж╔╕╔ё╔С╔и╔╕╔╨л╬║в║жмфнл║в\n"
+"\n"
+"\n"
+"║жл╬а╟║в╓о╪║╓н╫Я╪╟╓г╓╧: ║ж╔о║╪╔и╔г╔ё╔╧╔╞╪ОнЮ║в║ж╔и╔И╔╓╔жхж╧Ф║в\n"
+"║ж╔я║╪╔ф╔ё╔╥╔Г╔Схж╧Ф║в║й╓©╓х╓╗╓п║жhda1║в)\n"
+"\n"
+"\n"
+"║ж╔о║╪╔и╔г╔ё╔╧╔╞╪ОнЮ║в╓о║╒IDE ╔г╔ё╔╧╔╞╓й╓И║жhd║в╓г║╒SCSI ╓й╓И║жsd║в\n"
+"╓г╓╧║ё\n"
+"\n"
+"\n"
+"║ж╔и╔И╔╓╔жхж╧Ф║в╓о║╒║жhd║в╓Д║жsd║в╓н╦Е╓к╓д╓╞й╦╩З╓г╓╧║ёIDE╓й╓И:\n"
+"\n"
+" * ║жa║в╓о╔в╔И╔╓╔ч╔Й╔Ё╔С╔х╔М║╪╔И╬Е╓н╔ч╔╧╔©╔г╔ё╔╧╔╞\n"
+"\n"
+" * ║жb║в╓о╔в╔И╔╓╔ч╔Й╔Ё╔С╔х╔М║╪╔И╬Е╓н╔╧╔Л║╪╔ж╔г╔ё╔╧╔╞\n"
+"\n"
+" * ║жc║в╓о╔╩╔╚╔С╔ю╔ЙIDE╔Ё╔С╔х╔М║╪╔И╬Е╓н╔ч╔╧╔©╔г╔ё╔╧╔╞\n"
+"\n"
+" * ║жd║в╓о╔╩╔╚╔С╔ю╔ЙIDE╔Ё╔С╔х╔М║╪╔И╬Е╓н╔╧╔Л║╪╔ж╔г╔ё╔╧╔╞\n"
+"\n"
+"\n"
+"SCSI "
+"╔о║╪╔и╔г╔ё╔╧╔╞╓н╬Л╧Г║╒║жa║в╓о╔в╔И╔╓╔ч╔Й║╒║жb║в╓о╔╩╔╚╔С╔ю╔Й║╒╓х╓╓╓╕╤Я╧Г╓г╓╧\n"
+"\n"
+"║ж╔╕╔ё╔С╔и╔╕╔╨л╬║в╓о║╒╔╕╔ё╔С╔и╔╕╔╨╓г╓н╔и╔И╔╓╔жй╦╩З╓г╓╧║й╨г╫И╓н╔г╔ё╔╧╔╞\n"
+"╓Д╔я║╪╔ф╔ё╔╥╔Г╔С╓о║жC:║в╔и╔И╔╓╔ж╓г╓╧)║ё"
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr "╓╥╓п╓И╓╞╓╙бт╓а╓Р║ё╓Ё╓наЮ╨Н╓о╓╥╓п╓И╓╞╓╚╓╚╓Й╓ч╓╧╓н╓г║ё"
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+"©╥╓╥╓╞╓д╓╞╓ц╓©╔я║╪╔ф╔ё╔╥╔Г╔С╓о║╒╓╧╓ы╓ф╔у╔╘║╪╔ч╔ц╔х╓╥╓й╓╓╓х╩х╓╗╓ч╓╩╓С\n"
+"║й╔у╔╘║╪╔ч╔ц╔х╓х╓о╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓Р╓д╓╞╓К╓х╓╓╓╕╓Ё╓х╓г╓╧║к║ё\n"
+"\n"
+"\n"
+"╓Ё╓Ё╓г║╒╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Б╔у╔╘║╪╔ч╔ц╔х╓╥╓ф║╒цФ©х╓н╔г║╪╔©╓Р╬ц╣Н\n"
+"╓╥╓ф╓╙╓╞╓Ё╓х╓Б╓г╓╜╓ч╓╧║ё╓Ё╓н╬Л╧Г╓к╓о║╒╔у╔╘║╪╔ч╔ц╔х╓╥╓©╓╓╔я║╪╔ф╔ё╔╥╔Г╔С\n"
+"╓Ба╙╓С╓г╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"йл╓к╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Рл╣мЩ╓к╔у╔╘║╪╔ч╔ц╔х╓╧╓Ки╛мв╓о╓╒╓Й╓ч╓╩╓С║ё\n"
+"╓г╓Б║╒OS ╓нфЧ╓ц╓©╔я║╪╔ф╔ё╔╥╔Г╔С╓о╔у╔╘║╪╔ч╔ц╔х╓╛и╛мв╓г╓╧║й╓©╓х╓╗╓п\n"
+"║ж/║в║ж/usr║в║ж/var║в╓й╓и║к╓╛║╒╓х╓ц╓ф╓╙╓╜╓©╓╓╔г║╪╔©╓нфЧ╓ц╓©\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С║йдл╬О╓о║ж/home║в║к╓о╓╫╓н╓ч╓ч╓г╓ю╓╓╓╦╓Г╓╕╓ж╓г╓╧║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔Са╙╓с╓к╓оцМ╟у╓╥╓ч╓╥╓Г╓╕║ё╔у╔╘║╪╔ч╔ц╔х╓╥╓©╓И║╒╔г║╪╔©╓о\n"
+"а╢иТ╬ц╣Н╓╣╓Л╓ф║╒фСеы╓х╡СиЭ╓г╓╜╓ч╓╩╓С║ё\n"
+"\n"
+"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔у╔╘║╪╔ч╔ц╔х╓РЁ╚╩о╓╧╓К╓к╓о║жOK║в╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╧║ё\n"
+"\n"
+"\n"
+"б╬╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓г╓╫╓а╓И╓кLinux-Mandrake OS ╓РфЧ╓Л╓К╓й╓И║╒\n"
+"║ж╔╜╔Ц╔С╔╩╔К║в╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"╓г╓о╔╓╔С╔╧╔х║╪╔К║╕╔╒╔ц╔в╔╟╔Л║╪╔и╓╥╓©╓╓╔я╔ц╔╠║╪╔╦╥╡╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
"а╙╓С╓ю╓И║╒DrakX ╓н╓ш╓╕╓г║╒╓╫╓Л╓Р╔╓╔С╔╧╔х║╪╔К╓╧╓К╓ю╓╠╓нм╬м╣╓╛╓╒╓К╓╚\n"
"╔а╔╖╔ц╔╞╓╥╓ч╓╧║ёитб╜╓й╓И╥ы╧П╓Р╫п╓╥╓ч╓╧║ё╓╫╓Л╓г╓БбЁ╓╠╓©╓╠╓Л╓п║╒DrakX\n"
"╓о╪б╨щ╓н╔╓╔С╔╧╔х║╪╔К╓к©й╓ъ╓ч╓╧╓╛║╒╫емв╓г╓й╓╓╔я╔ц╔╠║╪╔╦╓омН╓х╓╥╓ч╓╧║ё\n"
-"╟ЛмВ╓н╨г╦Е╓к \"╦дйл╓н╔я╔ц╔╠║╪╔╦╓Ра╙бР\"╓х╓╓╓╕╓н╓╛╓╒╓Й╓ч╓╧║ё╓Ё╓Л╓Р\n"
+"╟ЛмВ╓н╨г╦Е╓к║ж╦дйл╓н╔я╔ц╔╠║╪╔╦╓Ра╙бР║в╓х╓╓╓╕╓н╓╛╓╒╓Й╓ч╓╧║ё╓Ё╓Л╓Р\n"
"а╙╓ж╓х║╒1000╦д╟й╬Е╓н╔я╔ц╔╠║╪╔╦╓Р╓╨╓ц╓х╦╚╓ф╓╓╓╞╓Ё╓х╓к╓й╓Й╓ч╓╧╓Х..."
-#: ../../help.pm_.c:150
-msgid ""
-"If you have all the CDs in the list above, 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╓╛╓╧╓ы╓ф╓╫╓М╓ц╓ф╓╓╓Л╓п║╒Ok╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё\n"
-"CD╓╛╟Л╓д╓Б╓й╓╠╓Л╓п║╒╔╜╔Ц╔С╔╩╔К╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
-"╪Й╦╣╓к╓й╓╓CD╓╛╓╒╓Л╓п║╒╓╫╓Л╓Ра╙бР╓╚╓И╓о╓╨╓╥╓ф╓╚╓ИOk╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╧║ё"
-
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:341
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
-msgstr ""
-"а╙╓С╓ю╔я╔ц╔╠║╪╔╦╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ф╓╓╓ч╓╧║ё╓Ё╓Л╓к╓о©Тй╛╓╚╓╚╓Й╓ч╓╧╓Х║ё\n"
-"╢Шб╦╔╥╔╧╔ф╔Ю╓н╔╒╔ц╔в╔╟╔Л║╪╔и╓Ра╙╓С╓ю╬Л╧Г╓о║╒╩Жа╟╓кд╢╓ы╓К╓Ё╓х╓╛б©╓╓╓н\n"
-"╓г║╒╓Б╓ц╓х╓╚╓╚╓Й╓ч╓╧║ё"
-
-#: ../../help.pm_.c:161
-msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"╓Б╓╥ DrakX ╓╛╔ч╔╕╔╧╓Р╦╚╓д╓╠╓И╓Л╓й╓╚╓ц╓©╓Й║╒╡©╓╛а╙╓п╓Л╓©╓╚╔а╔╖╔ц╔╞\n"
-"╓╥╓©╓╚╓ц╓©╓Й╓╧╓К╓х╓╜╓о║╒╬Е╓к╔ч╔╕╔╧╓н╟ЛмВ╓╛╫п╓ф╓╞╓К╓о╓╨╓г╓╧║ё\n"
+"╓Ё╓Ё╓г╓о╔╓╔С╔╧╔х║╪╔К╓╥╓©╓╓╔я╔ц╔╠║╪╔╦╓Р╦дйл╓ка╙╓ы╓ч╓╧║ё\n"
+"\n"
"\n"
+"╔я╔ц╔╠║╪╔╦╔╕╔ё╔С╔и╔╕╓н╨╦╓╧╓ъ╓к╓╒╓К╔╙╔в╔╥╔Г╔С╓Р╔╞╔Й╔ц╔╞╓╧╓К╓х║╒╔д╔Й║╪╓Р\n"
+"╓н╓п╓╥╓©╓Й╫л╓А╓©╓Й╓г╓╜╓ч╓╧║ё\n"
"\n"
-"DrakX ╓н╓Д╓ц╓©юъдЙ╓г╓Х╓╠╓Л╓п║╒╨╦б╕╓н╔А╔к╔Е║╪╓Р╔╞╔Й╔ц╔╞╓╥╓ф║╒╪║╓н\n"
-"╔╩╔╞╔╥╔Г╔С╓к╟э╓Й╓ч╓╥╓Г╓╕║ёюъдЙ╓╛╓а╓╛╓ц╓ф╓╓╓©╓И║╒╪╚й╛╓н╔ч╔╕╔╧╓к╓╓╓а╓п╓С\n"
-"╤А╓╓╪ОнЮ╓н╔ч╔╕╔╧╓Р╔А╔к╔Е║╪╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
"\n"
+"╔я╔ц╔╠║╪╔╦╓Р abc ╫Г╓кйб╓ыбь╓╗╓©╓╠╓Л╓п║╒║жabc╫Г╓х╔╟╔К║╪╔в╫Гюз╓Йбь╓╗║в\n"
+"╔╒╔╓╔Ё╔С╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
-"╔╥╔Й╔╒╔К╔ч╔╕╔╧╓Р╩х╓ц╓ф╓╓╓К╓х╓╜╓к╓о║╒╓╫╓Л╓╛╓д╓й╓╛╓ц╓ф╓╓╓К╔╥╔Й╔╒╔К╔щ║╪╔х\n"
-"╓Б╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+"\n"
+"╟мб╦╢ь╥╦╓к╓д╓╓╓ф╓н╥ы╧П╓╛╓╓╓И╓й╓╠╓Л╓п║╒║ж╟мб╦╢ь╥╦╪╚ф╟╫ХмЩ║в╓Р\n"
+"╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё╓Ё╓Л╓Ра╙╓ж╓х║╒╓╒╓К╔я╔ц╔╠║╪╔╦╓Ра╙бР╡Р╫Э\n"
+"╓╥╓©╓И║╒╓╫╓Л╓к╟мб╦╓╧╓К╔я╔ц╔╠║╪╔╦╓Б╓ю╓ч╓ц╓ф╡Р╫Э╓╣╓Л╓ч╓╧║ё"
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:358
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"ю╣╓╥╓╓╔щ║╪╔х╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓©╓х╓╗╓п║╒MS ╔╕╔ё╔С╔и╔╕╔╨╓г╓нCOM1╔щ║╪╔х╓о║╒\n"
-"Linux╓г╓о ttyS0 ╓х╓╓╓╕л╬а╟╓к╓й╓Й╓ч╓╧║ё"
+"╬Е╣╜╓н╟ЛмВ╓нCD╓╛╓╧╓ы╓ф╓╫╓М╓ц╓ф╓╓╓Л╓п║╒Ok╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё\n"
+"CD╓╛╟Л╓д╓Б╓й╓╠╓Л╓п║╒╔╜╔Ц╔С╔╩╔К╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"╪Й╦╣╓к╓й╓╓CD╓╛╓╒╓Л╓п║╒╓╫╓Л╓Ра╙бР╓╚╓И╓о╓╨╓╥╓ф╓╚╓ИOk╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╧║ё"
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:363
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"Please be patient."
+msgstr ""
+"©╥╓╥╓╓ Linux-Mandrake os ╓Р╔╓╔С╔╧╔х║╪╔КцФ╓г╓╧║ё╓╥╓п╓И╓╞╩Ч╢ж╓╛\n"
+"╓╚╓╚╓Й╓ч╓╧║й╔╓╔С╔╧╔х║╪╔К╓╧╓К╔╣╔╓╔╨╓х╔Ё╔С╔т╔Е║╪╔©╓нб╝еы╓к╓Б╓Х╓Й╓ч╓╧║к║ё\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"╓╥╓п╓И╓╞╓╙бт╓а╓Р║ё"
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+"╓╣╓╒║╒╔ч╔╕╔╧╓Р╔ф╔╧╔х╓╥╓ф╓ъ╓ч╓╥╓Г╓╕║╒╔э╔©╔С╓Д╔ш╔╓║╪╔К╓Р╩х╓ц╓ф╓ъ╓ф║╒\n"
+"юъдЙ╓╛╓Ё╓Л╓г╓╓╓╓╓╚╦╚╓ф╓╞╓ю╓╣╓╓║ё╔ю╔А╓й╓И║ж╔╜╔Ц╔С╔╩╔К║в╓Р╡║╓╥╓ф║╒\n"
+"╔и╔И╔╓╔п╓Ра╙╓сд╬╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"ю╣╓╥╓╓╔щ║╪╔х╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓©╓х╓╗╓п║╒MS ╔╕╔ё╔С╔и╔╕╔╨╓г╓н\n"
+"COM1╔щ║╪╔х╓о║╒GNU/Linux╓г╓о ttyS0 ╓х╓╓╓╕л╬а╟╓к╓й╓Й╓ч╓╧║ё"
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"\n"
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"╓Ё╓Ё╓г╓о║╒╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞║йLAN║к╓╚╔Б╔г╔Ю╓нюъдЙ╓Р╓╥╓ч╓╧║ё\n"
+"╔ч╔╥╔С╓Р╔╓╔С╔©║╪╔м╔ц╔х╓Д LAN ╓к╓д╓й╓╝╓©╓╓╓й╓И║╒бп╠Ч╓╧╓К\n"
+"╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║╒ю╣╓╥╓╓╔╙╔в╔╥╔Г╔С╓Ра╙╓жа╟╓к║╒╓╫╓н╔г╔п╔╓╔╧\n"
+"╓нее╦╩╓Р╓╓╓Л╓ф║╒DrakX ╓к╪╚ф╟╦║╫п╓╣╓╩╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
-"\"╔М║╪╔╚╔К LAN\" ╓Ра╙╓ж╓х║╒DrakX ╓о╔ч╔╥╔С╓н╔╓║╪╔╣╔м╔ц╔х╔╒╔ю╔в╔©╓Рц╣╓╥\n"
-"╓ч╓╧║ёPCI╓н╔╒╔ю╔в╔©╓о╪╚ф╟е╙╓к╦╚╓д╓╚╓ц╓фюъдЙ╓╣╓Л╓К╓о╓╨╓г╓╧║ё\n"
-"╓Б╓╥╓╙╩х╓╓╓н╔╒╔ю╔в╔©╓╛ISA ╓й╓И║╒╪╚ф╟╓г╓о╦║╫п╓г╓╜╓ч╓╩╓С║ё╓Ё╓н╬Л╧Г║╒\n"
-"╓╒╓х╓╚╓И╟ЛмВи╫╓╛╫п╓ф╓╞╓К╓н╓г║╒╓╫╓Ё╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
"\n"
+"╔╓╔С╔©║╪╔м╔ц╔х╓Д LAN ╓кюэбЁ╓╥╓й╓╓╓й╓И║╒║ж╔м╔ц╔х╔О║╪╔╞╓Р╩х╓О╓й╓╓║в╓Р\n"
+"а╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
-"SCSI╔╒╔ю╔в╔©╓н╬Л╧Г║╒╓х╓Й╓╒╓╗╓╨╔и╔И╔╓╔п╓к╔╒╔ю╔в╔©╓Рц╣╓╣╓╩╓ф╓ъ╓ч╓╥╓Г╓╕║ё\n"
-"╔ю╔А╓й╓И║╒╪╚й╛╓г╔и╔И╔╓╔п╓н╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓ч╓╧║ё╩ьдЙ╔╙╔в╔╥╔Г╔С╓о║╒\n"
-"╪╚й╛╓н╔о║╪╔и╔╕╔╖╔╒╓ниуб╟й╦╫Я╓гд╢╓ы╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
+"╔м╔ц╔х╔О║╪╔╞юъдЙ╓Р╓╒╓х╓ч╓О╓╥╓к╓╧╓К╓╚║╒╓╒╓К╓╓╓о╓Б╓╕юъдЙ╓╥╫╙╓О╓ц╓ф╓╓╓К\n"
+"╓й╓И║ж╢╟н╩║в╓Ра╙╓с╓ч╓╧║ё"
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-"╓Ё╓н╔ч╔╥╔С╓╛╓╧╓г╓к╢Шб╦╓н╔м╔ц╔х╔О║╪╔╞╓к╓д╓й╓╛╓ц╓ф╓╓╓К╓й╓И║╒╔м╔ц╔х╔О║╪╔╞\n"
-"╢имЩ╪т╓ки╛мв╓й╬ПйС╓Р╤╣╓О╓ц╓ф╓╓╓К╓о╓╨╓г╓╧(IP ╔╒╔и╔Л╔╧║╒╔м╔ц╔х╔О║╪╔╞╓н\n"
-"╔╣╔ж╔ч╔╧╔╞║йдл╬н╔м╔ц╔х╔ч╔╧╔╞║к║╒╔ш╔╧╔хл╬)║ё╪╚бП╓й╓и╓г╪╚й╛╓ю╓╠╓н╔м╔ц╔х\n"
-"╔О║╪╔╞╓Р╨Н╓М╓╕╓х╓╥╓ф╓╓╓К╓й╓И║╒╔╒╔и╔Л╔╧╓й╓и╓о╪╚й╛╓га╙╓с╓ч╓╧║ё\n"
+"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"╔Б╔г╔Ю╓╛╦║╫п╓г╓╜╓ч╓╩╓С║ё╔Б╔г╔Ю╓н╓д╓й╓╛╓ц╓ф╓╓╓К╔╥╔Й╔╒╔К╔щ║╪╔х╓Р\n"
+"а╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
"\n"
"\n"
-"\"╔Б╔г╔Ю╓к╓Х╓К╔ю╔╓╔╒╔К╔╒╔ц╔в\" ╓Ра╙╓ж╓х║╒╔Б╔г╔Ю╓к╓Х╓К╔╓╔С╔©║╪╔м╔ц╔хюэбЁ\n"
-"╓╛юъдЙ╓╣╓Л╓ч╓╧║ёDrakX ╓о╔Б╔г╔Ю╓Рц╣╓╥╓ч╓╧╓╛║╒╓Ё╓Л╓╛╪╨гт╓╥╓©╓И║╒╔Б╔г╔Ю╓н\n"
-"╓д╓й╓╛╓ц╓ф╓╓╓К╔╥╔Й╔╒╔К╔щ║╪╔х╓Р╪╚й╛╓г╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+"╩╡╧м╓ч╓г╓к║╒╨г╫И╓н╔╥╔Й╔╒╔К╔щ║╪╔х║й╔╕╔ё╔С╔и╔╕╔╨╓г╓о║жCOM1║в║к╓о║╒\n"
+"Linux ╓г╓о║жttyS0║в╓х╦ф╓п╓Л╓ч╓╧║ё"
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:400
msgid ""
-"Enter:\n"
-"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
-"\n"
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+"╓╣╓╒╔ю╔╓╔Д╔К╔╒╔ц╔в╓нюъдЙ╓Р╓╥╓ч╓╧║ё╡©╓РфЧно╓╥╓ф╓╓╓╓╓╚╓О╓╚╓И╓й╓╓║╒\n"
+"╓ч╓©╓о╪╚©╝╓╛╓й╓╓╓х╓╜╓о║╒ю╣╓╥╓╓╬ПйС╓Р╔╓╔С╔©║╪╔м╔ц╔х╓н╔в╔М╔п╔╓╔ю╓к\n"
+"╤╣╓О╓ц╓ф╓╞╓ю╓╣╓╓║ёDNS (╔м║╪╔Ю╔╣║╪╔п) ╬ПйС╓Р╓Ё╓Ё╓гфЧно╓╥╓й╓╠╓Л╓п║╒\n"
+"╓Ё╓н╬ПйС╓оюэбЁ╩Ч╓к╔╓╔С╔©║╪╔м╔ц╔х╓н╔в╔М╔п╔╓╔ю╓╚╓И╪Хфю╓╣╓Л╓ч╓╧║ё"
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+"╔Б╔г╔Ю╓╛Ё╟иу╓╠╓й╓И║╒╓╓╓чее╦╩╓РфЧ╓Л╓ф║╒DrakX╓к╪╚ф╟е╙╓к╦║╫п╓╣╓╩╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "╔Б╔г╔Ю╓нее╦╩╓РфЧ╓Л╓ф║╒ю╣╓╥╓╓╓Б╓н╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+"╬Е╓н╬ПйС╓╛ю╣╓╥╓╓╓╚╓и╓╕╓╚╓О╓╚╓И╓й╓╓║╒╓╒╓К╓╓╓о╡©╓РфЧно╓╧╓К╓╚\n"
+"╓О╓╚╓И╓й╓╠╓Л╓п║╒ю╣╓╥╓╓╬ПйС╓Р╔╓╔С╔©║╪╔м╔ц╔х╓н╔в╔М╔п╔╓╔ю║йISP) ╓к\n"
+"╤╣╓О╓ц╓ф╓╞╓ю╓╣╓╓║ёDNS (╔м║╪╔Ю╔╣║╪╔п) ╬ПйС╓Р╓Ё╓Ё╓гфЧно╓╥╓й╓╠╓Л╓п║╒\n"
+"╓Ё╓н╬ПйС╓оюэбЁ╩Ч╓к╔╓╔С╔©║╪╔м╔ц╔х╓н╔в╔М╔п╔╓╔ю╓╚╓И╪Хфю╓╣╓Л╓ч╓╧║ё"
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"╓г╓о║╒и╛мв╓й╓И╔ш╔╧╔хл╬╓РфЧ╓Л╓ф╓╞╓ю╓╣╓╓║ё╓Б╓╥╓О╓╚╓И╓й╓╓╓╚║╒\n"
+"╡©╓РфЧно╓╥╓ф╓╓╓╓╓╚╓О╓╚╓И╓й╓╠╓Л╓п║╒ISP╓кю╣╓╥╓╓╬ПйС╓Р╤╣╓О╓ц╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-"╟й╡╪╓н╓Б╓н╓РфЧно╓╥╓ч╓╧:\n"
+"╓╫╓Л╓г╓о╔м╔ц╔х╔О║╪╔╞╔г╔п╔╓╔╧╓РюъдЙ╓╥╓ч╓╥╓Г╓╕:\n"
"\n"
-" - IP ╔╒╔и╔Л╔╧: ╓О╓╚╓И╓й╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓╚ISP╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+" - IP ╔╒╔и╔Л╔╧: ╓О╓╚╓И╓й╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+" ╡╪╓г║ж╪╚ф╟ IP║в ╔╙╔в╔╥╔Г╔С╓Ра╙╓ж╓й╓И║╒фЧно╓╥╓й╓╓╓г╓╞╓ю╓╣╓╓\n"
"\n"
+" - ╔м╔ц╔х╔ч╔╧╔╞: ║ж255.255.255.0║в╓к╓╥╓ф╓╙╓╞╓н╓╛л╣фЯ╓г╓╧║ё╪╚©╝╓╛╓й╓╠╓Л╓п\n"
+"╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
-" - ╔м╔ц╔х╔ч╔╧╔╞: \"255.255.255.0\" ╓к╓╥╓ф╓╙╓╞╓н╓╛л╣фЯ╓г╓╧║ё╪╚©╝╓╛╓й╓╠╓Л╓п\n"
-"╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓╚ISP╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
"\n"
-"\n"
-" - ╪╚ф╟ IP: ╔м╔ц╔х╔О║╪╔╞╓г bootp ╓╚ dhcp ╔в╔М╔х╔Ё╔К╓Р╩х╓ц╓ф╓╓╓©╓И\n"
-"╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓Ё╓Л╓Ра╙╓ж╓х║╒\"IP ╔╒╔и╔Л╔╧\"╓Р╩ьдЙ\n"
-"╓╧╓Ки╛мв╓о╓╒╓Й╓ч╓╩╓С║ё╪╚©╝╓╛╓й╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓╚ISP╓к╓╜╓╓╓ф\n"
-"╓╞╓ю╓╣╓╓║ё\n"
+" - ╪╚ф╟ IP: ╔м╔ц╔х╔О║╪╔╞╓г BOOTP ╓╚ DHCP ╔в╔М╔х╔Ё╔К╓Р╩х╓ц╓ф╓╓╓©╓И\n"
+"╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓Ё╓Л╓Ра╙╓ж╓х║╒║жIP ╔╒╔и╔Л╔╧║в╓Р╩ьдЙ\n"
+"╓╧╓Ки╛мв╓о╓╒╓Й╓ч╓╩╓С║ё╪╚©╝╓╛╓й╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓к╓╜╓╓╓ф\n"
+"╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"╓╣╓ф║╒и╛мв╓й╓И╪╚й╛╓н╔ш╔╧╔хл╬╓РфЧно╓╥╓ч╓╥╓Г╓╕║ё\n"
+"╓О╓╚╓И╓й╓╓╓╚╪╚©╝╓╛╓й╓╠╓Л╓п╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"╓Ё╓Ё╓ги╛мв╓й╓И║╒╔ш╔╧╔хл╬╓РфЧно╓╥╓ф╓╞╓ю╓╣╓╓║ё╓Б╓╥\n"
+"╓О╓╚╓И╓й╓╓╓╚╪╚©╝╓╛╓й╓╠╓Л╓п║╒╤У╓╠╓ф╓╙╓╜╓ч╓╥╓Г╓╕║ё"
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1696,21 +2481,22 @@ msgstr ""
"╓г╓о╔ю╔╓╔Д╔К╔╒╔ц╔в╓нюъдЙ╓Р╓╥╓ч╓╧║ё╡©╓РфЧно╓╥╓ф╓╓╓╓╓╚╓О╓╚╓И╓й╓╠╓Л╓п║╒\n"
"ISP╓кю╣╓╥╓╓╬ПйС╓Р╤╣╓О╓ц╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"╔в╔М╔╜╔╥╓Р╩х╓╕╓й╓И║╒╓Ё╓Ё╓гюъдЙ╓╥╓ч╓╥╓Г╓╕║ё╔в╔М╔╜╔╥╓Р╩х╓╕╓╚╓и╓╕╓╚╓О╓╚╓И╓й\n"
-"╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓╚ISP╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё"
+"╔в╔М╔╜╔╥╓Р╩х╓╕╓й╓И║╒╓Ё╓Ё╓гюъдЙ╓╥╓ч╓╥╓Г╓╕║ё╔в╔М╔╜╔╥╓Р╩х╓╕╓╚╓и╓╕╓╚\n"
+"╓О╓╚╓И╓й╓╠╓Л╓п║╒╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓╚ISP╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1721,109 +2507,296 @@ msgstr ""
"╓й╓╙║╒╔╣╔╓╔х╓на╙бР╓х╟е╧Ф╔я╔ц╔╠║╪╔╦╓на╙бР╓о║╒╪╚й╛╓н╓х╓Ё╓М╓нк║╣╛ю╘╓к╓╒╓ц╓©\n"
"╓Б╓н╓к╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "╓╣╓ф║╒╪╚й╛╓н╣О╬Л╫Й╓к╓╒╓О╓╩╓©╔©╔╓╔Ю╔╬║╪╔С╓Ра╙╓с╓ч╓╥╓Г╓╕║ё"
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"╪╚й╛╓н╫╩╓С╓г╓╓╓К╩Ч╢жбс╓Ра╙╓с╓ч╓╧║ё\n"
"\n"
"\n"
-"Linux ╓о╩Ч╢ж╓РGMT║╒╓д╓ч╓Й \"╔╟╔Й╔к╔ц╔╦и╦╫Ю╩Ч\" ╓г╢имЩ╓╥╓ф╓╓╓ф║╒╓╫╓Л╓Р\n"
-"а╙╓С╓ю╩Ч╢жбс╓к╓╒╓О╓╩╓фйя╢╧╓╥╓ч╓╧║ё"
+"Linux ╓о╩Ч╢ж╓РGMT║╒╓д╓ч╓Й║ж╔╟╔Й╔к╔ц╔╦и╦╫Ю╩Ч║в╓г╢имЩ╓╥╓ф╓╓╓ф║╒╓╫╓Л╓Р\n"
+"╓╒╓й╓©╓на╙╓С╓ю╩Ч╢жбс╓к╓╒╓О╓╩╓фйя╢╧╓╥╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╓Ё╓н╔ч╔╥╔С╓г╔╕╔ё╔С╔и╔╕╔╨╓Р╩х╓ц╓ф╓╓╓К╓х╓╜╓к╓о║жNo║в╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"╔ч╔╥╔С╓н╣╞ф╟╩Ч╓к╪╚ф╟е╙╓кЁ╚╩о╓╥╓©╓╓╔╣║╪╔с╔╧╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"\n"
"╧Юлэ╓н╓╕╓╗╓к╔ч╔╕╔╧╓Р╓Б╓ц╓ф╓╞╓К╓х║╒╓╫╓Л╓╛╡©╓н╔╣║╪╔с╔╧╓╚юБлю╓╧╓К\n"
"╬╝╓╣╓й©А╓╜╫п╓╥╓╛╫п╓ф╓╜╓ч╓╧║ё\n"
"\n"
+"\n"
"╓Ё╓н╔ч╔╥╔С╓Р╔╣║╪╔п╓к╓╧╓К╓д╓Б╓Й╓й╓И║╒╓Ё╓Ё╓г╓офц╓к╣╓╓Р╓д╓╠╓ч╓╥╓Г╓╕║ё\n"
-"╩х╓О╓й╓╓╔╣║╪╔с╔╧╓Р╓Ю╓Д╓ъ╓кЁ╚╩о╓╣╓╩╓ф╓о╓╓╓╠╓ч╓╩╓С║ё"
+"╩х╓О╓й╓╓╔╣║╪╔с╔╧╓Р╓Ю╓Д╓ъ╓кЁ╚╩о╓╣╓╩╓ф╓о╓╓╓╠╓ч╓╩╓С║ё╟ЛиТ╓н╔╣║╪╔с╔╧╓о║╒\n"
+"╔╣║╪╔п╬Е╓г╩х╓╕╓х╢М╦╠╓ю╓х╓╓╓╕╓н╓Р╓╙к╨╓Л╓й╓╞║ё\n"
+"╟Лхл╓к║╒кэеЖ╓ки╛мв╓й╔╣║╪╔с╔╧╓ю╓╠а╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"юъдЙ╓╧╓К╔в╔Й╔С╔©╓о║╒╔М║╪╔╚╔К╔в╔Й╔С╔©║й╓Ё╓н╔ч╔╥╔С╓кд╬юэ╓д╓й╓╛╓ц╓©╓Б╓н║к╓г╓Б\n"
+"╔Й╔Б║╪╔х╔в╔Й╔С╔© (Unix, Netware, MS Windows ╓н╔м╔ц╔х╔О║╪╔╞╥пмЁ╓н╓Б╓н║к╓г╓Б\n"
+"╓╚╓ч╓╓╓ч╓╩╓С║ё"
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux ╓г╓о╓╓╓М╓С╓й╔в╔Й╔С╔©╓╛╩х╓╗╓ч╓╧║ё╓╛║╒╓╫╓Л╓╬╓ЛюъдЙ╓╛╓а╓╛╓╓╓ч╓╧║ё\n"
-"╓©╓ю╓╥║╒╟У╨Ч╔╧╔в║╪╔И╓о╔г╔у╔╘╔К╔х╓н╔в╔Й╔С╔©л╬╓х╓╥╓ф║жlp║в╓Р╩х╓╓╓ч╓╧║ё\n"
-"╓ю╓╚╓И║╒lp╓х╓╓╓╕л╬а╟╓н╔в╔Й╔С╔©╓╛╟Л╓д╓ои╛мв╓г╓╧║ё╓г╓Б║╒╟Л╓д╓н╔в╔Й╔С╔©\n"
-"╓кйё©Т╓нл╬а╟╓Р╓д╓╠╓К╓Ё╓х╓Б╓г╓╜╓ч╓╧║ё╓Ё╓н╓х╓╜╓о║ж|║в╓г╤Хюз╓Й╓ч╓╧║ё\n"
-"╓ю╓╚╓И║╒╔в╔Й╔С╔©╓к╓О╓╚╓Й╓Д╓╧╓╓л╬а╟╓Р╓д╓╠╓©╓╠╓Л╓п║╒╓╫╓Л╓РюХ╓к╫Я╓╓╓ф\n"
-"╓╙╓╠╓п╓╧╓ъ╓ч╓╧║ё╓©╓х╓╗╓п\"My Printer|lp\"╓х╓╓╓╕╤Я╧Г╓к║ё\n"
-"л╬а╟╓нцФ╓к \"lp\" ╓╛╢ч╓ч╓Л╓К╔в╔Й╔С╔©╓╛╔г╔у╔╘╔К╔х╓к╓й╓Й╓ч╓╧║ё\n"
+"╟У╨Ч╓г╓╜╓К╓Х╓╕╓к╓╥╓©╓╓╓й╓И╓п║╒CUPS ╓х LPR╓н╓и╓а╓И╓╚╓н╟У╨Ч╔╥╔╧╔ф╔Ю╓Р\n"
+"а╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
"\n"
"\n"
-"╔в╔Й╔С╔©╓╛д╬юэ╔Ё╔С╔т╔Е║╪╔©╓к╓д╓й╓╛╓ц╓ф╓╓╓Л╓п║╒\"╔М║╪╔╚╔К╔в╔Й╔С╔©\"╓Р\n"
-"а╙╓с╓ч╓╧║ё╓Ё╓н╬Л╧Г║╒╔в╔Й╔С╔©╓н╓д╓й╓╛╓ц╓ф╓╓╓К╔щ║╪╔х╓Р╩ьдЙ╓╥╓ф║╒е╛юз╓й\n"
-"╔у╔ё╔К╔©╓Ра╙╓с╓ч╓╧║ё\n"
+"CUPS ╓о©╥╓╥╓╓║╒╤╞но╓г╫юфП╓й Unix мя╟У╨Ч╔╥╔╧╔ф╔Ю╓г╓╧ (CUPS╓х╓╓╓╕╓н╓о\n"
+"║жCommon Unix Printing System║в╓нн╛)║ёLinux-Mandrake╓г╓о╓Ё╓Л╓╛╔г╔у╔╘╔К╔х\n"
+"╓г╓╧║ё\n"
"\n"
"\n"
-"╔м╔ц╔х╔О║╪╔╞╬Е╓н╓ш╓╚╓нUnix╔ч╔╥╔С╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╩х╓╕╓й╓И║╒\n"
-"\"╔Й╔Б║╪╔х lpd\" ╓Ра╙╓с╓ч╓╥╓Г╓╕║ё╓Ё╓Л╓Р╩х╓╕╓к╓о║╒╔Ф║╪╔╤л╬╓Д╔я╔╧╔О║╪╔и╓о\n"
-"╓╓╓Й╓ч╓╩╓С╓╛║╒╓╫╓н╔╣║╪╔п╬Е╓н╟У╨Ч╔╜╔Е║╪╓нл╬а╟╓╛мв╓Й╓ч╓╧║ё\n"
+"LPR ╓о╦е╓╓╟У╨Ч╔╥╔╧╔ф╔Ю╓г║╒юн╓н Linux-Mandrake ╓г╩х╓ц╓ф╓╓╓ч╓╥╓©║ё\n"
"\n"
"\n"
-"SMB╔в╔Й╔С╔©╓Р╩х╓╕╓й╓И║й╓д╓ч╓Й╔м╔ц╔х╔О║╪╔╞╬Е╓н╔╕╔ё╔С╔и╔╕╔╨9x/NT╔ч╔╥╔С\n"
-"╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╩х╓╕╓х╓╓╓╕╟улё╓г╓╧║к║╒╓╫╓н╔ч╔╥╔С╓нSMB л╬║й╓Ё╓Л\n"
-"╓оTCP/IPл╬╓х╓ойлй╙╓г╓╧║к╓х║╒╬Л╧Г╓к╓Х╓ц╓ф╓оIP╔╒╔и╔Л╔╧╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё\n"
-"╓╣╓И╓к╔Ф║╪╔╤л╬║╒╔О║╪╔╞╔╟╔К║╪╔вл╬╓х╔я╔╧╔О║╪╔и║╒╓╣╓И╓к╓о╔в╔Й╔С╔©л╬╓╛\n"
-"╓й╓╓╓х╔в╔Й╔С╔©╓к╔╒╔╞╔╩╔╧╓г╓╜╓ч╓╩╓С║ёNetWare ╔в╔Й╔С╔©╓Б║╒╔О║╪╔╞╔╟╔К║╪╔в╓о\n"
-"итмв╓й╓ю╓╠╓г║╒╓ш╓х╓С╓иф╠╓╦╓г╓╧║ё"
+"╔в╔Й╔С╔©╓Р╩Щ╓ц╓ф╓╓╓й╓╠╓Л╓п║╒║ж╓й╓╥║в╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё"
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:505
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+"GNU/Linux ╓оЁф╪О╓н╔в╔Й╔С╔©╓Р╟╥╓╗╓ч╓╧║ё╓╫╓Л╓╬╓ЛюъдЙ╓╛╓а╓╛╓ц╓ф╓╜╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╓Б╓╥╔в╔Й╔С╔©╓╛╔ч╔╥╔С╓кд╬юэ╓д╓й╓╛╓ц╓ф╓╓╓К╓й╓И║╒║ж╔М║╪╔╚╔К╔в╔Й╔С╔©║в╓Р\n"
+"а╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"\n"
+"╔Й╔Б║╪╔х╓н Unix ╔ч╔╥╔С╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╔╒╔╞╔╩╔╧╓╥╓©╓╓╬Л╧Г╓к╓о║╒\n"
+"║ж╔Й╔Б║╪╔х╔в╔Й╔С╔©║в╓Ра╙╓с╓ч╓╧║ё\n"
+"\n"
+"\n"
+"╔Й╔Б║╪╔х╓н MS Windows ╔ч╔╥╔С╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╔╒╔╞╔╩╔╧╓╧╓К╓й╓И\n"
+"(╓╒╓К╓╓╓о SMB ╔в╔М╔х╔Ё╔К╓Р╩х╓ц╓© Unix ╔ч╔╥╔С╓н╔в╔Й╔С╔©║к║╒а╙╓ж╓н╓о\n"
+"║жSMB/Windows 95/98/NT║в╓г╓╧║ё"
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+"╓Ё╓Ё╓г╓ч╓╨╔в╔Й╔С╔©╓нее╦╩╓РфЧ╓Л╓ф║╒DrakX ╓╛╦║╫п╓г╓╜╓К╓Х╓╕╓к╓╥╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"╓╣╓И╓к╓╓╓╞╓д╓╚╬ПйС╓╛мв╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╔в╔Й╔С╔©л╬: ╔в╔Йб╬╓н╔╧╔в║╪╔И╓о║╒╔г╔у╔╘╔К╔х╓н╔в╔Й╔С╔©л╬╓х╓╥╓ф║жlp║в╓Р\n"
+" ╩х╓╓╓ч╓╧║ё╓ю╓╚╓И║жlp║в╓х╓╓╓╕╔в╔Й╔С╔©╓╛и╛мв╓г╓╧║ё╓Б╓╥╔в╔Й╔С╔©╓╛\n"
+" ╟ЛбФ╓ю╓╠╓г╓Б║╒л╬а╟╓ойё©Т╩Щ╓©╓╩╓И╓Л╓ч╓╧║ё╓©╓ю║╒╓╫╓Л╓Р╔я╔╓╔вй╦╩З║ж║ц║в╓г\n"
+" ╤Хюз╓Л╓п╓╓╓╓╓н╓г╓╧║ё╓г╓╧╓╚╓И║╒╓Б╓ц╓х╟улё╓н╓╒╓Кл╬а╟╓к╓╥╓©╓╠╓Л╓п║╒\n"
+" ╓╫╓Л╓Р╓ч╓╨╩Щ╓ц╓ф╓╜╓ч╓╥╓Г╓╕║ё║жмy printer|lp║в╓х╓╓╓╕╤Я╧Г║ё\n"
+" л╬а╟╓к║жlp║в╓н╓д╓╓╓©╔в╔Й╔С╔©╓╛╔г╔у╔╘╔К╔х╓н╔в╔Й╔С╔©╓к╓й╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * юБлю: ╓Ё╓Л╓о╓й╓╞╓ф╓Б╓╓╓╓╓г╓╧╓╛║╒йё©Т╓н╔в╔Й╔С╔©╓Р╩Щ╓ц╓ф╓╓╓©╓Й║╒╓ш╓╚╓н\n"
+" ╔ч╔╥╔С╓╛╓Ё╓н╔в╔Й╔С╔©╓к╔╒╔╞╔╩╔╧╓╧╓К╓х╓╜╓кйьмЬ╓г╓╧║ё\n"
+"\n"
+"\n"
+" * ╬Л╫Й: ╓Б╓╥╔в╔Й╔С╔©╓н╬Л╫Й╓к╓д╓╓╓ф╬ПйС╓РфЧ╓Л╓©╓╠╓Л╓п║╒╓Ё╓Ё╓к\n"
+" фЧно╓╥╓ч╓╥╓Г╓╕║й║жфСЁ╛║в╓х╓╚╧╔╓╜╓й╣╜╫р╓г╓╚╓ч╓╓╓ч╓╩╓С║к║ё\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+"╓Ё╓Ё╓г╓╓╓М╓╓╓М╬ПйС╓РфЧно╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+" * ╔╜╔Е║╪╓нл╬а╟: ╔в╔Й╔С╔©╓н╔╧╔в║╪╔И╓о║╒╔г╔у╔╘╔К╔х╓г╓о║жlp║в╓Р╩х╓╓╓ч╓╧║ё\n"
+" ╓ю╓╚╓И║жlp║в╓х╓╓╓╕╔в╔Й╔С╔©╓╛и╛мв╓г╓╧║ё\n"
+" ╓Б╓╥╔в╔Й╔С╔©╓╛╟ЛбФ╓ю╓╠╓г╓Б║╒л╬а╟╓ойё©Т╩Щ╓©╓╩╓И╓Л╓ч╓╧║ё╓©╓ю║╒╓╫╓Л╓Р\n"
+" ╔я╔╓╔вй╦╩З║ж║ц║в╓г╤Хюз╓Л╓п╓╓╓╓╓н╓г╓╧║ё╓г╓╧╓╚╓И║╒╓Б╓ц╓х╟улё╓н╓╒╓К\n"
+" л╬а╟╓к╓╥╓©╓╠╓Л╓п║╒╓╫╓Л╓Р╓ч╓╨╩Щ╓ц╓ф╓╜╓ч╓╥╓Г╓╕║ё║жMy printer|lp║в╓х\n"
+" ╓╓╓╕╤Я╧Г║ё\n"
+" л╬а╟╓к║жlp║в╓н╓д╓╓╓©╔в╔Й╔С╔©╓╛╔г╔у╔╘╔К╔х╓н╔в╔Й╔С╔©╓к╓й╓Й╓ч╓╧║ё\n"
+"\n"
+"\n"
+" * ╔╧╔в║╪╔К╔г╔ё╔Л╔╞╔х╔Й: ╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й╓к╟У╨Ч╔╦╔Г╔ж╓╛йщб╦╓╣╓Л╓ч╓╧║ё\n"
+" ╡©╓Р╩х╓╕╓ы╓╜╓╚╓О╓╚╓И╓й╓╠╓Л╓п╔г╔у╔╘╔К╔х╓н╓ч╓ч╓к╓╥╓ф╓╙╓╜╓ч╓╥╓Г╓╕\n"
+"\n"
+"\n"
+" * ╔в╔Й╔С╔©юэбЁ: ╔в╔Й╔С╔©╓╛╔ч╔╥╔С╓кд╬юэ╓д╓й╓╛╓ц╓ф╓╓╓К╬Л╧Г╓о║╒\n"
+" ║ж╔М║╪╔╚╔К╔в╔Й╔С╔©║в╓Ра╙╓с╓ч╓╧║ё╔Й╔Б║╪╔х╓нUnix╔ч╔╥╔С╬Е╓н╔в╔Й╔С╔©╓Р\n"
+" ╩х╓╕╓к╓о║╒║ж╔Й╔Б║╪╔хlpd╔в╔Й╔С╔©║в╓Ра╙╓с╓ч╓╧║ё\n"
+"\n"
+"\n"
+" ╔Й╔Б║╪╔х╓н╔╕╔ё╔С╔и╔╕╔╨╔ч╔╥╔С║й╓ч╓©╓оSMB ╔в╔М╔х╔Ё╔К╩хмя╓нUnix╔ч╔╥╔С\n"
+" ╬Е╓н╔в╔Й╔С╔©╓Р╔╒╔╞╔╩╔╧╓╧╓К╓к╓о║╒║жSMB/Windows 95/98/NT║в╓Ра╙╓с╓ч╓╧║ё\n"
+"\n"
+"\n"
+" NetWare ╔м╔ц╔х╔О║╪╔╞╬Е╓н╔в╔Й╔С╔©╓Р╔╒╔╞╔╩╔╧╓╥╓©╓╠╓Л╓п║╒\n"
+" ║жNetWare║в╓Ра╙╓с╓ч╓╧║ё\n"
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"╔в╔Й╔С╔©╓╛╦║╫п╓г╓╜╓ч╓╩╓С║ё╔в╔Й╔С╔©╓╛юэбЁ╓╣╓Л╓©╔г╔п╔╓╔╧л╬╓РфЧно╓╥╓ф\n"
+"╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"╓а╓й╓ъ╓к║╒╔в╔Й╔С╔©╓о╓у╓д╓╕╓о╨г╫И╓н╔я╔И╔Л╔К╔щ║╪╔х╓к╓д╓й╓╛╓ц╓ф╓╓╓К╓Б╓н╓г╓╧║ё\n"
+"╓Ё╓Л╓оGNU/Linux ╓г╓о║ж/dev/lp0║в╓ю╓╥║╒╔╕╔ё╔С╔и╔╕╔╨╓г╓о║жLPT1║в╓к╓й╓Й╓ч╓╧║ё"
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "╓╣╓╒╬Е╓н╟ЛмВ╓╚╓И╪╚й╛╓н╔в╔Й╔С╔©╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"╪╚й╛╓н╔в╔Й╔С╔©╓к╓╒╓ц╓©║╒ю╣╓╥╓╓╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"╓й╓к╓Ра╙╓ж╓╚╓О╓╚╓И╓й╓╠╓Л╓п║╒╔в╔Й╔С╔©╓н╩Яна╓Р╦╚╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"╪║╓н╔╧╔ф╔ц╔в╓гюъдЙ╓Р╔ф╔╧╔х╓г╓╜╓ч╓╧╓╥║╒╓╫╓Л╓╛╩в╓╓дл╓Й╓к╣║г╫╓╥╓й╓╠╓Л╓п\n"
+"╓╫╓Ё╓гйя╓╗╓И╓Л╓ч╓╧║ё"
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"╓г╓оLinux-Mandrake╔╥╔╧╔ф╔Ю╓нroot╔я╔╧╔О║╪╔и╓РюъдЙ╓╥╓ч╓╥╓Г╓╕║ё\n"
"╔я╔╧╔О║╪╔и╓о 2 ╡СфЧно╓╥╓ф║╒╔©╔╓╔в╔ъ╔╧╓╛╓й╓╓╓╚╓и╓╕╓╚╓РЁнг╖╓╥╓ч╓╧║ё\n"
@@ -1833,28 +2806,32 @@ msgstr ""
"©мй╙╓г╓╧║ё╓г╓╧╓╚╓И║╒╓Ё╓н╔я╔╧╔О║╪╔и╓РфЧно╓╧╓К╓х╓╜╓оцМ╟у╓╥╓ф╓╞╓ю╓╣╓╓║╙\n"
"root╦╒╦б╓Ритю╣╓к╩х╓╕╓х║╒╓Ё╓н╔╥╔╧╔ф╔Ю╓Д║╒╔м╔ц╔х╔О║╪╔╞╓г╓д╓й╓╛╓ц╓©б╬╓н\n"
"╔╥╔╧╔ф╔Ю╓Д╓╫╓н╔г║╪╔©╓к╫ебГ╓й╢М╦╠╓Р╣з╓э╓╧╓Ё╓х╓к╓й╓Й╓╚╓м╓ч╓╩╓С║ё\n"
+"\n"
+"\n"
"╔я╔╧╔О║╪╔и╓о║╒╔╒╔К╔у╔║╔ы╔ц╔х╓Д©Т╩З╓Р╨╝╓╪╓©╓Б╓н╓к╓╥╓ф║╒╨гдЦ╓г╓Б 8 й╦╩З\n"
-"и╛мв╓г╓╧║ё*юДбп╓к*╔А╔Б╓ц╓ф╓╙╓╓╓©╓Й╓╥╓ф╓о╓╓╓╠╓ч╓╩╓С║ё╓г╓Бд╧╓╧╓╝╓©╓Й\n"
-"╓Д╓Д╓Ё╓╥╓╧╓╝╓©╓Й╓╧╓К╔я╔╧╔О║╪╔и╓Б╔ю╔А╓г╓╧╓Х║ё╪╚й╛╓г╓оЁз╓к╩в╓╓╓ю╓╩╓К\n"
-"и╛мв╓╛╓╒╓Й╓ч╓╧║ё"
+"и╛мв╓г╓╧║ё*юДбп╓к*╔А╔Б╓ц╓ф╓╙╓╓╓©╓Й╓╥╓ф╓о╓╓╓╠╓ч╓╩╓С║ё\n"
+"\n"
+"\n"
+"╓г╓Бд╧╓╧╓╝╓©╓Й╓Д╓Д╓Ё╓╥╓╧╓╝╓©╓Й╓╧╓К╔я╔╧╔О║╪╔и╓Б╔ю╔А╓г╓╧╓Х║ё╪╚й╛╓г╓о\n"
+"Ёз╓к╩в╓╓╓ю╓╩╓Ки╛мв╓╛╓╒╓Й╓ч╓╧║ё"
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"╧Б╔╩╔╜╔Е╔Й╔ф╔ё╔╥╔╧╔ф╔Ю╓к╓╥╓©╓╠╓Л╓п║╒\"╔╥╔Ц╔и╔╕╔у╔║╔╓╔К╓Р╩х╓╕\"╓х\n"
-"\"MD5 ╔я╔╧╔О║╪╔и╓Р╩х╓╕\"╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+"╧Б╔╩╔╜╔Е╔Й╔ф╔ё╔╥╔╧╔ф╔Ю╓к╓╥╓©╓╠╓Л╓п║╒║ж╔╥╔Ц╔и╔╕╔у╔║╔╓╔К╓Р╩х╓╕║в╓х\n"
+"║жMD5 ╔я╔╧╔О║╪╔и╓Р╩х╓╕║в╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"╓Б╓╥╔м╔ц╔х╔О║╪╔╞╓г NIS ╓Р╩х╓ц╓ф╓╓╓К╓й╓И \"NIS ╓Р╩х╓╕\" ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"╓Б╓╥╔м╔ц╔х╔О║╪╔╞╓г NIS ╓Р╩х╓ц╓ф╓╓╓К╓й╓И║жNIS ╓Р╩х╓╕║в╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
"╓О╓╚╓И╓й╓╠╓Л╓п╔м╔ц╔х╔О║╪╔╞╢имЩ╪т╓к╓╜╓╓╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1877,11 +2854,11 @@ msgid ""
"you will have created here, and login as root only for administration\n"
"and maintenance purposes."
msgstr ""
-"╓г╓о╓Ё╓Ё╓г║╒\"дл╬О╓н\" ╔Ф║╪╔╤╔╒╔╚╔╕╔С╔х╓Р╓д╓╞╓Й╓ч╓╧║ё\n"
-"╓Ё╓Л╓о\"фц╦╒\" ╔Ф║╪╔╤╔╒╔╚╔╕╔С╔х╓нroot ╓х╓о╓а╓╛╓╓╓ч╓╧║ё╓Ё╓н╔╥╔╧╔ф╔Ю╓Р\n"
+"╓г╓о╓Ё╓Ё╓г║╒║ждл╬О╓н║в╔Ф║╪╔╤╔╒╔╚╔╕╔С╔х╓Р╓д╓╞╓Й╓ч╓╧║ё\n"
+"╓Ё╓Л╓о║жфц╦╒║в╔Ф║╪╔╤╔╒╔╚╔╕╔С╔х╓нroot ╓х╓о╓а╓╛╓╓╓ч╓╧║ё╓Ё╓н╔╥╔╧╔ф╔Ю╓Р\n"
"╩х╓╕©м╓©╓а╓к║╒╓╫╓Л╓╬╓Лйл║╧╓н╔╒╔╚╔╕╔С╔х╓Р╓д╓╞╓К╓Х╓╕╓к╓╥╓ч╓╧║ёЁф╔╒╔╚╔╕\n"
"╔С╔х╓офх╪╚╓н╢д╤╜юъдЙ║й╔╟╔И╔у╔ё╔ц╔╞╢д╤╜║╒╔в╔М╔╟╔И╔ЮюъдЙ╓й╓и║к╓Р╩Щ╓а║╒\n"
-"╓╫╓Л╓╬╓Л╪╚а╟╓н\"╔ш║╪╔Ю╔г╔ё╔Л╔╞╔х╔Й\" ╓Р╩Щ╓ц╓ф╓╫╓Ё╓к╓Ё╓╕╓╓╓╕юъдЙ╓Рйщб╦\n"
+"╓╫╓Л╓╬╓Л╪╚а╟╓н║ж╔ш║╪╔Ю╔г╔ё╔Л╔╞╔х╔Й║в╓Р╩Щ╓ц╓ф╓╫╓Ё╓к╓Ё╓╕╓╓╓╕юъдЙ╓Рйщб╦\n"
"╓╥╓ф╓╙╓╜╓ч╓╧║ё\n"
"\n"
"\n"
@@ -1894,45 +2871,43 @@ msgstr ""
"╓╥╓©╓╛╓ц╓ф║╒╓у╓д╓╕╓о╓Ё╓Ё╓г╓д╓╞╓К╔Ф║╪╔╤╔╒╔╚╔╕╔С╔х╓г╔╥╔╧╔ф╔Ю╓Р╩х╓╓╓ч╓╥╓Г\n"
"╓╕║ёroot╓г╔М╔╟╔╓╔С╓╧╓К╓н╓о║╒╔╥╔╧╔ф╔Ю╢имЩ╓х╔А╔С╔ф╔й╔С╔╧╓н╓х╓╜╓ю╓╠╓г╓╧║ё"
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"╓Ё╓Ё╓г╓о╓г╓╜╓К╦б╓Й\"╓о╓╓\" ╓хеЗ╓╗╓ф╓╞╓ю╓╣╓╓║ё╦Е╓╚╓ИMS╔╕╔ё╔С╔и╔╕╔╨╓Р\n"
-"╔╓╔С╔╧╔х║╪╔К╓╥╓©╓И║╒╔ж║╪╔х╔╩╔╞╔©╓о╬Е╫Я╓╜╓╣╓Л╓ч╓╧║ё╓╫╓╕╓й╓ц╓©╓И║╒\n"
-"╔ж║╪╔х╔г╔ё╔╧╔╞╓Р╨Н╓ц╓ф╓╙╓╚╓й╓╓╓х║╒Linux╓╛н╘╓а╬Е╓╡╓И╓Л╓й╓╞╓й╓Й╓ч╓╧╓Х║ё"
+"╣╞ф╟╔г╔ё╔╧╔╞╓ою╖хС╓х╓Б╓д╓╞╓ц╓ф╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё╔ч╔╥╔С╓Р╣╞ф╟╓г╓╜╓й╓╞\n"
+"╓й╓ц╓©╓И║╒╓Ё╓Л╓╛╨ф╔╓╔С╔╧╔х║╪╔К╓╩╓╨╓к╔г╔ё╔╧╔╞╓Р╣ъ╓╕мё╟Л╓н╪Йцй╓г╓╧║ё"
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Linux╓Р╓©╓а╓╒╓╡╓К╓н╓ки╛мв╓й╬ПйС╓Р║╒╓и╓Ё╓к╣╞╓╜╓©╓╓╓╚╩ьдЙ╓╥╓ч╓╧║ё\n"
+"GNU/Linux╓Р╓©╓а╓╒╓╡╓К╓н╓ки╛мв╓й╬ПйС╓Р║╒╓и╓Ё╓к╣╞╓╜╓©╓╓╓╚╩ьдЙ╓╥╓ч╓╧║ё\n"
"\n"
"\n"
-"\"╔и╔И╔╓╔ж╓н╨г╫И╓н╔╩╔╞╔©(MBR)\"╓Ра╙╓С╓г╓╙╓╞╓н╓╛л╣фЯ╓г╓╧║ёб╬╓на╙бР╩Х╓о║╒\n"
-"╓О╓╚╓К©м╓ю╓╠╩х╓ц╓ф╓╞╓ю╓╣╓╓║ё"
+"╡©╓Р╓╧╓К╓н╓╚╓╛ю╣Ён╓кй╛╓╚╓И╓й╓╠╓Л╓п║╒║ж╔и╔И╔╓╔ж╓н╨г╫И╓н╔╩╔╞╔©(MBR)║в\n"
+"╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-"╓у╓д╓╕╓о\"/dev/hda\"║й╔в╔И╔╓╔ч╔Й╔а╔Ц╔м╔К╓н╔ч╔╧╔©║╪╔и╔И╔╓╔ж║к╓╚║╒\n"
-"\"/dev/sda\" (╨г╫И╓н SCSI ╔г╔ё╔╧╔╞) ╓Ра╙╓с╓ч╓╧║ё\n"
+"╓у╓д╓╕╓о║ж/dev/hda║в║й╔в╔И╔╓╔ч╔Й╔а╔Ц╔м╔К╓н╔ч╔╧╔©║╪╔и╔И╔╓╔ж║к╓╚║╒\n"
+"║ж/dev/sda║в (╨г╫И╓н SCSI ╔г╔ё╔╧╔╞) ╓Ра╙╓с╓ч╓╧║ё\n"
"╪╚©╝╓╛╓╒╓К╬Л╧Г╓к╓ю╓╠б╬╓нцм╓РфЧ╓Л╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1942,7 +2917,7 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"LILO (LInux LOader) ╓х Grub ╓о╔ж║╪╔х╔М║╪╔ю╓г╓╧║ё╔Ё╔С╔т╔Е║╪╔©╬Е╓нLinux\n"
+"LILO (LInux LOader) ╓х Grub ╓о╔ж║╪╔х╔М║╪╔ю╓г╓╧║ё╔Ё╔С╔т╔Е║╪╔©╬Е╓нGNU/Linux\n"
"╓й╓иЁф╪ОOS╓Р╣╞ф╟╓г╓╜╓ч╓╧║ё\n"
"иАдл╓о║╒╓Ё╓Л╓И╓нOS╓о╪╚ф╟е╙╓к╓╜╓а╓С╓х╦║╫п╓╣╓Л╓ф╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧║ё\n"
"╓Ё╓Л╓╛╔ю╔А╓й╓И║╒╓Ё╓Ё╓г╪Йф╟╓г╔╗╔С╔х╔Й╓Рди╡ц╓╥╓ч╓╥╓Г╓╕║ё╔я╔И╔А║╪╔©╓Р\n"
@@ -1953,7 +2928,7 @@ msgstr ""
"╬Л╧Г╓к╓о╓╫╓нOS╓н╔╗╔С╔х╔Й╓Р╨О╫Э╓╥╓ф╓╙╓╜╓ч╓╥╓Г╓╕║ё╓©╓ю╓╥╓Ё╓н╬Л╧Г╓о║╒\n"
"╓╫╓нOS╓Р╩х╓╕╓х╓╜╓к╓о╣╞ф╟╔г╔ё╔╧╔╞╓╛мв╓Й╓ч╓╧╓Х║╙"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1970,29 +2945,82 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO ╓х grub ╓н╪Гмв╔╙╔в╔╥╔Г╔С╓о╟й╡╪╓н╓х╓╙╓Й╓г╓╧:\n"
" - ╔ж║╪╔х╔г╔п╔╓╔╧: ╔ж║╪╔х╔╩╔╞╔©╓Р╩Щ╓д╔г╔п╔╓╔╧л╬╓РюъдЙ║й╓©╓х╓╗╓п╔о║╪╔и\n"
-"╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С║к║ё╪╚©╝╓╛╓й╓╓╦б╓Й║╒\"/dev/hda\"╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С║к║ё╪╚©╝╓╛╓й╓╓╦б╓Й║╒║ж/dev/hda║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
"\n"
"\n"
" - ╔г╔у╔╘╔К╔х╔╓╔А║╪╔╦╣╞ф╟╓нбт╓а╩Ч╢ж: ╔ж║╪╔х╔М║╪╔ю╓╛╨г╫И╓н╔╓╔А║╪╔╦╓Р╣╞ф╟\n"
"╓╧╓К╓ч╓г╓нбт╓а╩Ч╢ж╓Р1/10ицц╠╟л╓г╩ьдЙ╓╥╓ч╓╧║ё╓Ё╓Л╓о║╒╔╜║╪╔э║╪╔и╓╛м╜╦З╓к\n"
"╓й╓ц╓ф╓╧╓╟╓к╔о║╪╔и╔г╔ё╔╧╔╞╓╚╓И╣╞ф╟╓╧╓К╔╥╔╧╔ф╔Ю╓й╓и╓гйьмЬ╓г╓╧║ё╓Ё╓н\n"
-"\"бт╓а╩Ч╢ж\"╓╛л╣╣╜фЧ╓ю╓ц╓©╓Й╔╪╔М╓ю╓ц╓©╓Й╓╥╓©╓И║╒╔ж║╪╔х╔М║╪╔ю╓обт╓а╓ч╓╩╓С║ё\n"
+"║жбт╓а╩Ч╢ж║в╓╛л╣╣╜фЧ╓ю╓ц╓©╓Й╔╪╔М╓ю╓ц╓©╓Й╓╥╓©╓И║╒╔ж║╪╔х╔М║╪╔ю╓обт╓а╓ч╓╩╓С║ё\n"
"\n"
"\n"
" - ╔с╔г╔╙╔Б║╪╔и║╖╣╞ф╟╩Ч╓к╩х╓╕ VGA ╔ф╔╜╔╧╔х╔Б║╪╔и╓Р╩ьдЙ╓╥╓ч╓╧║ё╩х╓╗╓К╓н╓о\n"
"╟й╡╪╓нцм╓г╓╧║╖\n"
+"\n"
" * ╔н║╪╔ч╔К: дл╬О╓н 80x25 ╓н╔ф╔╜╔╧╔х╔Б║╪╔и\n"
+"\n"
" * <©Т╩З>: ©Т╩З╓кбп╠Ч╓╥╓©╔ф╔╜╔╧╔х╔Б║╪╔и"
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO ╓оSPARCмя╓н╔ж║╪╔х╔М║╪╔ю╓г╓╧║ё╔Ё╔С╔т╔Е║╪╔©╬Е╓нGNU/Linux\n"
+"╓й╓иЁф╪ОOS╓Р╣╞ф╟╓г╓╜╓ч╓╧║ё\n"
+"иАдл╓о║╒╓Ё╓Л╓И╓нOS╓о╪╚ф╟е╙╓к╓╜╓а╓С╓х╦║╫п╓╣╓Л╓ф╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧║ё\n"
+"╓Ё╓Л╓╛╔ю╔А╓й╓И║╒╓Ё╓Ё╓г╪Йф╟╓г╔╗╔С╔х╔Й╓Рди╡ц╓╥╓ч╓╥╓Г╓╕║ё╔я╔И╔А║╪╔©╓Р\n"
+"╓ч╓а╓╛╓╗╓й╓╓╓Х╓╕цМ╟у╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
+"б╬╓нOS╓к╓об╬╓н©м╓╛╔╒╔╞╔╩╔╧╓г╓╜╓й╓╓╓Х╓╕╓к╓╥╓©╓╓╓Ё╓х╓Б╓╒╓Й╓ч╓╧║ё╓Ё╓н\n"
+"╬Л╧Г╓к╓о╓╫╓нOS╓н╔╗╔С╔х╔Й╓Р╨О╫Э╓╥╓ф╓╙╓╜╓ч╓╥╓Г╓╕║ё╓©╓ю╓╥╓Ё╓н╬Л╧Г╓о║╒\n"
+"╓╫╓нOS╓Р╩х╓╕╓х╓╜╓к╓о╣╞ф╟╔г╔ё╔╧╔╞╓╛мв╓Й╓ч╓╧╓Х║╙"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILO ╓н╪Гмв╔╙╔в╔╥╔Г╔С╓о╟й╡╪╓н╓х╓╙╓Й╓г╓╧:\n"
+" - ╔ж║╪╔х╔М║╪╔ю╓нфЁфЧ: GNU/Linux ╓Р╣╞ф╟╓╧╓К╓н╓ки╛мв╓х╓й╓К╬ПйС╓Рцж╓╞╬Л╫Й╓Р\n"
+"фЧ╓Л╓ф╓╞╓ю╓╣╓╓║ё╓й╓к╓Р╓╧╓Л╓п╓╓╓╓╓╚╓о╓ц╓╜╓Й╓хй╛╓╚╓И╓й╓╓╬Л╧Г╓о║╒\n"
+"║ж╔и╔И╔╓╔ж╓н╨г╫И╓н╔╩╔╞╔©(MBR)║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+"\n"
+"\n"
+" - ╔г╔у╔╘╔К╔х╔╓╔А║╪╔╦╣╞ф╟╓нбт╓а╩Ч╢ж: ╔ж║╪╔х╔М║╪╔ю╓╛╨г╫И╓н╔╓╔А║╪╔╦╓Р╣╞ф╟\n"
+"╓╧╓К╓ч╓г╓нбт╓а╩Ч╢ж╓Р1/10ицц╠╟л╓г╩ьдЙ╓╥╓ч╓╧║ё╓Ё╓Л╓о║╒╔╜║╪╔э║╪╔и╓╛м╜╦З╓к\n"
+"╓й╓ц╓ф╓╧╓╟╓к╔о║╪╔и╔г╔ё╔╧╔╞╓╚╓И╣╞ф╟╓╧╓К╔╥╔╧╔ф╔Ю╓й╓и╓гйьмЬ╓г╓╧║ё╓Ё╓н\n"
+"║жбт╓а╩Ч╢ж║в╓╛л╣╣╜фЧ╓ю╓ц╓©╓Й╔╪╔М╓ю╓ц╓©╓Й╓╥╓©╓И║╒╔ж║╪╔х╔М║╪╔ю╓обт╓а╓ч╓╩╓С║ё"
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2003,7 +3031,8 @@ msgid ""
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
-"╓г╓оX╔╕╔ё╔С╔и╔╕╔╥╔╧╔ф╔Ю╓нюъдЙ╓Р╓╥╓ч╓╥╓Г╓╕║ё╓Ё╓Л╓оLinux GUI (╔╟╔И╔у╔ё╔╚╔К\n"
+"╓г╓оX╔╕╔ё╔С╔и╔╕╔╥╔╧╔ф╔Ю╓нюъдЙ╓Р╓╥╓ч╓╥╓Г╓╕║ё╓Ё╓Л╓оGNU/Linux GUI "
+"(╔╟╔И╔у╔ё╔╚╔К\n"
"╔Ф║╪╔╤╔╓╔С╔©║╪╔у╔╖║╪╔╧║к╓нЁк©╢иТй╛╓г╓╧║ё╓Ё╓н╓©╓А╓к╓о╓ч╓╨║╒╔с╔г╔╙╔╚║╪╔и╓х\n"
"╔Б╔к╔©╓нюъдЙ╓Р╓╥╓ч╓╧║ё╓╛║╒есцФ║╒╓ш╓х╓С╓и╓о╪╚ф╟╡╫╓╣╓Л╓ф╓╓╓К╓н╓г║╒дл╬О╓й╓И\n"
"ц╠╓к║╒╥К╡л╓Р╦╚╓ф╓╫╓нюъдЙ╓Р╬╣г╖╓╧╓К╓ю╓╠╓г╓╧╓ъ╓ч╓╧║ё\n"
@@ -2013,7 +3042,7 @@ msgstr ""
"╦б╓Й║к║ё╓Ё╓Л╓гюъдЙ╓╛ю╣╓╥╓╓╓╚╓РЁнг╖╓г╓╜╓ч╓╧║ёю╣╓╥╓╞╓й╓╠╓Л╓п║╒лА╓ц╓ф╓╜╓ф\n"
"╓Д╓Й╓й╓╙╓╩╓ч╓╧║ё╓Ё╓Л╓о╡©еы╓г╓Б╧╔╓╜╓й╓ю╓╠╓г╓╜╓ч╓╧║ё"
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2021,50 +3050,54 @@ msgstr ""
"X ╓нюъдЙ╓╛╓╙╓╚╓╥╓╠╓Л╓п║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Р╩х╓ц╓ф║╒X╔╕╔ё╔С╔и╔╕╔╥╔╧╔ф╔Ю╓Р\n"
"ю╣╓╥╓╞юъдЙ╓╥д╬╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-"╔╟╔И╔у╔ё╔╚╔К║╕╔М╔╟╔╓╔С╓╛╧╔╓╜╓й╓И║╒\"╓о╓╓\"╓Ра╙╓с╓ч╓╧║ё╓╫╓╕╓г╓й╓╠╓Л╓п\n"
-"\"╓╓╓╓╓╗\"╓Ра╙╓с╓ч╓╧║ё"
+"╔╟╔И╔у╔ё╔╚╔К║╕╔М╔╟╔╓╔С╓╛╧╔╓╜╓й╓И║╒║ж╓о╓╓║в╓Ра╙╓с╓ч╓╧║ё╓╫╓╕╓г╓й╓╠╓Л╓п\n"
+"║ж╓╓╓╓╓╗║в╓Ра╙╓с╓ч╓╧║ё"
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"╓г╓о╓╫╓нб╬╓н╔╙╔в╔╥╔Г╔С╓Р╓╓╓╞╓д╓╚юъдЙ╓╥╓ч╓╥╓Г╓╕║ё\n"
"\n"
@@ -2074,14 +3107,11 @@ msgstr ""
" ╔и╔И╔╓╔ж╓н╔ж╔И╔ц╔╞╔Й╔╧╔х╓о╩Щ╓ц╓ф╓╓╓ч╓╧╓╛║╒дк╓╓лэ╓к╓╒╓╓╓©╓╞╓й╓╠╓Л╓п\n"
" а╙╓п╓й╓╓╓ш╓╕╓╛л╣фЯ╓г╓╧║ё\n"
"\n"
+"\n"
" - ╔╩╔╜╔Е╔Й╔ф╔ё╔Л╔ы╔К╓на╙бР: ╔╥╔╧╔ф╔Ю╓н╔╩╔╜╔Е╔Й╔ф╔ё╔Л╔ы╔К╓Ра╙╓ы╓ч╓╧║ё\n"
" ╬э╓╥╓╞╓о╔ч╔к╔Е╔╒╔К╓Р╩╡╬х╓╥╓ф╓╞╓ю╓╣╓╓║ё╢Пкэе╙╓к╓о║╒╓Х╓╞╓О╓╚╓И╓й╓╠╓Л\n"
-" ╓п \"и╦╫Ю\"╓Ра╙╓С╓г╓╓╓╜╓ч╓╥╓Г╓╕║ёкэеЖ╓к╔╛╔а╔╛╔а╓н╔╩╔╜╔Е╔Й╔ф╔ё╓╛╓ш╓╥\n"
-" ╓╠╓Л╓п\"©ю╥п╪а\"╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓©╓ю╓╥цМ╟у║╙║║╓Ё╓Л╓Ра╙╓ж╓х║╒╔Ё╔С╔╫\n"
-" ║╪╔К╓гroot╓о╔М╔╟╔╓╔С╓г╓╜╓й╓╞╓й╓Й╓ч╓╧║╙║║root╓к╓й╓К╓х╓╜╓о║╒╟Лхл╔Ф║╪╔╤\n"
-" ╓г╔М╔╟╔╓╔С╓╥╓ф╓╚╓И\"su\"╔Ё╔ч╔С╔и╓Р╩х╓╕╓Ё╓х╓к╓й╓Й╓ч╓╧║ё╓Б╓ц╓х╦ю╓╗╓п║╒\n"
-" ╓Ё╓Л╓Ра╙╓С╓ю╓И╔ч╔╥╔С╓Р╔╣║╪╔пмя╟йЁ╟╓г╩х╓╕╓н╓о╓ш╓эл╣мЩ╓г╓╧║ё╣╓╓Р╓д╓╠╓ф\n"
-" ╓╞╓ю╓╣╓╓╓м║ё\n"
+" ╓п╔г╔у╔╘╔К╔х╓н╓ч╓ч╓г╓╓╓╜╓ч╓╥╓Г╓╕║ё\n"
+"\n"
"\n"
" - и╛мв╓й╓Ию╣Ён╓йRAM╔╣╔╓╔╨: ╩дг╟╓й╓╛╓И╓╓╓ч╓н╔я╔╫╔Ё╔С╓ню╓Ё╕╓г╓о║╒BIOS╓к\n"
" ╔╥╔╧╔ф╔Ю╬Е╓нRAM╓ннл╓к╓д╓╓╓ф╓ч╓х╓Б╓кй╧╓╞йЩк║╓╛╓╒╓Й╓ч╓╩╓С║ё╓Ё╓н╥К╡л║╒\n"
@@ -2089,15 +3119,22 @@ msgstr ""
" ╓к╓о║╒ю╣╓╥╓╓нл╓Р╩ьдЙ╓╥╓ч╓╧║ё\n"
" цМ╟у║╖ 2 or 4 MB ╓╞╓И╓╓╓н╓╨╓Л╓о╣╓╓к╓╥╓й╓╞╓фбГ╬Фив╓г╓╧║ё\n"
"\n"
+"\n"
" - ╔Й╔Ю║╪╔п╔ж╔К╔А╔г╔ё╔╒╓н╪╚ф╟╔ч╔╕╔С╔х: ╔Й╔Ю║╪╔п╔ж╔К╔и╔И╔╓╔ж║йCD-ROM╓Д\n"
-" ╔у╔М╔ц╔т║╪║╒ZIP╓й╓и║к╓Р \"mount\" ╓Д\"umount\" ╔Ё╔ч╔С╔и╓г╪Йф╟╔ч╔╕╔С╔х\n"
+" ╔у╔М╔ц╔т║╪║╒ZIP╓й╓и║к╓Р║жmount║в╓Д║жumount║в╔Ё╔ч╔С╔и╓г╪Йф╟╔ч╔╕╔С╔х\n"
" ╓╧╓К╓н╓╛ллещ╓й╓И║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓с╓ч╓╧║ё\n"
"\n"
+"\n"
+"* ╣╞ф╟╓н╓©╓с╓к║ж/tmp║в╓Р╤У╓к: ╓Б╓╥╔╥╔╧╔ф╔Ю╓Р╣╞ф╟╓╧╓К╓©╓с╓к║ж/tmp║в╓н\n"
+"╔у╔║╔╓╔К╓Д╔г╔ё╔Л╔╞╔х╔Й╓Р╬ц╣Н╓╧╓К╓к╓о║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"\n"
+"\n"
" - ╣╞ф╟╩Ч╓кNum Lock╓Р╔╙╔С╓к╓╧╓К: ╣╞ф╟╩Ч╓кNumber Lock╓Р╔╙╔С╓к╓╥╓©╓╠╓Л╓п\n"
-" ╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓с╓ч╓╧║йцМ╟у║╖X╔╕╔ё╔С╔и╔╕╓г╓оNum Lock╓о╩х╓╗╓й╓╓╓Ё\n"
+" ╓Ё╓н╔╙╔в╔╥╔Г╔С╓Ра╙╓с╓ч╓╧║йцМ╟у║╖╔И╔ц╔в╔х╔ц╔в╓г╓о║╒╓Ё╓н╔╙╔в╔╥╔Г╔С╓Р\n"
+" ╔╙╔С╓к╓╥╓ф╓о╓╓╓╠╓ч╓╩╓С║ё╓ч╓©║╒X╔╕╔ё╔С╔и╔╕╓г╓оNum Lock╓о╩х╓╗╓й╓╓╓Ё\n"
" ╓х╓╛╓╒╓Й╓ч╓╧║к║ё"
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2110,96 +3147,117 @@ msgstr ""
"╨ф╣╞ф╟╓╥╓©╓И║╒©╥╓╥╓╓ Linux Mandrake ╔╥╔╧╔ф╔Ю╓╛╪╚ф╟е╙╓к╓©╓а╓╒╓╛╓Й╓ч╓╧║ё\n"
"йл╓нOS╓Р╓©╓а╓╒╓╡╓©╓╓╓х╓╜╓к╓о║╒ди╡ц╓нюБлю╓Рфи╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "╦ю╦Л╓на╙бР"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "фЁфЧ╔╞╔И╔╧╓на╙бР"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "╔г╔ё╔╧╔╞╓н╦║╫п"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "╔ч╔╕╔╧╓нюъдЙ"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "╔╜║╪╔э║╪╔и╓на╙бР"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "╓╫╓нб╬╓Б╓М╓Б╓М"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "╔у╔╘║╪╔ч╔ц╔х"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "╔я╔ц╔╠║╪╔╦╓на╙бР"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "╔╥╔╧╔ф╔Ю╓нфЁфЧ"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "╔м╔ц╔х╔О║╪╔╞юъдЙ"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "╟е╧Ф╡╫"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "╔©╔╓╔Ю╔╬║╪╔СюъдЙ"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "╔╣║╪╔с╔╧╓нюъдЙ"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "╔в╔Й╔С╔©╓нюъдЙ"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "╔К║╪╔х╔я╔╧╔О║╪╔и"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "╔Ф║╪╔╤╓непо©"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "╣╞ф╟╔г╔ё╔╧╔╞╨Ню╝"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "╔ж║╪╔х╔М║╪╔ююъдЙ"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "X ╓нюъдЙ"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "фЁфЧюъдЙ╔у╔М╔ц╔т"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "фЁфЧ╨Н╤х╓Р╫╙н╩"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "╔у╔║╔╓╔К $f фи╓ъ╧Ч╓ъ╔╗╔И║╪"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "╔ч╔╕╔╧╓Р╔ф╔╧╔х╓╥╓ф╓ъ╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "╔ч╔╕╔╧╓Рм╜╦З╓к╓╧╓К╓к╓о║╒"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "╔ш╔╓║╪╔К╓Рф╟╓╚╓╥╓ф╓╞╓ю╓╣╓╓║╙"
+
+#: ../../install_interactive.pm_.c:23
+#, 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_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2209,234 +3267,251 @@ msgstr ""
"©╥╓╥╓╞╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╓╚║╒╢Шб╦╓н╓Б╓н╓Р╔╞╔Й╔ц╔╞╓╥╓фа╙╓с╓ч╓╧║ё\n"
"╓╫╓╥╓ф ``╔ч╔╕╔С╔х╔щ╔╓╔С╔х'' ╔╒╔╞╔╥╔Г╔С╓Ра╙╓с║╒ `/'╓к╔╩╔ц╔х╓╥╓ч╓╧"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓╛фи╓А╓ч╓╩╓С║╓╡У╓Л╓ф╓╓╓К╓Х╓╕╓г╓╧:(\n"
-"итю╣╓й╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╤УгР╓гкД╓А╓Х╓╕╓х╓╥╓ч╓╧"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓╛и╛мв╓г╓╧"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake ╓о╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Рю╣╓╥╓╞фи╓А╓ч╓╩╓С╓г╓╥╓©║ё\n"
-"╓Ё╓Ё╓╚╓ИюХ╓о╡©╓╛╣╞╓╜╓ф╓Б╓╥╓Й╓ч╓╩╓С╓Х║╙"
+"╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С\n"
+"\n"
+"╧╫╓О╓╨╓кбЁ╓╠╓ч╓╧╓╚║╘"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╦║╨В"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "╔у╔Й║╪╔╧╔з║╪╔╧╓н╩хмя"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "╔╓╔С╔у╔╘╔А║╪╔╥╔Г╔С"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "©╥╓╥╓╓╔я║╪╔ф╔ё╔╥╔Г╔С╓кЁД╓ЙеЖ╓ф╓К╫╫й╛╓й╔у╔Й║╪╔╧╔з║╪╔╧╓╛╓╒╓Й╓ч╓╩╓С"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: ╓Ё╓Л╓о╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓г╓о╓╒╓Й╓ч╓╩╓С║╓╓ш╓╚╓Ра╙╓С╓г╡╪╓╣╓╓║ё"
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╩хмя"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "б╦╨ъ╓╥╓й╓╓╔я║╪╔ф╔ё╔╥╔Г╔С"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS ╔и╔А╔╓╔С╓╛╓й╓╓╓н╓г╔ж╔М║╪╔и╔╜╔Ц╔╧╔х╓╛╩х╓╗╓ч╓╩╓С"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Windows ╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔К║╪╔в╔п╔ц╔╞╓к╩хмя"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "╔у╔║╔╓╔К $f фи╓ъ╧Ч╓ъ╔╗╔И║╪"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓кLinux4Win╓РфЧ╓Л╓ч╓╧╓╚"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"╔╗╔И║╪х╞ю╦║╓╓╕╓ч╓╞╫ХмЩ╓╧╓КйЩк║╓Рцн╓Й╓ч╓╩╓С║ё\n"
-"╪╚й╛╓нюуг╓╓гбЁ╓╠╓ф╡╪╓╣╓╓║ё"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "╔╣╔╓╔╨╓Ра╙бР"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х %s ╓╛╫е╓й╓ц╓ф╓╓╓ч╓╧"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔╣╔╓╔╨ (MB)"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"╓ю╓╓╓╦╓й╔я╔ц╔╠║╪╔╦╓╛╓╓╓╞╓д╓╚╓╜╓а╓С╓х╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╩╓С╓г╓╥╓©║ё\n"
-"CD-ROM╓╚║╒CD-ROM╓н╔и╔И╔╓╔ж╓╛╓╙╓╚╓╥╓╓╓Х╓╕╓г╓╧║ё\n"
-"╔╓╔С╔╧╔х║╪╔К╨я╓ъ╓н╔Ё╔С╔т╔Е║╪╔©╓г║╒╟й╡╪╓н╔Ё╔ч╔С╔и╓гCD-ROM╓Р╔а╔╖╔ц╔╞\n"
-"╓╥╓ф╓ъ╓ф╓╞╓ю╓╣╓╓║╖\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔╣╔╓╔╨ (MB): "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "%s ╓ь╓Х╓╕╓Ё╓╫"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "╔╕╔ё╔С╔и╔╕╔╨╔я║╪╔ф╔ё╔╥╔Г╔С╬Е╓н╔у╔Й║╪╔╧╔з║╪╔╧╓Р╩хмя"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "м╜╦З╓й╔у╔М╔ц╔т║╪╔и╔И╔╓╔ж╓╛╓╒╓Й╓ч╓╩╓С"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔Й╔╣╔╓╔╨╓╥╓ч╓╧╓╚║╘"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "╔╕╔ё╔С╔и╔╕╔╨╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓н╤╜Ё╕╓Р╥в╩╩"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "╔╧╔ф╔ц╔в `%s' ╓Р╩о╓А╓ч╓╧\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"FAT ╔Й╔╣╔╓╔╤║╪╓о╔я║╪╔ф╔ё╔╥╔Г╔СаЮ╨Н╓╛╓г╓╜╓ч╓╩╓С║ё\n"
+"╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓╛и╛мв╓г╓╧"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "╔╕╔ё╔С╔и╔╕╔╨╔я║╪╔ф╔ё╔╥╔Г╔С╓╛цгйр╡╫╓╥╓╧╓╝╓г╓╧║ё``╔г╔у╔И╔╟''╓╥╓ф╓╞╓ю╓╣╓╓"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С\n"
+"цМ╟у║╙\n"
"\n"
-"╧╫╓О╓╨╓кбЁ╓╠╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "╔╓╔С╔╧╔х║╪╔К╓╧╓К╔╣╔╓╔╨╓Ра╙╓С╓г╡╪╓╣╓╓"
+"DrakX ╓о╓Ё╓Л╓╚╓И╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔╣╔╓╔╨╓Рйя╧╧╓╥╓ч╓╧║ё\n"
+"цМ╟у:╓Ё╓наЮ╨Н╓о╢М╦╠╓г╓╧║ё╓ч╓ю╔Й╔╣╔╓╔╨╓╥╓ф╓╓╓й╓╓╓н╓й╓И║╒╓╓╓а╓и╔╓╔С╔╧╔х║╪╔К╓Р\n"
+"цФцг╓╥║╒scandisk╓Р╓╚╓╠╓ч╓╥╓Г╓╕║й╓╣╓И╓кdefrag╓Б╓╚╓╠╓©╓ш╓╕╓╛╓╓╓╓╓г╓╧)║ё\n"
+"╔г║╪╔©╓Б╔п╔ц╔╞╔╒╔ц╔в╓╥╓ф╓╒╓Й╓ч╓╧╓╚║╘║║╓╓╓ч╓н╓╕╓а╓к╓╥╓ф\n"
+"╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
+"бГ╬Фив╓й╓И Ok ╓Р╡║╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "╧Г╥в╔╣╔╓╔╨: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "╔╕╔ё╔С╔и╔╕╔╨мя╓к╓и╓н╓╞╓И╓╓╓н╔╣╔╓╔╨╓Р╩д╓╥╓ф╓╙╓╜╓ч╓╧╓╛"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "╔п║╪╔╦╔Г╔С: %s\n"
+msgid "partition %s"
+msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "╔╣╔╓╔╨: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT ╓н╔Й╔╣╔╓╔╨╓к╪╨гт: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "╔╓╔С╔╧╔х║╪╔К╓╥╓©╓╓╔я╔ц╔╠║╪╔╦╓Ра╙╓С╓г╡╪╓╣╓╓"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"╔Й╔╣╔╓╔╨╓Д╔К║╪╔в╔п╔ц╔╞мя╓нFAT╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С "
+"(╓ч╓©╓о╫╫й╛╓й╔╧╔з║╪╔╧╓╛л╣╓╓)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "╬ПйС"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "а╢╔г╔ё╔╧╔╞╬ц╣Н"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "╔╓╔С╔╧╔х║╪╔К"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Windows(TM) ╓Р╨О╫Э"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "╔╓╔С╔╧╔х║╪╔КцФ"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+"йё©Т╓н╔о║╪╔и╔и╔И╔╓╔ж╓Р╩Щ╓ц╓ф╓╓╓ч╓╧╓м║╒╓и╓Л╓к linux ╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧╓╚║╘"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "╓╥╓п╓И╓╞╓╙бт╓а╡╪╓╣╓╓║╓"
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "╔и╔И╔╓╔ж %s ╬Е╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╙╓Х╓с╔г║╪╔©╓оа╢иТ╪╨╓О╓Л╓ч╓╧"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "╩д╓Й╩Ч╢ж "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "╔╗╔╜╔╧╔я║╪╔х╔Б║╪╔и"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "╧Г╥в╩Ч╢ж "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "diskdrake╓Р╩х╓╕"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "╔╓╔С╔╧╔х║╪╔К╓н╫ЮхВ"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "fdisk╓Р╩х╓╕"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "╔я╔ц╔╠║╪╔╦ %s ╓н╔╓╔С╔╧╔х║╪╔К"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"%s ╓Р╔я║╪╔ф╔ё╔╥╔Г╔С╓г╓╜╓ч╓╧║ё\n"
+"╫╙╓О╓ц╓©╓И║╒и╛╓╨ `w' ╓Р╩х╓ц╓фйщб╦╓╥╓ч╓╥╓Г╓╕║ё"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "юХ╓к©й╓ъ╓ч╓╧╓╚║╘"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "╔╕╔ё╔С╔и╔╕╔╨╔я║╪╔ф╔ё╔╥╔Г╔С╬Е╓н╔у╔Й║╪╔╧╔з║╪╔╧╓╛б╜╓Й╓ч╓╩╓С"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "╔я╔ц╔╠║╪╔╦╓ню╟нС╓г╔╗╔И║╪╓╛х╞ю╦:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "╔╓╔С╔╧╔х║╪╔Кмя╓н╤У╓╜╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С╓╛"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "╓╧╓г╓к╓╒╓К X11 ╓нюъдЙ╓Р╩х╓╓╓ч╓╧╓╚║╘"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX ╔я║╪╔ф╔ё╔╥╔Г╔С╔╕╔ё╔╤║╪╔и╓о╟й╡╪╓н╡Рк║╓Р╦╚иу╓╠╓ч╓╥╓©:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "╟й╡╪╓н╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧╓Р╓и╓Л╓╚а╙╓С╓г╓╞╓ю╓╣╓╓"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "╔я║╪╔ф╔ё╔╥╔Г╔к╔С╔╟╓к╪╨гт: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С║╙"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓Р╓©╓а╓╒╓╡╓К"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Linux4Win╓╛фЧ╓К╓ю╓╠╓н╤У╓╜╓╛╓╒╓Й╓ч╓╩╓С║╙"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓РдД╩ъ╓╧╓К"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"цМ╟у║╙\n"
-"\n"
-"DrakX ╓о╓Ё╓Л╓╚╓И╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔╣╔╓╔╨╓Рйя╧╧╓╥╓ч╓╧║ёцМ╟у:\n"
-"╓Ё╓наЮ╨Н╓о╢М╦╠╓г╓╧║ё╩Жа╟╓кscandisk╓Р╓╚╓╠╓ч╓╥╓Г╓╕║й╓╣╓И╓кdefrag╓Б╓╚╓╠╓©\n"
-"╓ш╓╕╓╛╓╓╓╓╓г╓╧)║ё╔г║╪╔©╓Б╔п╔ц╔╞╔╒╔ц╔в╓╥╓ф╓╒╓Й╓ч╓╧╓╚║╘║║╓╓╓ч╓н╓╕╓а╓к╓╥╓ф\n"
-"╓╙╓╓╓ф╓╞╓ю╓╣╓╓║ё\n"
-"бГ╬Фив╓й╓И Ok ╓Р╡║╓╥╓ф╡╪╓╣╓╓║ё"
+"╔╗╔И║╪х╞ю╦║╓╓╕╓ч╓╞╫ХмЩ╓╧╓КйЩк║╓Рцн╓Й╓ч╓╩╓С║ё\n"
+"╪╚й╛╓нюуг╓╓гбЁ╓╠╓ф╡╪╓╣╓╓║ё"
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "╪╚ф╟╔Й╔╣╔╓╔╨╓к╪╨гт"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х %s ╓╛╫е╓й╓ц╓ф╓╓╓ч╓╧"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓кLinux4Win╓РфЧ╓Л╓ч╓╧╓╚"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"╓ю╓╓╓╦╓й╔я╔ц╔╠║╪╔╦╓╛╓╓╓╞╓д╓╚╓╜╓а╓С╓х╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╩╓С╓г╓╥╓©║ё\n"
+"CD-ROM╓╚║╒CD-ROM╓н╔и╔И╔╓╔ж╓╛╓╙╓╚╓╥╓╓╓Х╓╕╓г╓╧║ё\n"
+"╔╓╔С╔╧╔х║╪╔К╨я╓ъ╓н╔Ё╔С╔т╔Е║╪╔©╓г║╒╟й╡╪╓н╔Ё╔ч╔С╔и╓гCD-ROM╓Р╔а╔╖╔ц╔╞\n"
+"╓╥╓ф╓ъ╓ф╓╞╓ю╓╣╓╓║╖\n"
+"║ж rpm -qpl Mandrake/RPMS/*.rpm ║в\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "╔╣╔╓╔╨╓Ра╙бР"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "%s ╓ь╓Х╓╕╓Ё╓╫"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔╣╔╓╔╨ (MB)"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "м╜╦З╓й╔у╔М╔ц╔т║╪╔и╔И╔╓╔ж╓╛╓╒╓Й╓ч╓╩╓С"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "╔╧╔О╔ц╔в╔я║╪╔ф╔ё╔╥╔Г╔С╓н╔╣╔╓╔╨ (MB): "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "╔╧╔ф╔ц╔в `%s' ╓Р╩о╓А╓ч╓╧\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"╔╥╔╧╔ф╔Ю╔Й╔╫║╪╔╧╓╛б╜╓Й╓ч╓╩╓С║ё Linux-Mandrake ╓Р╔╓╔С╔╧╔х║╪╔К╓╧╓К╓к╓о\n"
+"╓╓╓╞╓д╓╚лДбЙ╓╛╓╒╓Й╓ч╓╧║ё\n"
+"╓Ё╓н╬и╬У╓╛╣╞╓╜╓©╓х╓╜║╒╓╚╓О╓Й╓к╔ф╔╜╔╧╔х╔╓╔С╔╧╔х║╪╔К╓Р╩Н╓╩╓ч╓╧║ё\n"
+"╓Ё╓Л╓Р╓╧╓К╓к╓о║╒CDROM ╓╚╓И╔ж║╪╔х╓╥╓©╓х╓╜║╒`F1'╓Р╡║╓╥║╒`text'╓хфЧно╓╥╓ф\n"
+"╓╞╓ю╓╣╓╓║ё"
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "╟й╡╪╓н╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧╓Р╓и╓Л╓╚а╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "╓╒╓й╓©╓на╙╓С╓ю╔╟╔К║╪╔в╓наМ╔╣╔╓╔╨╓о║╒╓ю╓╓╓©╓╓ %d MB╓к╓й╓Й╓ч╓╧║ё\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2450,7 +3525,7 @@ msgstr ""
"╓Ё╓Л╓Р╡╪╓╡╓К╓х║╒╓╓╓а╓п╓С╫емв╓й╓Б╓н╓ю╓╠╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧║ё\n"
"100%% ╓Р╩ьдЙ╓╧╓К╓х║╒а╙╓С╓ю╔я╔ц╔╠║╪╔╦╓Р╓╧╓ы╓ф╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧║ё"
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2465,58 +3540,98 @@ msgstr ""
"╓Ё╓Л╓Р╡╪╓╡╓К╓х║╒╓╓╓а╓п╓С╫емв╓й╓Б╓н╓ю╓╠╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧║ё\n"
"%d%% ╓Р╩ьдЙ╓╧╓К╓х║╒╨гбГ╦б╓н╔я╔ц╔╠║╪╔╦╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧║ё"
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "╪║╓н╔╧╔ф╔ц╔в╓г╓о╓Б╓ц╓х╨ы╓╚╓╓а╙бР╓╛╫пмХ╓ч╓╧"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "╔╓╔С╔╧╔х║╪╔К╓╧╓К╔я╔ц╔╠║╪╔╦цФ╓нЁД╧Г"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "╔╓╔С╔╧╔х║╪╔К╓╥╓©╓╓╔я╔ц╔╠║╪╔╦╓Ра╙╓С╓г╡╪╓╣╓╓"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "╬ПйС"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "╔╓╔С╔╧╔х║╪╔К"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "╟мб╦╢ь╥╦╓н╪╚ф╟╡Р╥Х"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "╔д╔Й║╪╓Р╓н╓п╓╧"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "╔д╔Й║╪╓Р╫л╓А╓К"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "╓╫╓н╓ч╓ч╓х╔╟╔К║╪╔вйл╓Рюз╓Йбь╓╗"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "╔я╔ц╔╠║╪╔╦╓╛╡У╓Л╓ф╓╓╓ч╓╧"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "л╬а╟: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "╔п║╪╔╦╔Г╔С: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "╔╣╔╓╔╨: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "╫емв: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "╧Г╥в╔╣╔╓╔╨: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓оа╙бР╓г╓╜╓ч╓╩╓С║ё╔г╔ё╔╧╔╞╓н╤У╓╜мфнл╓╛итб╜╓г╓╧║ё"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "╟й╡╪╓н╔я╔ц╔╠║╪╔╦╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ч╓╧"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "╟й╡╪╓н╔я╔ц╔╠║╪╔╦╓╛╪Х╓Й╫Э╓╚╓Л╓ч╓╧"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓оа╙бР║╕хСа╙бР╓г╓╜╓ч╓╩╓С"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "╓Ё╓Л╓оит╡д╥Г╓й╔я╔ц╔╠║╪╔╦╓г╓╧║ёхСа╙бР╓к╓о╓г╓╜╓ч╓╩╓С"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓охСа╙бР╓к╓г╓╜╓ч╓╩╓С║ё╓╧╓г╓к╔╓╔С╔╧╔х║╪╔К╨я╓ъ╓г╓╧"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2524,44 +3639,88 @@ msgstr ""
"╓Ё╓н╔я╔ц╔╠║╪╔╦╓о╔╒╔ц╔в╔╟╔Л║╪╔и╓╛и╛мв╓г╓╧║ё\n"
"кэеЖ╓ка╙бР╡Р╫Э╓╥╓ф╓╓╓╓╓С╓г╓╧╓╚║╘"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓оа╙бР╡Р╫Э╓г╓╜╓ч╓╩╓С║ё╔╒╔ц╔в╔╟╔Л║╪╔и╓╛и╛мв╓г╓╧"
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓оа╙бР╓г╓╜╓ч╓╩╓С║ё╔г╔ё╔╧╔╞╓н╤У╓╜мфнл╓╛итб╜╓г╓╧║ё"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "╟й╡╪╓н╔я╔ц╔╠║╪╔╦╓╛╔╓╔С╔╧╔х║╪╔К/╪Х╓Й╫Э╓╚╓Л╓ч╓╧"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "╓Ё╓н╔я╔ц╔╠║╪╔╦╓оа╙бР║╕хСа╙бР╓г╓╜╓ч╓╩╓С"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "╔╓╔С╔╧╔х║╪╔КцФ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "╩Н╩╩╓╥╓ф╓╓╓ч╓╧"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "╓╥╓п╓И╓╞╓╙бт╓а╡╪╓╣╓╓║╓"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "╩д╓Й╩Ч╢ж "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "╧Г╥в╩Ч╢ж "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "╔╜╔Ц╔С╔╩╔К"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "╔╓╔С╔╧╔х║╪╔К╓н╫ЮхВ"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d ╔я╔ц╔╠║╪╔╦"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "╔я╔ц╔╠║╪╔╦ %s ╓н╔╓╔С╔╧╔х║╪╔К"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "г╖╓А╓К"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2571,184 +3730,504 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Cd-Rom ╓Р╦Р╢╧╓╥╓ф╓╞╓ю╓╣╓╓║╙\n"
-"\"%s\" ╓х╓╓╓╕ Cd-Rom ╓Р╔и╔И╔╓╔ж╓к╓╓╓Л╓ф║╒ Ok ╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"║ж %s ║в╓х╓╓╓╕ Cd-Rom ╓Р╔и╔И╔╓╔ж╓к╓╓╓Л╓ф║╒ Ok ╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
"CD╓╛╓й╓╠╓Л╓п║╒Cancel ╓Р╡║╓╥╓ф╓Ё╓н Cd-Rom ╓╚╓И╓н╔╓╔С╔╧╔х║╪╔К╓Р╡СхР╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "╣Яхщ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "юХ╓к©й╓ъ╓ч╓╧╓╚║╘"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "╔я╔ц╔╠║╪╔╦╓ню╟нС╓г╔╗╔И║╪╓╛х╞ю╦:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "╔я╔ц╔╠║╪╔╦╓н╔╓╔С╔╧╔х║╪╔К╓г╔╗╔И║╪╓╛х╞ю╦:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "╔╗╔И║╪х╞ю╦"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "╓и╓н╦ю╦Л╓Р╩х╓╕╓╚а╙╓С╓г╓╞╓ю╓╣╓╓╓м║ё"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr "╔╫╔у╔х╩хмя╔И╔╓╔╩╔С╔╧╬Р╧Ю"
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "╔╜║╪╔э║╪╔и"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "╔╜║╪╔э║╪╔и╔Л╔╓╔╒╔╕╔х╓о╡©╓г╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "╔╓╔С╔╧╔х║╪╔К╦Е╩хмя╡дг╫╓к╓й╓К╓ш╓╚╓н╦ю╦Л╓Ра╙бР╓г╓╜╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "╓╪╓С╓ж"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "╔╥╔╧╔ф╔Ю╓н╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С(/) ╓о╓й╓С╓г╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "╓и╓н╔╓╔С╔╧╔х║╪╔К╔╞╔И╔╧╓Рк╬╓ъ╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "╔╓╔С╔╧╔х║╪╔К/╔╒╔ц╔в╔╟╔Л║╪╔и"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
+msgstr "╔╓╔С╔╧╔х║╪╔К/╧╧©╥"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "╔╓╔С╔╧╔х║╪╔К╓г╓╧╓╚║╓╔╒╔ц╔в╔╟╔Л║╪╔и╓г╓╧╓╚║╘"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
+msgstr "╔╓╔С╔╧╔х║╪╔К╓г╓╧╓╚║╓╧╧©╥╓г╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "а╢╪╚ф╟"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "©Д╬╘"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "╔╚╔╧╔©╔ч╔╓╔╨"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "╔╗╔╜╔╧╔я║╪╔х"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"╓╒╓й╓©║╒кэеЖ╓к╔ш╔С╔х╓н╔╗╔╜╔╧╔я║╪╔х╓г╓╥╓Г╓╕╓м╓╖║ё\n"
-"╓Ё╓Л╓Ра╙╓ж╓х║╒╤╞но╓й╓ю╓╠╓к╓╗╓И╓╞╢М╦╠╓й╓ч╓м╓╛╓г╓╜╓а╓Ц╓╓╓ч╓╧╓Х║ё"
+"╓Ё╓Л╓Ра╙╓ж╓х║╒╤╞но╓й╓ю╓╠╓к╓╗╓И╓╞╢М╦╠╓й╓ч╓м╓╛╓г╓╜╓а╓Ц╓╓╓ч╓╧╓Х║ё\n"
+"``╔я╔╧╔О║╪╔и╓Р╔╥╔Ц╔и╔╕╓к╓╥╓ч╓╧╓╚?''╓х╓╓╓ц╓©╪алД╓Р©ж╓╚╓Л╓ч╓╧║ё╓Ё╓н╓Х╓╕╓й╪алД╓к"
+"╔ш╔С╔х╓кеЗ╓╗╓И╓Л╓К╓С╓г╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "╔╒╔ц╔в╔╟╔Л║╪╔и"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr "╧╧©╥"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "╔н║╪╔ч╔К"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "╔О║╪╔╞╔╧╔ф║╪╔╥╔Г╔С"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Ё╚х╞мя"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "╔╣║╪╔п"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
msgstr "╔╥╔╧╔ф╔Ю╓н╩х╓╓йЩ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "╔ч╔╕╔╧╓н╥©╓о╓й╓С╓г╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "╔ч╔╕╔╧╔щ║╪╔х"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "╔ч╔╕╔╧╓о╓и╓н╔╥╔Й╔╒╔К╔щ║╪╔х╓к╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIA╔╚║╪╔и╓нюъдЙцФ..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE ╓нюъдЙ"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "╩х╓╗╓К╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓к╓╥╓ч╓╧╓╚"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔╧╔╜╔Ц╔С╓╥╓ф╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓Рц╣╓╥╓ф╓╓╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓на╙бР"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓╛фи╓А╓ч╓╩╓С║╓╡У╓Л╓ф╓╓╓К╓Х╓╕╓г╓╧:(\n"
+"итю╣╓й╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╬ц╓╥╓ф╓ъ╓ч╓╥╓Г╓╕╓╚║╘║й╓Ё╓Л╓ю╓х╔г║╪╔©╓╛а╢иТ╬ц╓╗╓ч╓╧║╙║к"
+"\n"
+"╓╒╓К╓╓╓о║╒DrakX╓к╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Рйя╧╧╓╣╓╩╓й╓╓╪Й╓╛╓╒╓Й╓ч╓╧║ё\n"
+"(╔╗╔И║╪╓о%s╓г╓╧)\n"
+"\n"
+"а╢╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╬ц╣Н╓╥╓ф╓Х╓М╓╥╓╓╓г╓╧╓м║╘\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake ╓о╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓Рю╣╓╥╓╞фи╓А╓ч╓╩╓С╓г╓╥╓©║ё\n"
+"╓Ё╓Ё╓╚╓ИюХ╓о╡©╓╛╣╞╓╜╓ф╓Б╓╥╓Й╓ч╓╩╓С╓Х║╙"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "╔╥╔╧╔ф╔Ю╓н╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С(/) ╓о╓й╓С╓г╓╧╓╚║╘"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓нйя╧╧╓Рх©╠г╓╧╓К╓к╓о╔Й╔ж║╪╔х╓╥╓ф╓╞╓ю╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "╔у╔╘║╪╔ч╔ц╔х╓╧╓К╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "итни╔ж╔М╔ц╔╞╓Р╦║╨╨╓╥╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔у╔╘║╪╔ч╔ц╔х"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "╔у╔║╔╓╔К %s ╓н╨Ню╝╓х╔у╔╘║╪╔ч╔ц╔х"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "╔╓╔С╔╧╔х║╪╔К╓к╫╫й╛╓й╔╧╔О╔ц╔в╓╛╓╒╓Й╓ч╓╩╓С║╓╔╧╔О╔ц╔в╓Р╡ц╓╗╓ф╡╪╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "╪Й╩Щ╓а╓н╔я╔ц╔╠║╪╔╦╓Р╓╣╓╛╓╥╓ф╓╓╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "╔╒╔ц╔в╔╟╔Л║╪╔и╓╧╓К╔я╔ц╔╠║╪╔╦╓Р╓╣╓╛╓╥╓ф╓╓╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "╔╓╔С╔╧╔х║╪╔К╓Д╔╒╔ц╔в╔╟╔Л║╪╔и╓ки╛мв╓й╔г╔ё╔╧╔╞╓н╤У╓╜мфнл╓╛итб╜╓г╓╧║ё"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"╔╓╔С╔╧╔х║╪╔К╓Д╔╒╔ц╔в╔╟╔Л║╪╔и╓ки╛мв╓й╔г╔ё╔╧╔╞╓н╤У╓╜мфнл╓╛итб╜╓г╓╧║ё (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "╢╟а╢ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "╨г╬╝ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "©Д╬╘ (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "╔╚╔╧╔©╔Ю"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "╔╓╔С╔╧╔х║╪╔К╓╧╓К╔╣╔╓╔╨╓Ра╙╓С╓г╡╪╓╣╓╓"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "╔я╔ц╔╠║╪╔╦╔╟╔К║╪╔в╓Ра╙бР"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "╦дйл╔я╔ц╔╠║╪╔╦╓на╙бР"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2758,12 +4237,12 @@ msgstr ""
"CD╓╛╟Л╓д╓Б╓й╓╠╓Л╓п║╒╔╜╔Ц╔С╔╩╔К╓Р╔╞╔Й╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
"╪Й╦╣╓к╓й╓╓CD╓╛╓╒╓Л╓п║╒╓╫╓Л╓Ра╙бР╓╚╓И╓о╓╨╓╥╓ф╓╚╓ИOk╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╧║ё"
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\"╓х╓╓╓╕Cd-Rom"
+msgstr "║ж %s ║в╓х╓╓╓╕Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2771,172 +4250,11 @@ msgstr ""
"╔я╔ц╔╠║╪╔╦ %s ╓Р╔╓╔С╔╧╔х║╪╔К\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "╔╓╔С╔╧╔х║╪╔КюъдЙ╓РЁндЙ"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "╦╫╨ъ╓н IP ╓нюъдЙ╓Рйщ╩Щ"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓Р╨фюъдЙ╓╧╓К"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓РюъдЙ╓╥╓й╓╓"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓нюъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "╔М║╪╔╚╔К╔м╔ц╔х╔О║╪╔╞╓оюъдЙ╨я╓ъ╓г╓╧║ё╟й╡╪╓Р╓╥╓©╓╓╓г╓╧╓╚║╖"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "╔╥╔╧╔ф╔Ю╓н╔М║╪╔╚╔К LAN ╔м╔ц╔х╔О║╪╔╞╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "╔м╔ц╔х╔О║╪╔╞╔╚║╪╔и╓╛╦╚иу╓╚╓Й╓ч╓╩╓С"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "╔Б╔г╔Ю╓нюъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "╔╥╔╧╔ф╔Ю╓н╔Б╔г╔Ю╓к╓Х╓К╔ю╔╓╔╒╔К╔╒╔ц╔в╔м╔ц╔х╔О║╪╔╞╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "╔м╔ц╔х╔О║╪╔╞╔г╔п╔╓╔╧ %s ╓нюъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:464
-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"
-"Ёф║╧╓н╧Юлэ╓к╓о╔и╔ц╔х╓г╤Хюз╓И╓Л╓©╫╫©й©Т(нЦ║╓1.2.3.4)╓╛IP "
-"╔╒╔и╔Л╔╧╓х╓╥╓ффЧно╓╣╓Л╓ч╓╧║ё"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP ╓н╪╚ф╟юъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP ╔╒╔и╔Л╔╧:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "╔м╔ц╔х╔ч╔╧╔╞:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP ╔╒╔и╔Л╔╧╓о 1.2.3.4 ╓н╓Х╓╕╓кфЧно╓╥╓ф╡╪╓╣╓╓"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓нюъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:493
-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"
-"╓Б╓╥╔╡║╪╔х╔╕╔╖╔╓╓╛╓╒╓Л╓п║╓╓╫╓н IP ╔╒╔и╔Л╔╧╓БфЧно╓╥╓ф╡╪╓╣╓╓║ё"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS ╔╣║╪╔п:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "╔╡║╪╔х╔╕╔╖╔╓╔г╔п╔╓╔╧:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "╔╡║╪╔х╔╕╔╖╔╓:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "╔ш╔╧╔хл╬:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "╔Б╔г╔Ю╓Р╦║╨В╓╥╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "╔Б╔г╔Ю╓о╓и╓н╔╥╔Й╔╒╔К╔щ║╪╔х╓к╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "╔ю╔╓╔╒╔К╔╒╔ц╔в╔╙╔в╔╥╔Г╔С"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "юэбЁл╬"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "ееоцхж╧Ф"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "╔М╔╟╔╓╔С ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "г╖╬з"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "╔╧╔╞╔Й╔в╔х╓Р╩х╓╕г╖╬з"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "╔©║╪╔ъ╔й╔К╓╚╓И╓нг╖╬з"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "╔и╔А╔╓╔Сл╬"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "╔у╔║║╪╔╧╔х DNS ╔╣║╪╔п"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "╔╩╔╚╔С╔и DNS ╔╣║╪╔п"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3000,88 +4318,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "╓и╓н╔╣╔╓╔х╓╚╓И╔я╔ц╔╠║╪╔╦╓Р╩Щ╓ц╓ф╓╞╓К╓╚╓Ра╙бР"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "╔╣╔╓╔х╓кюэбЁ╓╥╓ф╔я╔ц╔╠║╪╔╦╟ЛмВ╓Р╪Хфю╓╥╓ф╓╓╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "╔╓╔С╔╧╔х║╪╔К╓╥╓©╓╓╔я╔ц╔╠║╪╔╦╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "╓╒╓й╓©╓н╩Ч╢жбс╓о╓и╓Л╓г╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "╔о║╪╔и╔╕╔╖╔╒╔╞╔М╔ц╔╞╓о GMT ╓к╔╩╔ц╔х╓╥╓ф╓╒╓Й╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "╓и╓н╟У╨Ч╔╥╔╧╔ф╔Ю╓Р╩х╓╓╓ч╓╧╓╚║╘"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "╔я╔╧╔О║╪╔и╓й╓╥"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "╔╥╔Ц╔и╔╕╔у╔║╔╓╔К╓Р╩х╓╕"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "╔╥╔Ц╔и╔╕"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "MD5 ╔я╔╧╔О║╪╔и╓Р╩х╓╕"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "NIS ╓Р╩х╓╕"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "╔╓╔╗╔М║╪╔з║╪╔╦"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "╓Ё╓н╔я╔╧╔О║╪╔и╓о╢йц╠╓╧╓╝╓ч╓╧║й╨гдЦ╓г╓Б %d й╦╩З╩х╓ц╓ф╓╞╓ю╓╣╓╓║к"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "г╖╬зNIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS ╔и╔А╔╓╔С"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS ╔╣║╪╔п"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "╪У╓╠иу╓╠╓К╔Ф║╪╔╤"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "╔Ф║╪╔╤╓Рди╡ц"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(╓╧╓г╓к %s ╓о╡ц╓О╓ц╓ф╓╓╓ч╓╧)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3091,60 +4413,87 @@ msgstr ""
"╔Ф║╪╔╤л╬╓РфЧно╓╥╓ф╡╪╓╣╓╓\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "╪б╨щ╓н╩Ал╬"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "╔Ф║╪╔╤л╬"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "╔╥╔╖╔К"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "╔╒╔╓╔Ё╔С"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "╔я╔╧╔О║╪╔и╓╛╢йц╠╓╧╓╝╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "╔Ф║╪╔╤л╬╓Рм©╓╗╓ф╡╪╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "╔Ф║╪╔╤л╬╓к╓о╠я╬╝й╦╩З║╓©Т╩З║╓`-' `_' ╓╥╓╚╩х╓╗╓ч╓╩╓С║ё"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "╓Ё╓н╔Ф║╪╔╤л╬╓о╓╧╓г╓к╡ц╓О╓ц╓ф╓╓╓ч╓╧"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"╔╚╔╧╔©╔Ю╔ж║╪╔х╔г╔ё╔╧╔╞╓╛╓╒╓К╓х║╒дл╬О╓н╔ж║╪╔х╔М║╪╔ю╓Р╩х╓О╓╨╓к Linux ╓Р\n"
+"╣╞ф╟╓г╓╜╓ч╓╧║ёSILO ╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓©╓╞╓й╓╓╬Л╧Г╓Д║╒б╬╓н OS ╓╛\n"
+" SILO ╓Р╨О╫Э╓╧╓К╬Л╧Г║╒╓ч╓©╓о╔о║╪╔и╔╕╔╖╔╒юъдЙ╓н╓©╓А SILO ╓╛╓╕╓ч╓╞╨Нф╟\n"
+"╓╥╓й╓╓╬Л╧Г╓к╩хмя╓г╓╜╓ч╓╧║ё\n"
+"╔╚╔╧╔©╔Ю╔ж║╪╔х╔г╔ё╔╧╔╞╓о║╒Mandrake ╓н╔╥╔╧╔ф╔ЮиЭ╣Лмя╓н╔Л╔╧╔╜╔Е║╪╔╓╔А║╪╔╦\n"
+"╓х╓╥╓ф╓Б╩хмя╓г╓╜╓ч╓╧║ё╓Ё╓Л╓╛╓╒╓Л╓п╔╥╔╧╔ф╔Ю╓╛╢М╣║╓к╓╙╓а╓╓╓ц╓©╓х╓╜╓к\n"
+"иЭ╣Л╓╧╓К╓н╓╛Ёз╓к╓й╓Й╓ч╓╧║ё\n"
+"╔ж║╪╔х╔г╔ё╔╧╔╞╓Р╨Н╓К╓й╓И╓п║╒╔у╔М╔ц╔т╔ё╔г╔ё╔╧╔╞╓Р╔и╔И╔╓╔ж╓качфЧ╓╥║╒\n"
+"║жOK║в╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "╨г╫И╓н╔у╔М╔ц╔т║╪╔и╔И╔╓╔ж"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "фСхжлэ╓н╔у╔М╔ц╔т║╪╔и╔И╔╓╔ж"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "╔╧╔╜╔ц╔в"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3165,64 +4514,32 @@ msgstr ""
"╓х╓╥╓ф╓Б╩хмя╓г╓╜╓ч╓╧║ё╓Ё╓Л╓╛╓╒╓Л╓п╔╥╔╧╔ф╔Ю╓╛╢М╣║╓к╓╙╓а╓╓╓ц╓©╓х╓╜╓к\n"
"иЭ╣Л╓╧╓К╓н╓╛Ёз╓к╓й╓Й╓ч╓╧║ё╔ж║╪╔х╔г╔ё╔╧╔╞╓Р╨Н╓Й╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "м╜╦З╓й╔у╔М╔ц╔т║╪╔и╔И╔╓╔ж╓╛╓╒╓Й╓ч╓╩╓С║╓╓╢╓А╓С╓й╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "╔ж║╪╔х╔г╔ё╔╧╔╞╓Р╨Н╓Й╓©╓╓╔у╔М╔ц╔т╔ё╔и╔И╔╓╔ж╓Ра╙бР"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "╔у╔М╔ц╔т║╪╓Р╔и╔И╔╓╔ж %s ╓качфЧ"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "╔ж║╪╔х╔г╔ё╔╧╔╞╓н╨Ню╝"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO ╓н╔╓╔С╔╧╔х║╪╔К╓к╪╨гт╓╥╓ч╓╥╓©║ё╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "SILO ╓Р╩х╓╓╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO ╔А╔╓╔С╔╙╔в╔╥╔Г╔С"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"SILO ╓к╓о╟й╡╪╓н╔╗╔С╔х╔Й╓╛╓╒╓Й╓ч╓╧║ё\n"
-"╓ш╓╚╓н╔╗╔С╔х╔Й╓Р╡ц╓╗╓К╓╚йя╧╧╓╧╓К╓Ё╓х╓╛╓г╓╜╓ч╓╧║ё"
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "╔я║╪╔ф╔ё╔╥╔Г╔С"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "╓Ё╓н╔И╔ы╔К╓о╓╧╓г╓к╩х╓О╓Л╓ф╓╓╓ч╓╧"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO ╓н╔╓╔С╔╧╔х║╪╔К╓к╪╨гт╓╥╓ч╓╥╓©║ё╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "╔ж║╪╔х╔М║╪╔ю╓н╫ЮхВ"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "aboot ╓Р╩х╓╓╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3230,129 +4547,124 @@ msgstr ""
"aboot ╔╓╔С╔╧╔х║╪╔К╩Ч╓к╔╗╔И║╪х╞ю╦║ё\n"
"л╣мЩ╓к╔╓╔С╔╧╔х║╪╔К╓╥╓ф╓ъ╓ч╓╧╓╚║╘║║╓©╓ю╓╥╨г╫И╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛гк╡У╓╣╓Л╓ч╓╧║ё"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy ╓нюъдЙ"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy ╓о http://... ╓г╓╧"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ╓о ftp://... ╓г╓╧"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "╔ж║╪╔х╔М║╪╔ю╓н╔╓╔С╔╧╔х║╪╔К╓к╪╨гт╓╥╓ч╓╥╓©║ё╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Crackers╓ь╓Х╓╕╓Ё╓╫"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "╓╜╓О╓А╓фдЦ╓╓"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "дЦ╓╓"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "╓ш╓и╓ш╓и"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "╧Б╓╓"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "©ю╥п╪а╓й╓ш╓и╧Б©Е╫Ю"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "╓╫╓нб╬╓н╪алД"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "║й╔г║╪╔©╓╛╡У╓Л╓К╓╙╓╫╓Л╓╛╓╒╓Й╓ч╓╧║к"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "╔о║╪╔и╔г╔ё╔╧╔╞╓Р╨ге╛╡╫╓╥╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "╔╩╔╜╔Е╔Й╔ф╔ё╓н©Е╫Ю╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
# added a \n to the translation to avoid that the dialog window
# in which it appears to be tooooo laaaaarge
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
"и╛мв╓й╓Ию╣Ён╓йRAM╔╣╔╓╔╨╓РфЧ╓Л╓ф╓╞╓ю╓╣╓╓\n"
"║й%d MB╓╛╦╚╓д╓╚╓Й╓ч╓╥╓©║к"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "╔Й╔Ю║╪╔п╔ж╔К╔А╔г╔ё╔╒╓Р╪╚ф╟╔ч╔╕╔С╔хцФ"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Ёф╔ж║╪╔х╩Ч╓к /tmp ╟й╡╪╓Р╬ц╓╧"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "╔ч╔К╔а╔в╔М╔у╔║╔╓╔К╓Рм╜╦З╓к"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "╣╞ф╟╩Ч╓кnum lock╓Р╔╙╔С╓к╓╧╓К"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Ram╔╣╔╓╔╨╓РMB╓гфЧно"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "╔╧║╪╔я║╪╔ч╔╕╔С╔х╓о╧Б╓╓╔╩╔╜╔Е╔Й╔ф╔ё╔Л╔ы╔К╓г╓о╩х╓╗╓ч╓╩╓С"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX ╓о║╒XFree 3.3╓хXFree 4.0н╬йЩ╓нюъдЙ╔у╔║╔╓╔К╓Р╓д╓╞╓Й╓ч╓╧║ё╓г╓Б\n"
-"╔г╔у╔╘╔К╔х╓г╓о3.3╔╣║╪╔п╓н╓ш╓╕╓Р╩х╓╓╓ч╓╧║ёбп╠Ч╔с╔г╔╙╔╚║╪╔и╓╛б©╓╓╓╚╓И╓г╓╧║ё\n"
-"\n"
-"XFree 4.0 ╓Р╩Н╓╥╓ф╓ъ╓ч╓╧╓╚?"
+"цМ╟у: ╓Ё╓н╔╩╔╜╔Е╔Й╔ф╔ё╔Л╔ы╔К╓г╓о║╒╔Ё╔С╔╫║╪╔К╓г╓н╔К║╪╔х╔М╔╟╔╓╔С╓о\n"
+"╣Ж╡д╓╣╓Л╓ч╓╩╓С║╙\n"
+"root ╓к╓й╓Й╓©╓╓╓х╓╜╓о║╒╔Ф║╪╔╤╓г╔М╔╟╔╓╔С╓╥╓ф║жsu║в╓Р╩х╓╕и╛мв╓╛╓╒╓Й╓ч╓╧║ё\n"
+"╟Лхле╙╓к╓о║╒╔╣║╪╔п╓Р╫Э╓╞╡©╓╚╓╛╔ч╔╥╔С╓Р╩х╓╗╓К╓х╢Эбт╓╣╓╩╓й╓╓╓©╓А╓г╓╧║ё\n"
+"╥ы╧П╓╥╓ч╓╥╓©╓Х║ё"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "PCI╔г╔п╔╓╔╧╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"цМ╟у║╒numlock ╓Рм╜╦З╓к╓╧╓К╓х║╒╓╓╓╞╓д╓╚╓н╔╜║╪╔╧╔х╔М║╪╔╞╓оиАдл╓нй╦╩З\n"
+"╓н╓╚╓О╓Й╓к©Т╩З╓Рйж╓╥╓ч╓╧(нЦ║╖`p'╓Рбг╓д╓х`6'╓Рйж╓╥╓ч╓╧)"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "╓╧╓г╓к╓╒╓К X11 ╓нюъдЙ╓Р╩х╓╓╓ч╓╧╓╚║╘"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "linux╓нйёю╫мя╓к║╒╪╚ф╟╔╓╔С╔╧╔х║╪╔К╔г╔ё╔╧╔╞╓Р╓д╓╞╓Й╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "╤У╓н╔у╔М╔ц╔т║╪╓Р╔и╔И╔╓╔ж %s ╓качфЧ╓╥╓ф╡╪╓╣╓╓"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "╔╓╔С╔╧╔х║╪╔К╔у╔М╔ц╔т║╪╓н╪╚ф╟╨Ню╝"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3362,7 +4674,7 @@ msgstr ""
"\n"
"кэеЖ╓к╫╙н╩╓╥╓ч╓╧╓╚║╘"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3380,155 +4692,20 @@ msgstr ""
"╓Ё╓н╔п║╪╔╦╔Г╔С╓н Linux-Mandrake ╓н╔п╔╟╫╓ю╣╬ПйС╓о║╒\n"
"http://www.linux-mandrake/ ╓гд╢╓ы╓И╓Л╓ч╓╧║ё\n"
"\n"
-"╔╓╔С╔╧╔х║╪╔К╦Е╓нюъдЙ╓к╓д╓╓╓ф╓н╬ПйС╓о╔Ф║╪╔╤╔╛╔╓╔и╓н║ж╔╓╔С╔╧╔х║╪╔К╓╥╓©╦Е║в╓н\n"
-"╬о╓╒Р╦╓ф╡╪╓╣╓╓║ё"
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "╔╥╔Ц╔ц╔х╔ю╔╕╔СцФ"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s ╔╚║╪╔и %s ╓н╔и╔И╔╓╔п╔╓╔С╔╧╔х║╪╔КцФ"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(╔Б╔╦╔Е║╪╔К %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "╓и╓н %s ╔и╔И╔╓╔п╓Р╩Н╓╥╓ч╓╥╓Г╓╕╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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"
-"╔ч╔╥╔С╓╛╓Ё╓О╓Л╓©╓Й╓╧╓К╓Ё╓х╓о╓╒╓Й╓ч╓╩╓С║ё"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "╔╙║╪╔х╔в╔М║╪╔ж"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "╔╙╔в╔╥╔Г╔С╩ьдЙ"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "╔Б╔╦╔Е║╪╔К %s ╓н╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its 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''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "╔Б╔╦╔Е║╪╔К╓н╔╙╔в╔╥╔Г╔С"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"╔Б╔╦╔Е║╪╔К %s ╓н╔М║╪╔и╓╛╓г╓╜╓ч╓╩╓С╓г╓╥╓©║ё\n"
-"╔я╔И╔А║╪╔©╓Рйя╓╗╓ф╓Д╓Й╓й╓╙╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "PCMCIA╔╚║╪╔и╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╥╓Г╓╕╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIA╔╚║╪╔и╓нюъдЙцФ..."
+"╔╓╔С╔╧╔х║╪╔К╦Е╓нюъдЙ╓к╓д╓╓╓ф╓о╔Ф║╪╔╤╔╛╔╓╔и╓н║ж╔╓╔С╔╧╔х║╪╔К╓╥╓©╦Е║в╓н\n"
+"╬о╓Р╩╡╬х╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "%s╔г╔п╔╓╔╧╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s ╔╓╔С╔©║╪╔у╔╖║╪╔╧╓╛╦╚╓д╓╚╓Й╓ч╓╥╓©"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "йл╓н╓Б╓н╓о╓╒╓Й╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "%s ╔╓╔С╔©║╪╔у╔╖║╪╔╧╓о╓╒╓Й╓ч╓╧╓╚║╘"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "╓╓╓╓╓╗"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "╓о╓╓"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "╔о║╪╔и╔╕╔╖╔╒╓н╬ПйС╓Р╦╚╓ф╡╪╓╣╓╓"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓Р╓©╓а╓╒╓╡╓К"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "╔м╔ц╔х╔О║╪╔╞╓РдД╩ъ╓╧╓К"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake ╔╓╔С╔╧╔х║╪╔К %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> мваг╢ж╓н╟эф╟ | <Space> а╙бР | <F12> ╪║╓н╔╧╔╞╔Й║╪╔С "
+msgstr " <Tab>/<Alt-Tab> мваг╢ж╓н╟эф╟ | <Space> а╙бР | <F12> ╪║╓н╡Хлл "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"╓╣╓╒╓Ё╓Л╓г %s ╔о║╪╔и╔и╔И╔╓╔ж╓Р╔я║╪╔ф╔ё╔╥╔Г╔С╓г╓╜╓ч╓╧║ё\n"
-"╫╙╓О╓ц╓©╓И║╒и╛╓╨ `w' ╓Р╩х╓ц╓фйщб╦╓╥╓ч╓╥╓Г╓╕║ё"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "╓╙бт╓а╡╪╓╣╓╓"
@@ -3538,7 +4715,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "итлю (%s)║╓╓Б╓ц╓хю╣Ён╓к\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "итю╣╓йа╙бР║╓╓Б╓╕╟Леы╩Н╓╥╓ф╡╪╓╣╓╓\n"
@@ -3552,447 +4729,940 @@ msgstr "? (╔г╔у╔╘╔К╔х╓о %s) "
msgid "Your choice? (default %s) "
msgstr "╓и╓Л╓к╓╥╓ч╓╧╓╚║╘║й╔г╔у╔╘╔К╔х╓о %s║к"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "╓и╓Л╓к╓╥╓ч╓╧╓╚║╘║й╔г╔у╔╘╔К╔х╓о %s║╒а╙╓п╓й╓╓╓й╓И║ж╓й╓╥║в║к"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "╔а╔╖╔Ё"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "╔и╔╓╔д"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "╔╧╔з╔╓╔С"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "╔у╔ё╔С╔И╔С╔и"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "╔у╔И╔С╔╧"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "╔н╔К╔╕╔╖║╪"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "╔щ║╪╔И╔С╔и"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "╔М╔╥╔╒"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "╔╓╔╝╔Й╔╧╪╟╔╜║╪╔э║╪╔и"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "╔╒╔А╔Й╔╚╪╟╔╜║╪╔э║╪╔и"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "╔╒╔К╔А╔к╔╒║й╦е╓╓║к"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "╔╒╔К╔А╔к╔╒║й╔©╔╓╔в╔И╔╓╔©║╪║к"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "╔╒╔К╔А╔к╔╒║йх╞╡╩╣╜╧Ф║к"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "╔╒╔╪╔К╔п╔╓╔╦╔Ц╔С(╔И╔ф╔С)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "╔╒╔╪╔К╔п╔╓╔╦╔Ц╔С(cyrillic)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "╔ы╔К╔╝║╪"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "╔ж╔К╔╛╔Й╔╒"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "╔ж╔И╔╦╔К"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "╔ы╔И╔К║╪╔╥"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "╔╧╔╓╔╧║й╔и╔╓╔д╪╟гшнС║к"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "╔╧╔╓╔╧║й╔у╔И╔С╔╧╪╟гшнС║к"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "╔и╔╓╔д║й╔г╔ц╔и╔╜║╪╓й╓╥║к"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "╔г╔С╔ч║╪╔╞"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (╔н╔К╔╕╔╖║╪)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "╔╗╔╧╔х╔к╔╒"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
-msgstr "╔╟╔К╔╦╔╒║й\"╔М╔╥╔╒╪╟\"гшнС║к"
+msgstr "╔╟╔К╔╦╔╒║й║ж╔М╔╥╔╒╪╟║вгшнС║к"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
-msgstr "╔╟╔К╔╦╔╒║й\"╔И╔ф╔С\"гшнС║к"
+msgstr "╔╟╔К╔╦╔╒║й║ж╔И╔ф╔С║вгшнС║к"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "╔╝╔Й╔╥╔Ц"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "╔о╔С╔╛╔Й║╪"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "╔╞╔М╔╒╔а╔╒"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "╔╓╔╧╔И╔╗╔К"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "╔╓╔╧╔И╔╗╔К║йх╞╡╩╣╜╧Ф║к"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "╔╓╔И╔С"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "╔╒╔╓╔╧╔И╔С╔и"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "╔╓╔©╔Й╔╒"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "фЭкэ╦Л106╔╜║╪╔э║╪╔и"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "╔И╔ф╔С╔╒╔А╔Й╔╚"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "╔╙╔И╔С╔ю"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "╔Й╔х╔╒╔к╔╒ AZERTY (╣Л)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "╔Й╔х╔╒╔к╔╒ AZERTY (©╥)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "╔Й╔х╔╒╔к╔╒ \"©Т╩ЗнС\" QWERTY"
+msgstr "╔Й╔х╔╒╔к╔╒ ║ж©Т╩ЗнС║в QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "╔Й╔х╔╒╔к╔╒ \"х╞╡╩\" QWERTY"
+msgstr "╔Й╔х╔╒╔к╔╒ ║жх╞╡╩║в QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "╔щ║╪╔И╔С╔и║йqwerty гшнС║к"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "╔щ║╪╔И╔С╔и║йqwertzгшнС║к"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "╔щ╔К╔х╔╛╔К"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "╔╚╔й╔ю║й╔╠╔ы╔ц╔╞║к"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "╔М╔╥╔╒║й ╖а╖ё╖╕╖╡╖╢╖╙ ║к"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "╔╧╔╕╔╖║╪╔г╔С"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "╔╧╔М╔ы╔к╔╒"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "╔╧╔М╔п╔╜╔╒"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "╔©╔╓║║╔╜║╪╔э║╪╔и"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "╔х╔К╔Ё║йеаеЩе╙ \"F\" ╔Б╔г╔К║к"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "╔х╔К╔Ё║й╦╫бЕ \"Q\" ╔Б╔г╔К║к"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "╔╕╔╞╔И╔╓╔й"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "╔╒╔А╔Й╔╚╪╟╔╜║╪╔э║╪╔и║й╧Я╨щ╪╟║к"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "╔ы╔х╔й╔Ю ║ж©Т╩ЗнС║в QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "╔Ф║╪╔╢╔╧╔И╔с╔╒║й╔И╔ф╔СгшнС║к"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - ╔ч╔╕╔╧"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "и╦╫Ю"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔╓╔С╔ф╔Й╔ч╔╕╔╧║йPS/2║к"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "хфмя"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "╔ш╔╓║╪╔К"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔╓╔С╔ф╔Й╔ч╔╕╔╧║й╔╥╔Й╔╒╔К║к"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "хфмя╓н2╔э╔©╔С╔ч╔╕╔╧"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "хфмя╓н3╔э╔©╔С╔ч╔╕╔╧"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC ╔╥╔Й║╪╔╨ (╔╥╔Й╔╒╔К)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (╔╥╔Й╔╒╔К, ╦е╓╓ C7 ╔©╔╓╔в)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "╔п╔╧╔ч╔╕╔╧"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2╔э╔©╔С"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3╔э╔©╔С"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "╓й╓╥"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "╔ч╔╕╔╧╓й╓╥"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "╪║ ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "ю╣╓╥╓╞и╫╪╗╫пмХ╓ч╓╥╓©╓╚║╘"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╓нюъдЙ"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "╨ё╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╥╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:101
+msgid "Testing your connection..."
+msgstr "юэбЁ╓Р╔ф╔╧╔х╓╥╓ф╓╓╓ч╓╧..."
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "╦╫╨ъ╓о╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╥╓ф╓╓╓ч╓╩╓С║ё"
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"╓Ё╓н╔ч╔╥╔С╓о╔╓╔С╔©║╪╔м╔ц╔х╓ь╓д╓й╓╛╓ц╓ф╓╓╓й╓╓╓Х╓╕╓г╓╧╓м║ё\n"
+"юэбЁ╓нюъдЙ╓Р╓Д╓Й╓й╓╙╓╥╓ф╓ъ╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN╓нюъдЙ"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"╔в╔М╔п╔╓╔ю╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+"╓Б╓╥╔Й╔╧╔х╓к╓й╓╠╓Л╓п║╒Unlisted╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "юэбЁ╓нюъдЙ"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "╡╪╓н╔у╔ё║╪╔К╔и╓РкД╓А╓К╓╚╔а╔╖╔ц╔╞╓╥╓ф╓╞╓ю╓╣╓╓"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "╔╚║╪╔и IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "╔╚║╪╔и mem (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "╔╚║╪╔и IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "╔╚║╪╔и IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "╔╚║╪╔и IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "╓╒╓й╓©╓нееоцхж╧Ф"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "╔в╔М╔п╔╓╔ю╓нл╬а╟ (нЦ provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "╔в╔М╔п╔╓╔ю╓нееоцхж╧Ф"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "╔в╔М╔п╔╓╔ю╓н dns 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "╔в╔М╔п╔╓╔ю╓н dns 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "╔ю╔╓╔╒╔К╔Б║╪╔и"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "╔╒╔╚╔╕╔С╔х╔М╔╟╔╓╔С║й╔Ф║╪╔╤л╬║к"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "╔╒╔╚╔╕╔С╔х╔я╔╧╔О║╪╔и"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "╔я╔╧╔О║╪╔и╓нюъдЙ"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "╔Х║╪╔М╔ц╔я"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "╔Х║╪╔М╔ц╔я (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "╓╩╓╚╓╓╓н╓╫╓нб╬"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "ю╓Ё╕╓н╓╫╓нб╬ - D-Channel ╓г╓й╓╓(╔Й║╪╔╧╓╣╓Л╓©╡СюЧ)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "╓и╓н╔в╔М╔х╔Ё╔К╓Р╩х╓╓╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "й╛╓╚╓И╓й╓╓"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "╓и╓С╓й╔╚║╪╔и╓Р╩х╓ц╓ф╓╓╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "бЁ╓╠╓К"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "цФцг"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "╓╒╓й╓©╓нISDN╔╚║╪╔и╓о╓и╓Л╓г╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "ISDN╔╚║╪╔и╓Р╓ъ╓д╓╠╓ч╓╥╓©:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"ISDN ╔╚║╪╔и╓Р╦║╫п╓╥╓ч╓╥╓©╓╛║╒╔©╔╓╔в╓╛й╛╓╚╓Й╓ч╓╩╓С║ё╪║╓н╡Хлл╓╚╓И PCI "
+"╔╚║╪╔и╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "ISDN PCI ╔╚║╪╔и╓о╦╚иу╓╚╓Й╓ч╓╩╓С╓г╓╥╓©║ё╪║╓н╡Хлл╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓"
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"LILO operating system chooser-he youkosou!\n"
+"╔╥╔╧╔ф╔Ю╬Е╓к╔╓║╪╔╣╔м╔ц╔х╔╒╔ю╔в╔©╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С║ё╓Ё╓н╪ОнЮ╓н\n"
+"юэбЁ╓оюъдЙ╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔╓╔С╔©║╪╔у╔╖╔╓╔╧╓на╙бР"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓к╩х╓╕╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓Ра╙╓с╓ч╓╥╓Г╓╕"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔╓╔С╔©║╪╔у╔╖╔╓╔╧"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"<TAB>: Ichiran Hyouji\n"
+"Do you agree?"
+msgstr ""
"\n"
-"Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
+"╓Х╓М╓╥╓╓╓г╓╧╓м║╘"
+
+#: ../../netconnect.pm_.c:352
+msgid "I'm about to restart the network device:\n"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔г╔п╔╓╔╧╓Р╨ф╣╞ф╟╓╥╓ч╓╧╓Х:\n"
+
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL╓нюъдЙ"
+
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "╔ж║╪╔х╩Ч╓кюэбЁ╓╥╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "╔Б╔г╔Ю╓Р╦║╨В╓╥╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "╔Б╔г╔Ю╓о╓и╓н╔╥╔Й╔╒╔К╔щ║╪╔х╓к╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "╔ю╔╓╔╒╔К╔╒╔ц╔в╔╙╔в╔╥╔Г╔С"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "юэбЁл╬"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "ееоцхж╧Ф"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "╔М╔╟╔╓╔С ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "г╖╬з"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "╔╧╔╞╔Й╔в╔х╓Р╩х╓╕г╖╬з"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "╔©║╪╔ъ╔й╔К╓╚╓И╓нг╖╬з"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "╔и╔А╔╓╔Сл╬"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "╔у╔║║╪╔╧╔х DNS ╔╣║╪╔п"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "╔╩╔╚╔С╔и DNS ╔╣║╪╔п"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"╔╓╔С╔©║╪╔м╔ц╔х╓ьюэбЁ╓╧╓К╓╚юэбЁ╓Р╨фюъдЙ╓╥╓ф╓╞╓ю╓╣╓╓"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "OSа╙бР╔╫╔у╔хGRUB╓ь╓Х╓╕╓Ё╓╫║╙"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓Р╨фюъдЙ╓г╓╜╓ч╓╧║ё"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%c, %c key wo tukatte entry wo shitei shite kudasai."
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "╦╫╨ъ╓о╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╥╓ф╓╓╓ч╓╩╓С║ё"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Kono OS wo kidou suru nara Enter, Kidou mae no jikkou command"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"юэбЁ╓Рюз╓К╓╚║╒╓╒╓К╓╓╓о╨фюъдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "no henshuu niha 'e', command line nara 'c' wo oshi masu."
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╣╓Л╓ф╓╓╓ч╓╧║ё"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Sentaku shita OS ga %d byou de jidoutekini kidou shimasu."
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╓ь╓нюэбЁ"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "/boot ╓нмфнлитб╜╓г╓╧"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╓╚╓Июзцг"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "╔г╔╧╔╞╔х╔ц╔в"
+#: ../../netconnect.pm_.c:594
+msgid "Configure network connection (LAN or Internet)"
+msgstr "╔м╔ц╔х╔О║╪╔╞юэбЁ (LAN/╔╓╔С╔©║╪╔м╔ц╔х)╓нюъдЙ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "╔╧╔©║╪╔х╔А╔к╔Е║╪"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓хюъдЙ"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - ╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔г╔п╔╓╔╧ $netc->{NET_DEVICE} ╓Р╨ф╣╞ф╟╓╥╓ч╓╧║ё╓╓╓╓╓г╓╧╓м║╘"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB ╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
+msgstr "╓у╓д╓╕╓н╔Б╔г╔ЮюэбЁ╓РюъдЙ"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB ╔ч╔╕╔╧║й2╔э╔©╔С║к"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
+msgstr "ISDN юэбЁ╓нюъдЙ"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB ╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "фБб╒ISDN╔╚║╪╔и"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "Ё╟иу ISDN ╔Б╔г╔Ю"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB╔ч╔╕╔╧║й2╔э╔©╔С║к"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╓ьюэбЁ"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "╓и╓н╪ОнЮ╓нISDNюэбЁ╓г╓╧╓╚║╘"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "хфмя╔ч╔╕╔╧ (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "DSL (╓ч╓©╓о ADSL) юэбЁ╓нюъдЙ"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "╔у╔И╔С╔╧"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "хфмя╓н3╔э╔©╔С╔ч╔╕╔╧ (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "б╬╓н╧Я"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "╓╒╓й╓©╓╛╓╓╓К╓н╓о╓и╓н╧Я╓г╓╧╓╚║╘"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel╔Б╔г╔Ю"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI ╔Б╔г╔Ю"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
+"╓Б╓╥adsl╔Б╔г╔Ю╓╛alcatelю╫╓й╓И║╒alcatel╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓╫╓╕╓г╓й╓╠╓Л╓п\n"
+"ECI ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "pppoe╓Р╩х╓╕"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "pppoe╓Р╩х╓О╓й╓╓"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"adsl ╓кюэбЁ╓╧╓К╓у╓д╓╕╓н╓Д╓ЙйЩ╓о║╒dhcp + pppoe╓г╓╧║ё\n"
+"╓г╓Б║╒dhcp╓╥╓╚╩х╓О╓й╓╓юэбЁ╓Б╟ЛиТ╓к╓о╓╒╓Й╓ч╓╧║ё\n"
+"╓О╓╚╓И╓й╓╠╓Л╓п║╒'use pppoe'╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔╓╔С╔ф╔Й╔ч╔╕╔╧║йPS/2║к"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
+msgstr "╔╠║╪╔ж╔К╔ф╔Л╔сюэбЁ╓нюъдЙ"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI ╔п╔╧╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"╓и╓нdhcp╔╞╔И╔╓╔╒╔С╔х╓Р╩х╓╓╓ч╓╧╓╚║╘\n"
+"╔г╔у╔╘╔К╔х╓о dhcpd╓г╓╧"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔п╔╧╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓Рл╣╦З╓к╓╧╓К"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "╔М╔╦╔ф╔ц╔╞║╕╔п╔╧╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "LAN юъдЙ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB╔ч╔╕╔╧"
+#: ../../netconnect.pm_.c:815
+msgid "Network configuration"
+msgstr "╔м╔ц╔х╔О║╪╔╞юъдЙ"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+#: ../../netconnect.pm_.c:816
+msgid "Do you want to restart the network"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓Р╨ф╣╞ф╟╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "╔ч╔╕╔╧╓й╓╥"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓Рл╣╦З╓к╓╧╓К"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A ╟й╬Е(serial)"
+#: ../../netconnect.pm_.c:834
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁюъдЙ║©LAN юъдЙ"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC ╔╥╔Й║╪╔╨ (╔╥╔Й╔╒╔К)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"╔М║╪╔╚╔К╔м╔ц╔х╔О║╪╔╞╓оюъдЙ╨я╓ъ╓г╓╧║ё\n"
+"╟й╡╪╓Р╓╥╓©╓╓╓г╓╧╓╚║╖"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (╔╥╔Й╔╒╔К)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "╓и╓н╓Х╓╕╓к╓╥╓ф╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╥╓ч╓╧╓╚?"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (╔╥╔Й╔╒╔К)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓нюъдЙ"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (╔╥╔Й╔╒╔К)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"╓╣╓╒╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓нюъдЙ╓╛╫╙╓О╓Й╓ч╓╥╓©║ё╓ш╓╚╓н╔ч╔╥╔С╓╛\n"
+"╓Ё╓н╔ч╔╥╔С╥пмЁ╓г╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╧╓К╓Х╓╕╓кюъдЙ╓г╓╜╓ч╓╧\n"
+"цМ║╖╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞ (LAN) "
+"╓Р╓д╓╞╓К╓к╓о║╒юЛмя╓н╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓╛мв╓Й╓ч╓╧║ё\n"
+"\n"
+"╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓н╤╕м╜╓РюъдЙ╓╥╓ч╓╧╓╚║╘\n"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔╓╔С╔ф╔Й╔ч╔╕╔╧║й╔╥╔Й╔╒╔К║к"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔╚║╪╔и╓╛╦╚иу╓╚╓Й╓ч╓╩╓С"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "╔м╔ц╔х╔О║╪╔╞╓нюъдЙ"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"╔ш╔╧╔хл╬╓╛й╛╓╚╓К╓й╓И║╒╓╫╓Л╓РфЧно╓╥╓ф╡╪╓╣╓╓║ё\n"
+"╓╓╓╞╓д╓╚╓нDHCP╔╣║╪╔п╓оф╟╨Н╓╧╓К╓н╓к╔ш╔╧╔хл╬╓Ри╛мв╓х╓╥╓ч╓╧║ё\n"
+"╔ш╔╧╔хл╬╓о ``mybox.mylab.myco.com'' ╓н╓Х╓╕╓кю╘╦б╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (╔╥╔Й╔╒╔К, ╦е╓╓ C7 ╔©╔╓╔в)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "╔ш╔╧╔хл╬:"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"╥ы╧П║╙: ╓Ё╓н╔г╔п╔╓╔╧╓о║╒╓╧╓г╓к╔╓╔С╔©║╪╔м╔ц╔хюэбЁмя╓кюъдЙ╓╣╓Л╓ф╓╓╓ч╓╧║ё\n"
+"╓Б╓х╓нюъдЙ╓Р╩д╓╥╓©╓╠╓Л╓п║╒╓Ё╓н╓ч╓ч OK ╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"╟й╡╪╓н╔у╔ё║╪╔К╔и╓Рйя╧╧╓╧╓К╓х║╒юъдЙ╓╛йя╓О╓ц╓ф╓╥╓ч╓╓╓ч╓╧║ё"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "хфмя╔ч╔╕╔╧ (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:302
+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"
+"Ёф║╧╓н╧Юлэ╓к╓о╔и╔ц╔х╓г╤Хюз╓И╓Л╓©╫╫©й©Т(нЦ║╓1.2.3.4)╓╛IP "
+"╔╒╔и╔Л╔╧╓х╓╥╓ффЧно╓╣╓Л╓ч╓╧║ё"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х╦ъ╢╧║й╔╥╔Й╔╒╔К║к"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔г╔п╔╓╔╧ %s ╓нюъдЙ"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "хфмя╓н3╔э╔©╔С╔ч╔╕╔╧ (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP ╓н╪╚ф╟юъдЙ"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (╔╥╔Й╔╒╔К)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP ╔╒╔и╔Л╔╧:"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "ю╣╓╥╓╞и╫╪╗╫пмХ╓ч╓╥╓©╓╚║╘"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "╔м╔ц╔х╔ч╔╧╔╞:"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP ╔╒╔и╔Л╔╧╓о 1.2.3.4 ╓н╓Х╓╕╓кфЧно╓╥╓ф╡╪╓╣╓╓"
+
+#: ../../network.pm_.c:341
+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"
+"╓Б╓╥╔╡║╪╔х╔╕╔╖╔╓╓╛╓╒╓Л╓п║╓╓╫╓н IP ╔╒╔и╔Л╔╧╓БфЧно╓╥╓ф╡╪╓╣╓╓║ё"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS ╔╣║╪╔п:"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "╔╡║╪╔х╔╕╔╖╔╓:"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "╔╡║╪╔х╔╕╔╖╔╓╔г╔п╔╓╔╧:"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "╔в╔М╔╜╔╥╓нюъдЙ"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy ╓о http://... ╓г╓╧"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy ╓о ftp://... ╓г╓╧"
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "╓Ё╓н╔ч╔╥╔С╓г╓о║╒Ёхд╔╔я║╪╔ф╔ё╔╥╔Г╔С╓о╔╣╔щ║╪╔х╓╣╓Л╓ф╓╓╓ч╓╩╓С"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4002,21 +5672,21 @@ msgstr ""
"╓и╓╕╓╥╓ф╓Б╩х╓╓╓©╓╠╓Л╓п║╒╔в╔И╔╓╔ч╔Й╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╟эф╟╓╥╓ф║╒л╓╩ьдЙ╓н╥Й╓Р\n"
"Ёхд╔╔я║╪╔ф╔ё╔╥╔Г╔С╓нны╓к╓Б╓ц╓ф╓╜╓ч╓╥╓Г╓╕║ё"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "╔у╔║╔╓╔К %s ╓нфи╓ъ╓х╓Й╔╗╔И║╪╓г╓╧"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s ╔у╔║╔╓╔К╓╚╓И╓ниЭ╦╣╓╛╪╨гт╓╥╓ч╓╥╓©║╖ %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "╔п╔ц╔╞╔╒╔ц╔в╔у╔║╔╓╔К╓╛╡У╓Л╓ф╓╓╓ч╓╧"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "╔у╔║╔╓╔К %s ╓ь╓н╫Я╓╜╧Ч╓ъ╔╗╔И║╪"
@@ -4050,42 +5720,51 @@ msgstr "ллгР╓╓"
msgid "maybe"
msgstr "╓©╓ж╓С"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (╫емв)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (╓х╓ф╓Ба╠╓╓)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (а╠╓╓)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Ё╣н╛╓ги╫╪╗"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "╬э╨ы╓Ри╫╪╗"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "╔М║╪╔╚╔К╔в╔Й╔С╔©"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "╔Й╔Б║╪╔х lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "╔Й╔Б║╪╔х╔в╔Й╔С╔©"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "╔Й╔Б║╪╔хCUPS ╔╣║╪╔п"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "╔Й╔Б║╪╔х lpd╔╣║╪╔п"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔в╔Й╔С╔©║й╔╫╔╠╔ц╔х║к"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/╔╕╔ё╔С╔и╔╕╔╨ 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "╔в╔Й╔С╔©╔г╔п╔╓╔╧╓нURI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "╔г╔п╔╓╔╧╓н╦║╫пцФ╓г╓╧║д║д"
@@ -4097,13 +5776,13 @@ msgstr "╔щ║╪╔х╓н╔ф╔╧╔х"
#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
-msgstr "\"%s\"╔в╔Й╔С╔©╓╛║╒╪║╓н╓х╓Ё╓М╓г╦╚╓д╓╚╓Й╓ч╓╥╓©"
+msgstr "║ж%s║в╔в╔Й╔С╔©╓╛║╒╪║╓н╓х╓Ё╓М╓г╦╚╓д╓╚╓Й╓ч╓╥╓©"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "╔М║╪╔╚╔К╔в╔Й╔С╔©╔г╔п╔╓╔╧"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4111,36 +5790,36 @@ msgstr ""
"╔в╔Й╔С╔©╓╛╓д╓й╓╛╓ц╓ф╓╓╓К╔г╔п╔╓╔╧╓о╡©╓г╓╧╓╚\n"
"(цМ╟у /dev/lp0 ╓о LPT1: ╓к╓й╓Й╓ч╓╧)║╘\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "╔в╔Й╔С╔©╔г╔п╔╓╔╧"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "╔Й╔Б║╪╔хlpd╔в╔Й╔С╔©╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"╔Й╔Б║╪╔х╓н lpd ╓н ╔в╔Й╔С╔х╔╜╔Е║╪╓Р╩х╓╕╓к╓о║╓╔в╔Й╔С╔©╔╣║╪╔п╓н╔ш╔╧╔х╔м║╪╔Ю╓х\n"
+"╔Й╔Б║╪╔х╓н lpd ╓н ╔в╔Й╔С╔х╔╜╔Е║╪╓Р╩х╓╕╓к╓о║╓╔в╔Й╔С╔©╔╣║╪╔п╓н╔ш╔╧╔хл╬╓х\n"
"╔╦╔Г╔ж╓╛цж╓╚╓Л╓К╔╣║╪╔п╬Е╓н╔╜╔Е║╪╓нл╬а╟╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "╔Й╔Б║╪╔х╔ш╔╧╔хл╬"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "╔Й╔Б║╪╔х╔╜╔Е║╪"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (╔╕╔ё╔С╔и╔╕╔╨ 9x/NT) ╔в╔Й╔С╔©╓н╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4152,27 +5831,27 @@ msgstr ""
"б©й╛╔в╔Й╔С╔х╔╣║╪╔п╓н IP ╔╒╔и╔Л╔╧║╓╔╒╔╞╔╩╔╧╓╥╓©╓╓╔в╔Й╔С╔©╓н╤╕м╜л╬║╓\n"
"е╛юз╓й╔Ф║╪╔╤л╬║╓╔я╔╧╔О║╪╔и╓╙╓Х╓с╔О║╪╔╞╔╟╔К║╪╔в╓н╬ПйС╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё"
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB╔╣║╪╔п╔ш╔╧╔х"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB╔╣║╪╔п╓нIP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "╔╥╔╖╔╒л╬"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "╔О║╪╔╞╔╟╔К║╪╔в"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Netware ╔в╔Й╔С╔©╓н╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4181,133 +5860,157 @@ msgid ""
msgstr ""
"Netware ╔в╔Й╔С╔©╓Р╩х╓╕╓к╓о║╓NetWare ╔ш╔╧╔хл╬(цМ║╙TCP/IP "
"╔ш╔╧╔хл╬╓х╓о╟Ц╓╕║╙)╓х║╓\n"
-"╔╒╔╞╔╩╔╧╓╥╓©╓╓╔в╔Й╔С╔©╓н╔в╔Й╔С╔х╔╜╔Е║╪л╬║╓е╛юз╓й╔Ф║╪╔╤л╬╓╙╓Х╓с╔я╔╧╔О║╪╔и╓╛\n"
-"и╛мв╓к╓й╓Й╓ч╓╧║ё"
+"╔╒╔╞╔╩╔╧╓╥╓©╓╓╔в╔Й╔С╔©╓н╔в╔Й╔С╔х╔╜╔Е║╪л╬║╓е╛юз╓й╔Ф║╪╔╤л╬╓╙╓Х╓с\n"
+"╔я╔╧╔О║╪╔и╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё"
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "╔в╔Й╔С╔©╔╣║╪╔п"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "╟У╨Ч╔╜╔Е║╪╓нл╬а╟"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "╔╫╔╠╔ц╔х╔в╔Й╔С╔©╓н╔╙╔в╔╥╔Г╔С"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"╔╫╔╠╔ц╔х╔в╔Й╔С╔©╓г╟У╨Ч╓╧╓К╓й╓И║╒╔в╔Й╔С╔©╓н╔ш╔╧╔хл╬╓х║╒╬Л╧Г╓к\n"
+"╓Х╓ц╓ф╓о╔щ║╪╔ххж╧Ф╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё"
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "╔в╔Й╔С╔©╔ш╔╧╔хл╬"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "╔щ║╪╔х"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "CUPS ╓г╔в╔Й╔С╔©╓Р╔╒╔╞╔╩╔╧╓╧╓К╓й╓И║╒д╬юэ URI ╓Р╩ьдЙ╓г╓╜╓ч╓╧║ё"
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "╓и╓С╓й╔в╔Й╔С╔©╓Р╩х╓ц╓ф╓╓╓ч╓╧╓╚║╘"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "╟У╨Ч╓Р╩Н╓╥╓ч╓╧╓╚║╘"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "╔ф╔╧╔х╔з║╪╔╦╟У╨ЧцФ║д║д"
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"╔ф╔╧╔х╔з║╪╔╦╓Р╔в╔Й╔С╔©╔г║╪╔Б╔С╓каВ╓Й╓ч╓╥╓©║ё\n"
+"╔в╔Й╔С╔©╓╛ф╟╓╜╫п╓╧╓ч╓г║╒╓а╓Г╓ц╓х╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧║ё\n"
+"╟У╨Ч╓н╔╧╔ф║╪╔©╔╧║╖\n"
+"%s\n"
+"\n"
+"╓а╓Ц╓С╓х╫пно╓╣╓Л╓ч╓╥╓©╓╚║╘"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"╔ф╔╧╔х╔з║╪╔╦╓Р╔в╔Й╔С╔©╔г║╪╔Б╔С╓каВ╓Й╓ч╓╥╓©║ё\n"
+"╔в╔Й╔С╔©╓╛ф╟╓╜╫п╓╧╓ч╓г║╒╓а╓Г╓ц╓х╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧║ё\n"
+"╓а╓Ц╓С╓х╫пно╓╣╓Л╓ч╓╥╓©╓╚║╘"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "ASCII╔ф╔╧╔х╔з║╪╔╦╓Р╟У╨Ч╓╥╓ф╓ъ╓К"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "PostScript╔ф╔╧╔х╔з║╪╔╦╓Р╟У╨Ч╓╥╓ф╓ъ╓К"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "╔ф╔╧╔х╔з║╪╔╦╓Рн╬йЩ╓х╓Б╟У╨Ч╓╥╓ф╓ъ╓К"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "╔в╔Й╔С╔©╓нюъдЙ"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "╓и╓С╓й╔в╔Й╔С╔©╓Р╩х╓ц╓ф╓╓╓ч╓╧╓╚║╘"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "╔в╔Й╔С╔©╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "мя╩Ф╔╣╔╓╔╨"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "╔╦╔Г╔ж╓н╦Е╓г╔з║╪╔╦гс╫п╓╥╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint╔и╔И╔╓╔п╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "©╖©╪еы╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "╔ф╔╜╔╧╔х╓РPostScript╓г╟У╨Ч╓╥╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "╨г╦Е╓н╔з║╪╔╦╓╚╓И╟У╨Ч"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "й╦╩З╓н╔╦╔Ц╔╝║╪╓Р╓й╓╙╓╥╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "╫пно╔з║╪╔╦╓╒╓©╓Й╓н╔з║╪╔╦©Т"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "╨╦╠╕╓нм╬гР╓Р╔щ╔╓╔С╔х©Т║й1/72╔╓╔С╔а║к╓г╩ьдЙ"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "╬Е╡╪╓нм╬гР╓Р╔щ╔╓╔С╔х©Т║й1/72╔╓╔С╔а║к╓г╩ьдЙ"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "╓╫╓нб╬ GhostScript╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "╓╫╓нб╬╔ф╔╜╔╧╔х╔╙╔в╔╥╔Г╔С"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "╟У╨Ч╓Р╩Н╓╥╓ч╓╧╓╚║╘"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "╔ф╔╧╔х╔з║╪╔╦╟У╨ЧцФ║д║д"
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"╔ф╔╧╔х╔з║╪╔╦╓Р╔в╔Й╔С╔©╔г║╪╔Б╔С╓каВ╓Й╓ч╓╥╓©║ё\n"
-"╔в╔Й╔С╔©╓╛ф╟╓╜╫п╓╧╓ч╓г║╒╓а╓Г╓ц╓х╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧║ё\n"
-"╟У╨Ч╓н╔╧╔ф║╪╔©╔╧║╖\n"
-"%s\n"
-"\n"
-"╓а╓Ц╓С╓х╫пно╓╣╓Л╓ч╓╥╓©╓╚║╘"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"╔ф╔╧╔х╔з║╪╔╦╓Р╔в╔Й╔С╔©╔г║╪╔Б╔С╓каВ╓Й╓ч╓╥╓©║ё\n"
-"╔в╔Й╔С╔©╓╛ф╟╓╜╫п╓╧╓ч╓г║╒╓а╓Г╓ц╓х╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧║ё\n"
-"╓а╓Ц╓С╓х╫пно╓╣╓Л╓ч╓╥╓©╓╚║╘"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "╔в╔Й╔С╔©"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "╔в╔Й╔С╔©╓нюъдЙ╓Р╓╥╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4315,19 +6018,66 @@ msgstr ""
"╟й╡╪╓н╟У╨Ч╔╜╔Е║╪╓╛╓╒╓Й╓ч╓╧║ё\n"
"╟У╨Ч╔╜╔Е║╪╓Рди╡ц║╕йя╧╧╓г╓╜╓ч╓╧║ё"
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS Ё╚╩о"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "CUPS ╔и╔И╔╓╔п╔г║╪╔©╔ы║╪╔╧╓Рфи╓С╓г╓╓╓ч╓╧..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "╔в╔Й╔С╔©╓нюэбЁ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "╔в╔Й╔С╔©╓о╓и╓╕╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "╔Й╔Б║╪╔х╔в╔Й╔С╔©╓нюэбЁ╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"╔Й╔Б║╪╔х CUPS ╔╣║╪╔п╓н╬Л╧Г║╒╓Ё╓Ё╓г╓о╔в╔Й╔С╔©╓нюъдЙ╓оитмв╓г╓╧║ё\n"
+"╔в╔Й╔С╔©╓о╪╚ф╟╦║╫п╓╣╓Л╓ч╓╧║ё╓Б╓╥©╝мя╓г╓╜╓й╓╓╓х╩в╓ц╓©╓И║╒\n"
+"║ж╔Й╔Б║╪╔хCUPS ╔╣║╪╔п║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё"
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "╔╜╔Е║╪╓н╨О╫Э"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"╔в╔Й╔С╔©╓о╓╫╓Л╓╬╓Лл╬а╟╓╛мв╓Й╓ч╓╧║й╓©╓х╓╗╓пlp)║ё\n"
+"╓ш╓╚╓к╓Б║╒╔в╔Й╔С╔©╓н╪ОнЮ╓Д╔ч╔╥╔С╓ь╓н╓д╓й╓╛╓Й╓╚╓©╓й╓и╓н╔я╔И╔А║╪╔©╓╛\n"
+"юъдЙ╓г╓╜╓ч╓╧║ё╓Ё╓н╔в╔Й╔С╔©╓о╓й╓С╓х╓╓╓╕л╬а╟╓к╓╥╓ч╓╧╓╚║╘ "
+"╓╫╓╥╓ф╔ч╔╥╔С╓х╓о╓и╓╕╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "╔в╔Й╔С╔©╓нл╬а╟"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "╔в╔Й╔С╔©╓нюБлю"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "╔в╔Й╔С╔©╓н╬Л╫Й"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4339,45 +6089,45 @@ msgstr ""
"╩х╓╕л╬а╟╓х╔г╔ё╔Л╔╞╔х╔Й╓о╡©╓к╓╥╓ч╓╧╓╚║╘\n"
"╓ч╓©╔в╔Й╔С╔©╓о╓и╓╕юэбЁ╓╣╓Л╓ф╓╓╓ч╓╧╓╚║╘"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "╔╜╔Е║╪╓нл╬а╟║╖"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "╔╧╔в║╪╔К╓н╔г╔ё╔Л╔╞╔х╔Й║╖"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "╔в╔Й╔С╔©╓нюэбЁйЩ╪╟"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "╔у╔╘║╪╔ч╔ц╔х╨я╓ъ╓н RAID md%d ╓к╓о╔я║╪╔ф╔ё╔╥╔Г╔С╓Рди╡ц╓г╓╜╓ч╓╩╓С"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "$file ╔у╔║╔╓╔К╓╛╫Я╓╜╧Ч╓А╓ч╓╩╓С"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid ╓к╪╨гт"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ╓к╪╨гт (raidtools ╓╛фЧ╓ц╓ф╓й╓╓╓н╓╚╓Б?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ╔Л╔ы╔К %d ╓н╓©╓А╓к╓о╔я║╪╔ф╔ё╔╥╔Г╔С╓╛итб╜╓г╓╧\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron ╓о╪Ч╢Эе╙╓й╔Ё╔ч╔С╔и╔╧╔╠╔╦╔Е║╪╔И╓г╓╧║ё"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4385,7 +6135,7 @@ msgstr ""
"apmd ╓о╔п╔ц╔ф╔Й║╪╓н╬Убж╓Рд╢╓ы╓ф╓╫╓Л╓Рsyslog╥пмЁ╓г╣╜о©╓╥╓ч╓╧║ё\n"
"еецс╓╛╓й╓╞╓й╓ц╓©╓х╓╜╓к╔ч╔╥╔С╓Р╔╥╔Ц╔ц╔х╔ю╔╕╔С╓╧╓К╓н╓к╓Б╩х╓╗╓ч╓╧║ё"
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4393,7 +6143,7 @@ msgstr ""
"at╔Ё╔ч╔С╔и╓г╔╧╔╠╔╦╔Е║╪╔К╓╣╓Л╓©╔Ё╔ч╔С╔и╓Р║╒at╪б╧т╩Ч╓к╩ьдЙ╓╥╓©╩Ч╢ж╓к\n"
"╪б╧т╓╥╓ф║╒й©╤яиИ╡ы╓╛дЦ╓╓╓х╓╜╓к╔п╔ц╔а╔Ё╔ч╔С╔и╓Р╪б╧т╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4404,7 +6154,7 @@ msgstr ""
"╪б╧т╓╥╓ч╓╧║ёvixie cron╓ои╦╫Ю╓нUNIX cron╓к╧Беы╓й╔╩╔╜╔Е╔Й╔ф╔ё╓Д\n"
"╤╞но╓йюъдЙ╔╙╔в╔╥╔Г╔С╓й╓и╓н╣║г╫╓Рди╡ц╓╥╓ф╓╓╓ч╓╧║ё"
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4415,13 +6165,13 @@ msgstr ""
"╩х╓╗╓К╓Х╓╕╓к╓╥╓ч╓╧║ё╔ч╔╕╔╧╓к╓Х╓К╔Ё╔С╔╫║╪╔К╓г╓н╔╚╔ц╔х║╕╔з║╪╔╧╔х\n"
"╓Д║╒╔щ╔ц╔в╔╒╔ц╔в╔А╔к╔Е║╪╓Б╩х╓╗╓ч╓╧║ё"
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
-msgstr "Apache╓оWorld Wide Web╔╣║╪╔п╓г╓╧║ёHTML ╔у╔║╔╓╔К╓ДCGI╓н╦ЬЁ╚╓к╩х╓╓╓ч╓╧║ё"
+msgstr "Apache╓оWorld Wide Web╔╣║╪╔п╓г║╒HTML ╔у╔║╔╓╔К╓ДCGI╓н╦ЬЁ╚╓к╩х╓╓╓ч╓╧║ё"
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4435,7 +6185,7 @@ msgstr ""
"rsh║╒rlogin╓й╓и╓н╔╣║╪╔с╔╧Ё╚╩о╓Рц╢еЖ╓╥╓ч╓╧║ёinetd╓Рл╣╦З╓к╓╧╓К╓х║╒\n"
"╓Ё╓╕╓╥╓©Ёф╪О╔╣║╪╔с╔╧╓╧╓ы╓ф╓╛л╣╦З╓к╓й╓Й╓ч╓╧║ё"
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4445,7 +6195,7 @@ msgstr ""
"╔М║╪╔и╓╥╓ч╓╧║ё╓Ё╓Л╓оkbdconfig╔Ф║╪╔ф╔ё╔Й╔ф╔ё╓Р╩х╓ц╓фюъдЙ╓╥╓ч╓╧║ёдл╬О╓о\n"
"м╜╦З╓к╓╥╓ф╓╙╓╜╓ч╓╥╓Г╓╕║ё"
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4453,7 +6203,7 @@ msgstr ""
"lpd ╓о╔в╔Й╔С╔©╔г║╪╔Б╔С╓г║╒lpr╓нф╟╨Н╓ки╛мв╓г╓╧║ё╢Пкэе╙╓к\n"
"╓о╔в╔Й╔С╔©╓к╟У╨Ч╔╦╔Г╔ж╓Р©╤╓Йй╛╓╠╓К╔╣║╪╔п╓г╓╧║ё"
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4461,7 +6211,7 @@ msgstr ""
"named (BIND) ╓о║╒IP╔╒╔и╔Л╔╧╓х╔ш╔╧╔хл╬╓Р╥К╓с╓д╓╠╓К╓©╓А╓н╔и╔А╔╓╔Сл╬\n"
"╔╣║╪╔п║йDomain Name Server, DNS) ╓г╓╧║ё"
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4469,7 +6219,7 @@ msgstr ""
"╔м╔ц╔х╔О║╪╔╞╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю (NFS), SMB (LanManager/Windows),\n"
"NCP (NetWare) ╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓Р╓╧╓ы╓ф╔ч╔╕╔С╔х║╕╔╒╔С╔ч╔╕╔С╔х╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4477,7 +6227,7 @@ msgstr ""
"╣╞ф╟╩Ч╓км╜╦З╓к╓╧╓КюъдЙ╓н╔м╔ц╔х╔О║╪╔╞╔╓╔С╔©║╪╔у╔╖║╪╔╧╓Р╓╧╓ы╓ф║╒\n"
"м╜╦З║╕л╣╦З╓к╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4487,7 +6237,7 @@ msgstr ""
"╓г╓╧║ё╓Ё╓н╔╣║╪╔с╔╧╓о NFS ╔╣║╪╔п╣║г╫╓РдС╤║╓╥╓ч╓╧║ёюъдЙ╓к╓о/etc/exports \n"
"╔у╔║╔╓╔К╓Р╩х╓╓╓ч╓╧║ё"
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4495,7 +6245,7 @@ msgstr ""
"NFS ╓оTCP/IP╔м╔ц╔х╔О║╪╔╞╬Е╓г╔у╔║╔╓╔К╤╕м╜╓Р╓╧╓К╓н╓к╓Х╓╞╩х╓╕╔в╔М╔х╔Ё╔К\n"
"╓г╓╧║ё╓Ё╓н╔╣║╪╔с╔╧╓о NFS ╔у╔║╔╓╔К╔М╔ц╔╞╣║г╫╓РдС╤║╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4506,7 +6256,7 @@ msgstr ""
"╓й╓и╓нPC╔╚║╪╔и╓Р╩х╓╗╓К╓Х╓╕╓к╓╧╓К╓©╓А╓н╓Б╓н╓г╓╧║ёюъдЙ╓╧╓К╓ч╓г\n"
"╓о╣╞ф╟╓╥╓й╓╓╓н╓г║╒и╛мв╓й╓╓╔ч╔╥╔С╓кфЧ╓Л╓ф╓╒╓ц╓ф╓Б╟ба╢╓г╓╧║ё"
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4517,7 +6267,7 @@ msgstr ""
"╩хмя╓╣╓Л╓ч╓╧║ёRPC╣║╧╫╓Р╩х╓╕╔в╔М╔х╔Ё╔К╓н╔╣║╪╔п╓х╓й╓К╔ч╔╥╔С╓г╓о║╒╓Ё╓н\n"
"portmap ╔╣║╪╔п╓╛ф╟╓╓╓ф╓╓╓Ки╛мв╓╛╓╒╓Й╓ч╓╧║ё"
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4525,7 +6275,7 @@ msgstr ""
"Postfix ╓о╔А║╪╔Ке╬аВ╔╗║╪╔╦╔╖╔С╔х╓г╓╧ (MTA) ╓г╓╧║ё╓Ё╓Л╓о║╒╔ч╔╥╔С╢ж╓г\n"
"╔А║╪╔К╓Р╓Д╓Й╓х╓Й╓╧╓К╔в╔М╔╟╔И╔Ю╓г╓╧║ё"
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4533,7 +6283,7 @@ msgstr ""
"мП©Тх╞ю╦╓н╪а╓Р╬Е╓╡╓К╓©╓А╓к║╒╔╥╔╧╔ф╔Ю╓н╔╗╔С╔х╔М╔т║╪╔в║╪╔К╓Рйщб╦║╕\n"
"иЭЁХ╓╣╓╩╓ч╓╧║ё"
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4543,7 +6293,7 @@ msgstr ""
"╡дг╫╓к╓╥╓ч╓╧║ёRIP ╓о╬╝╣╛ло╔м╔ц╔х╔О║╪╔╞╓г╓ойьмЬ╓г╓Х╓╞╩х╓О╓Л╓ч╓╧╓╛║╒\n"
"╔м╔ц╔х╔О║╪╔╞╓╛йё╩╗╓к╓й╓ц╓ф╓╞╓К╓х║╒╓Ё╓Л╓г╓оит╫╫й╛╓г╓╧║ё"
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4551,7 +6301,7 @@ msgstr ""
"rstat╔в╔М╔х╔Ё╔К╓Р╩х╓╕╓х║╒╔м╔ц╔х╔О║╪╔╞╬Е╓н╔Ф║╪╔╤╓╛║╒╓╫╓н╔м╔ц╔х╔О║╪╔╞\n"
"╓кюэбЁ╓╥╓©╔ч╔╥╔С╓н╓╧╓ы╓ф╓к╓д╓╓╓ф║╒ю╜г╫╩ьи╦╓Рфю╓И╓Л╓К╓Х╓╕╓к╓й╓Й╓ч╓╧║ё"
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4559,7 +6309,7 @@ msgstr ""
"rusers╔в╔М╔х╔Ё╔К╓г╓о║╒╔м╔ц╔х╔О║╪╔╞╬Е╓н╔Ф║╪╔╤╓╛║╒╠ЧеЗ╓╧╓К╓ш╓╚╓н╔ч╔╥╔С\n"
"╓к╔М╔╟╔╓╔С╓╥╓ф╓╓╓К©м╓©╓а╓Р╦╚╓К╓Ё╓х╓╛╓г╓╜╓ч╓╧║ё"
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4567,7 +6317,7 @@ msgstr ""
"rwho ╔г║╪╔Б╔С╓╛аЖ╓ц╓ф╓╓╓К╔ч╔╥╔С╓г╓о║╒╓╫╓н╔ч╔╥╔С╓к╔М╔╟╔╓╔СцФ╓н\n"
"╔Ф║╪╔╤╟ЛмВ╓Рrwho╔в╔М╔х╔Ё╔К╥пмЁ╓г╦╚╓И╓Л╓ч╓╧ (finger╓к╩В╓ф╓╓╓ч╓╧)║ё"
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4575,52 +6325,223 @@ msgstr ""
"Syslog ╓о║╒Ёф╪О╓н╔г║╪╔Б╔С╓╛╓╓╓М╓С╓й╔М╔╟╔у╔║╔╓╔К╓к╔А╔ц╔╩║╪╔╦╓Р╣╜о©\n"
"╓╧╓К╓х╓╜╓к╩х╓╓╓ч╓╧║ё╓╨╓ц╓х╣╞ф╟╓╥╓ф╓╙╓╞╓ш╓╕╓╛╓╓╓╓╓г╓╥╓Г╓╕║ё"
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "╓Ё╓н╣╞ф╟╔╧╔╞╔Й╔в╔х╓оUSB╔ч╔╕╔╧мя╓н╔Б╔╦╔Е║╪╔К╓Р╔М║╪╔и╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "╣╞ф╟╩Ч/╔╥╔Ц╔ц╔х╔ю╔╕╔С╩Ч╓к║╒X╔у╔╘╔С╔х╔╣║╪╔п╓РЁ╚╩о/дД╩ъ╓╥╓ч╓╧║ё"
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "╣╞ф╟╩Ч╓к╪╚ф╟е╙╓к╓©╓а╓╒╓╡╓К╔╣║╪╔с╔╧╓Ра╙╓С╓г╓╞╓ю╓╣╓╓"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"SILO operating system chooser-he youkosou!\n"
-"\n"
-"<TAB>: Ichiran Hyouji\n"
-"\n"
-"Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
-"\n"
+"╔я║╪╔ф╔ё╔╥╔Г╔С╔ф║╪╔ж╔К╓╛фи╓А╓ч╓╩╓С║╓╡У╓Л╓ф╓╓╓К╓Х╓╕╓г╓╧:(\n"
+"итю╣╓й╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╤УгР╓гкД╓А╓Х╓╕╓х╓╥╓ч╓╧"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "LILO/GRUB ╓нюъдЙ"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "╣╞ф╟╔г╔ё╔╧╔╞╨Ню╝"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "╔у╔М╔ц╔т║╪╓Р╔у╔╘║╪╔ч╔ц╔х"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "а╙бР"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO ╓н╔╓╔С╔╧╔х║╪╔К╓к╪╨гт╓╥╓ч╓╥╓©║ё╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╤╕м╜╓о╦╫╨ъм╜╦З"
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╤╕м╜╓н╔╩╔ц╔х╔╒╔ц╔в╓о╓╧╓г╓к╢╟н╩║ё\n"
+"м╜╦З╓к╓й╓ц╓ф╓╓╓ч╓╧║ё\n"
+"\n"
+"╓и╓╕╓╥╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr "л╣╦З╓к"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr "л╣╩К"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+msgid "reconfigure"
+msgstr "╨фюъдЙ"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╤╕м╜╓о╦╫╨ъл╣╦З╓г╓╧"
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╤╕м╜╓н╔╩╔ц╔х╔╒╔ц╔в╓о╓╧╓г╓к╢╟н╩║ё\n"
+"л╣╦З╓к╓й╓ц╓ф╓╓╓ч╓╧║ё\n"
+"\n"
+"╓и╓╕╓╥╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr "м╜╦З╓к"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "юъдЙ╔у╔║╔╓╔К╓нфБмф╓╛╡Р╪А╓г╓╜╓й╓╓║ё"
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "╔в╔Й╔С╔©╓н╤╕м╜юэбЁ"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"╓Ё╓н╔ч╔╥╔С╓н╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓Р╤╕м╜╓╧╓К╓Х╓╕╓кюъдЙ╓г╓╜╓ч╓╧║ё\n"
+"\n"
+"цМ║╖╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞ (LAN) "
+"╓Р╓д╓╞╓К╓к╓о║╒юЛмя╓н╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓╛мв╓Й╓ч╓╧║ё\n"
+"\n"
+"╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓н╤╕м╜╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr "╔Б╔╦╔Е║╪╔К╓Р╩хмя"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓╛╓╒╓Й╓ч╓╩╓С║╙"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"╔╥╔╧╔ф╔Ю╬Е╓к╔╓║╪╔╣╔м╔ц╔х╔╒╔ю╔в╔©╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С║ё╔о║╪╔и╔╕╔╖╔╒юъдЙ╔д║╪╔К╓Р╪б╧"
+"т╓╣╓╩╓ф╓╞╓ю╓╣╓╓║ё"
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"╔╥╔╧╔ф╔Ю╓к╓оюъдЙ╓╣╓Л╓©╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓╛╓р╓х╓д╓╥╓╚╓╒╓Й╓ч╓╩╓С║╖\n"
+"\n"
+"$interface\n"
+"\n"
+"╓Ё╓н╔╒╔ю╔в╔©╓г LAN ╓кюэбЁ╓╥╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞╓к╓д╓й╓╛╓К╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓Р\n"
+"а╙╓С╓г╓╞╓ю╓╣╓╓║ё"
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓о╓Б╓╕юъдЙ╓╛╓╧╓С╓г╓╓╓ч╓╧║ё\n"
+"юъдЙ╓Р╓Д╓Й╓й╓╙╓╥╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "╦╫╨ъ╓н$_╓нюъдЙ╓г╓оLAN╔╒╔и╔Л╔╧╓╛╬вфм╓╧╓К╓╚╓Б╓╥╓Л╓ч╓╩╓С║╙\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "╔у╔║╔╓╔╒╔╕╔╘║╪╔К╓нюъдЙ╓Р╦║╫п║╙"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"╥ы╧П║╙╔у╔║╔╓╔Д╔╕╔╘║╪╔К╓нюъдЙ╓Р╦║╫п║ё╔╓╔С╔╧╔х║╪╔К╦Е╓к║╒╪Йф╟╓г╪Йд╬╓╥╓╛мв╓К╓╚╓Б╓"
+"╥╓Л╓ч╓╩╓С║ёбЁ╓╠╓ч╓╧╓╚║╘"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "╔╧╔╞╔Й╔в╔х╓нюъдЙ║╒╔╫╔у╔х╔╕╔╖╔╒╓н╔╓╔С╔╧╔х║╪╔К║╒╔╣║╪╔п╓н╣╞ф╟..."
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring..."
+msgstr "юъдЙцФ..."
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "ipchains RPM ╓Р urpmi ╓г╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "dhcp RPM ╓Р urpmi ╓г╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "linuxconf RPM ╓Р urpmi ╓г╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "bind RPM ╓Р urpmi ╓г╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "caching-nameserver RPM ╓Р urpmi ╓г╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С║ё"
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "╓╙╓А╓г╓х╓╕╓╢╓╤╓╓╓ч╓╧║╙"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+"юъдЙ╓╛╓╧╓ы╓ф╫╙╓О╓Й╓ч╓╥╓©║ё\n"
+"╓Ё╓Л╓г╪╚ф╟╔м╔ц╔х╔О║╪╔╞юъдЙ║йdhcp) ╓Р╩х╓ц╓ф║╒LAN "
+"╬Е╓нб╬╓н╔ч╔╥╔С╓х╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓Р╤╕м╜╓г╓╜╓ч╓╧║ё"
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4682,23 +6603,31 @@ msgstr "╔╩╔╜╔Е╔Й╔ф╔ё╔Л╔ы╔К╓нюъдЙцФ"
msgid "Choose the tool you want to use"
msgstr "╩хмя╓╧╓К╔д║╪╔К╓Ра╙╓С╓г╡╪╓╣╓╓"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "╔╜║╪╔э║╪╔и╔Л╔╓╔╒╔╕╔х╓о╡©╓г╓╧╓╚║╘"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "CD-ROM╓РфЧ╓Лбь╓╗╓ф╓╞╓ю╓╣╓╓"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "╔ч╔╕╔╧╓н╥©╓о╓й╓С╓г╓╧╓╚║╘"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"╔╓╔С╔╧╔х║╪╔КCD ╓Р╔и╔И╔╓╔ж╓к╓╓╓Л╓ф║╒ Ok ╓Р╡║╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+"CD╓╛╓й╓╠╓Л╓п║╒Cancel ╓Р╡║╓╥╓ф╔И╔╓╔ж╔╒╔ц╔в╔╟╔Л║╪╔и╓Р╡СхР╓╥╓ф╡╪╓╣╓╓║ё"
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr "╔И╔╓╔ж╓╒╓ц╓в╓ц╓╟╓Л║╪╓и╓РЁ╚╩о╓г╓╜╓ч╓╩╓С!!!\n"
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "serial_usb╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "©©цФ╔э╔©╔С╓Р╔╗╔ъ╔Е╔Л║╪╔х╓╥╓ч╓╧╓╚║╘"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "╔ч╔╕╔╧╓о╓и╓н╔╥╔Й╔╒╔К╔щ║╪╔х╓к╓д╓й╓╛╓ц╓ф╓╓╓ч╓╧╓╚║╘"
@@ -4911,6 +6840,1245 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦║╨ВцФ"
msgid "Finding leaves takes some time"
msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "╔╟╔И╔у╔ё╔╚╔К╓й╔г╔╧╔╞╔х╔ц╔в╓Р╓Б╓ц╓х"
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr "K ╔г╔╧╔╞╔х╔ц╔в╢д╤╜║ё╢Пкэе╙╓й╔╟╔И╔у╔ё╔╧╔╞╢д╤╜╓к║╒╢ьо╒╔д║╪╔К╣м╓А╧Г╓О╓╩"
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr "╦д©м╬ПйС╢имЩ"
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr "CD ╓Р╓д╓╞╓ц╓ф╬ф╓╞╔д║╪╔К"
+
+msgid "Internet Tools"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х╔д║╪╔К"
+
+msgid "Internet"
+msgstr "╔╓╔С╔©║╪╔м╔ц╔х"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr "╦д©м╓н╨БлЁ╢имЩ"
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm ╓й╓и"
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr "The Gimp╓й╓и╓н╡ХаЭ╫ХмЩ╔╫╔у╔х"
+
+msgid "Office"
+msgstr "╔╙╔у╔ё╔╧╢ьо╒"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr "╔г║╪╔©╔ы║╪╔╧╔╞╔И╔╓╔╒╔С╔х╓х╔╣║╪╔п (mysql, postgresql)"
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Palm Pilot ╓Д Visorмя╔д║╪╔К"
+
+msgid "Multimedia - Graphics"
+msgstr "╔ч╔К╔а╔А╔г╔ё╔╒║║╡ХаЭ"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr "╔с╔г╔╙╔в╔Л║╪╔Д╓Дйт╫╦╔╫╔у╔х"
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "╦ДЁз╔╫╔у╔х║╖╔ф╔Л╔с╔╡║╪╔Ю║╒╔э║╪╔и╔╡║╪╔Ю║╒юОн╛╔╡║╪╔Ю╓й╓и"
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"╔╙╔у╔ё╔╧╥о╔╫╔у╔х: ╔О║╪╔в╔М (kword, abiword), и╫╥в╩╩ (kspread, gnumeric), pdf "
+"╔с╔Е║╪╔╒╓й╓и"
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"╔А║╪╔К╓Д╔к╔Е║╪╔╧╓наВ╪У©╝мя╔д║╪╔К (pine, mutt, tin..) ╓х║╒Web╔ж╔И╔╕╔╨мя╔д║╪╔К"
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "╔╙║╪╔г╔ё╔╙╢ьо╒╔д║╪╔К║╖mp3, midi, ╔ъ╔╜╔╣║╪╓й╓и"
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+"xchat, licq, gaim╓й╓и╓н╔а╔Ц╔ц╔хмя╔╫╔у╔х (IRC ╓Д╔╓╔С╔╧╔©╔С╔х╔А╔ц╔╩║╪╔╦) "
+"╓х╔у╔║╔╓╔Ке╬аВ╔д║╪╔К"
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "Linux ╓Д╔у╔Й║╪╔╫╔у╔х╢ьо╒╓нкэ╓Д╔о╔╕╔д║╪й╦╫Я"
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm╓й╓и"
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"╩х╓╓╓Д╓╧╓╓╔╒╔в╔Й╔╠║╪╔╥╔Г╔С╓Д╔г╔╧╔╞╔х╔ц╔в╔д║╪╔К╓Р╩Щ╓д║╒╔╟╔И╔у╔ё╔╞╔╧╓н╔Ф║╪╔╤╢д╤"
+"╜"
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "╔А║╪╔К║╒╔к╔Е║╪╔╧║╒web, ╔у╔║╔╓╔Ке╬аВ║╒╔а╔Ц╔ц╔х╓й╓и╓н╔д║╪╔К"
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "╔ч╔К╔а╔А╔г╔ё╔╒"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr "╔╣╔╕╔С╔и╓Д╔с╔г╔╙╓н╨фю╦йт╫╦╔╫╔у╔х"
+
+msgid "Multimedia"
+msgstr "╔ч╔К╔а╔А╔г╔ё╔╒"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr "╓╫╓нб╬╔╟╔И╔у╔ё╔ц╔╞╔г╔╧╔╞╔х╔ц╔в"
+
+msgid "Multimedia - Sound"
+msgstr "╔ч╔К╔а╔А╔г╔ё╔╒║║╔╣╔╕╔С╔и"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "╔и╔╜╔Е╔А╔С╔ф║╪╔╥╔Г╔С"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "gnucash╓й╓и╓н╡х╥в╢имЩ╔╫╔у╔х"
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr "╡ХаЭаЮ╨Н"
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr "╔╡║╪╔Ю"
+
+msgid "Multimedia - CD Burning"
+msgstr "╔ч╔К╔а╔А╔г╔ё╔╒║║CD ╓Р╬ф╓╞"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr "дл©╝╢ьо╒"
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr "╔г║╪╔©╔ы║╪╔╧"
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "╔╓╔С╔╧╔х║╪╔К╓╧╓К╔╣╔╓╔╨╓Ра╙╓С╓г╡╪╓╣╓╓"
+
+#~ msgid "Total size: "
+#~ msgstr "╧Г╥в╔╣╔╓╔╨: "
+
+#~ msgid ""
+#~ "The system is now connected to Internet! Congratulation.\n"
+#~ "Feel free to launch draknet at any time to setup your connection.\n"
+#~ msgstr ""
+#~ "╔ч╔╥╔С╓ол╣╩Ж╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ╓╣╓Л╓ч╓╥╓©║ё╓╙╓А╓г╓х╓╕║╙\n"
+#~ "юэбЁюъдЙ╓к╓о║╒╓╓╓д╓г╓Б draknet ╓Р╣╞ф╟╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#~ msgid ""
+#~ "Welcome to %s the operating system chooser!\n"
+#~ "\n"
+#~ msgstr ""
+#~ "%s operating system chooser-he youkosou!\n"
+#~ "\n"
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "LAN ╓Р╨фюъдЙ╓╧╓К"
+
+#~ msgid ""
+#~ " Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read carefully this document. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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 MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+#~ "Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
+#~ "documentation for \n"
+#~ "further details.\n"
+#~ "Some versions of the Software Products may contain components which are not "
+#~ "governed by the GPL \n"
+#~ "License or similar agreements. Each such component is then governed by the "
+#~ "terms and conditions \n"
+#~ "of its own specific license. Please read carefully and comply with such "
+#~ "specific licenses before \n"
+#~ "you install, use or redistribute the said components. Such licenses will in "
+#~ "general prevent the \n"
+#~ "transfer, duplication (except for backup purposes), redistribution, reverse "
+#~ "engineering, \n"
+#~ "de-assembly, \n"
+#~ "de-compilation or modification of the component. Any breach of agreement "
+#~ "will immediately terminate \n"
+#~ "your rights under the specific license. Unless the specific license terms "
+#~ "grant you such rights, \n"
+#~ "you usually cannot install the programs on more than one system, or adapt it "
+#~ "to be used on a \n"
+#~ "network. \n"
+#~ "In doubt, please contact directly the distributor or editor of the "
+#~ "component. Transfer to third \n"
+#~ "parties or copying of such components including the documentation is usually "
+#~ "forbidden.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. 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"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts,\n"
+#~ "by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. All rights \n"
+#~ "are \n"
+#~ "reserved. The duplication is forbidden without prior written consent by "
+#~ "MandrakeSoft S.A.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law. Should the Software Products be defective, "
+#~ "MandrakeSoft S.A. will at its \n"
+#~ "own will either replace the Software Products, or reimburse the paid fee.\n"
+#~ "This limited warranty is void if you fail to comply to the recommendations, "
+#~ "instructions and \n"
+#~ "conditions \n"
+#~ "of use listed in the documentation or license agreements of the Software "
+#~ "Products.\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. will in no circumstances "
+#~ "be liable for any \n"
+#~ "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"
+#~ "judgement, or any other consequential loss) arising out of the use or "
+#~ "inability to use the \n"
+#~ "Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility or "
+#~ "occurance 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, MandrakeSoft 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 \n"
+#~ "damages for loss of business, interruption of business, financial loss, "
+#~ "legal fees and penalties \n"
+#~ "resulting from a court judgement, or any other consequential loss) arising "
+#~ "out of the possession \n"
+#~ "and \n"
+#~ "use of software components or arising out of downloading software "
+#~ "components from one of \n"
+#~ "Linux-Mandrake \n"
+#~ "sites which are prohibited or restricted in some countries by local laws. "
+#~ "This limited liability \n"
+#~ "applies to, but is not restricted to, the strong cryptography components "
+#~ "included in the Software \n"
+#~ "Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by a "
+#~ "court judgement, 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, \n"
+#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
+#~ "France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
+#~ "43, rue d'Aboukir, 75002 Paris - France\n"
+#~ msgstr ""
+#~ " Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read carefully this document. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, 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. 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 MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+#~ "Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
+#~ "documentation for \n"
+#~ "further details.\n"
+#~ "Some versions of the Software Products may contain components which are not "
+#~ "governed by the GPL \n"
+#~ "License or similar agreements. Each such component is then governed by the "
+#~ "terms and conditions \n"
+#~ "of its own specific license. Please read carefully and comply with such "
+#~ "specific licenses before \n"
+#~ "you install, use or redistribute the said components. Such licenses will in "
+#~ "general prevent the \n"
+#~ "transfer, duplication (except for backup purposes), redistribution, reverse "
+#~ "engineering, \n"
+#~ "de-assembly, \n"
+#~ "de-compilation or modification of the component. Any breach of agreement "
+#~ "will immediately terminate \n"
+#~ "your rights under the specific license. Unless the specific license terms "
+#~ "grant you such rights, \n"
+#~ "you usually cannot install the programs on more than one system, or adapt it "
+#~ "to be used on a \n"
+#~ "network. \n"
+#~ "In doubt, please contact directly the distributor or editor of the "
+#~ "component. Transfer to third \n"
+#~ "parties or copying of such components including the documentation is usually "
+#~ "forbidden.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. 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"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts,\n"
+#~ "by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. All rights \n"
+#~ "are \n"
+#~ "reserved. The duplication is forbidden without prior written consent by "
+#~ "MandrakeSoft S.A.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law. Should the Software Products be defective, "
+#~ "MandrakeSoft S.A. will at its \n"
+#~ "own will either replace the Software Products, or reimburse the paid fee.\n"
+#~ "This limited warranty is void if you fail to comply to the recommendations, "
+#~ "instructions and \n"
+#~ "conditions \n"
+#~ "of use listed in the documentation or license agreements of the Software "
+#~ "Products.\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. will in no circumstances "
+#~ "be liable for any \n"
+#~ "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"
+#~ "judgement, or any other consequential loss) arising out of the use or "
+#~ "inability to use the \n"
+#~ "Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility or "
+#~ "occurance 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, MandrakeSoft 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 \n"
+#~ "damages for loss of business, interruption of business, financial loss, "
+#~ "legal fees and penalties \n"
+#~ "resulting from a court judgement, or any other consequential loss) arising "
+#~ "out of the possession \n"
+#~ "and \n"
+#~ "use of software components or arising out of downloading software "
+#~ "components from one of \n"
+#~ "Linux-Mandrake \n"
+#~ "sites which are prohibited or restricted in some countries by local laws. "
+#~ "This limited liability \n"
+#~ "applies to, but is not restricted to, the strong cryptography components "
+#~ "included in the Software \n"
+#~ "Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by a "
+#~ "court judgement, 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, \n"
+#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
+#~ "France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
+#~ "43, rue d'Aboukir, 75002 Paris - France\n"
+
+#~ msgid ""
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "╔Ё╔С╔т╔Е║╪╔©╓о╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓Р╤╕м╜╓╧╓К╓Х╓╕╓кюъдЙ╓г╓╜╓ч╓╧║ё\n"
+#~ "\n"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "юъдЙ╓╛а╢иТ╫╙╓О╓Й╓ч╓╥╓©║ё\n"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "иАдл╓н╔Б╔г╔Ю╓г╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "ISDN╓Р╩х╓ц╓ф╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "DSL(╓ч╓©╓оADSL)╓Р╩х╓ц╓ф╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "╔╠║╪╔ж╔К╓Р╩х╓ц╓ф╔╓╔С╔©║╪╔м╔ц╔х╓кюэбЁ"
+
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "╟ЛдЙ╩Ч╢ж║йиц║кЁХф╟╓╛╓й╓╓╓х║╒╪╚ф╟е╙╓кееоц╓Рюз╓Й╓ч╓╧║ё\n"
+#~ "иц©Т╓Р╩ьдЙ╓╥╓ч╓╥╓Г╓╕ (╪╚ф╟юзцг╓╥╓©╓╞╓й╓╠╓Л╓п╤УгР╓н╓ч╓ч║к"
+
+#~ msgid "Germany"
+#~ msgstr "╔и╔╓╔д"
+
+#~ msgid "Germany (1TR6)"
+#~ msgstr "╔и╔╓╔д (1TR6)"
+
+#~ msgid "What do you wish to do?"
+#~ msgstr "╓и╓╕╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "╔╓╔С╔╧╔х║╪╔К║©╔Л╔╧╔╜╔Е║╪"
+
+#~ msgid "Rescue"
+#~ msgstr "╔Л╔╧╔╜╔Е║╪"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╔©╔╓╔в╓к╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "GNU/Linux╓н╔╓╔С╔╧╔х║╪╔К╓╛╫И╓А╓ф╓╚║╒йё©Т╓н╔г╔ё╔╧╔х╔Й╔с╔Е║╪╔╥╔Г╔С╓Д\n"
+#~ "╔п║╪╔╦╔Г╔С╓х╤╕б╦╓╣╓╩╓©╓╓╓х╓╜╓к╓о║╒║ж╔╓╔С╔╧╔х║╪╔К║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+#~ "\n"
+#~ "╓╧╓г╓к╔╓╔С╔╧╔х║╪╔К╓╨╓ъ╓нMandrake Linux╓Р╣ъ╨я╓╥╓©╓╓╓й╓И║╒║ж╔Л╔╧╔╜╔Е║╪║в╓Р\n"
+#~ "а╙╓с╓ч╓╥╓Г╓╕║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "а╙бР╓нлэ╟б:\n"
+#~ "\n"
+#~ " - а╢╪╚ф╟(©Д╬╘): GNU/Linux╓н╔╓╔С╔╧╔х║╪╔К╓╛╫И╓А╓ф╓й╓И║╒╓Ё╓Л╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+#~ "\n"
+#~ " - ╔╚╔╧╔©╔ч╔╓╔╨: GNU/Linux ╓к╬э╓╥╓╠╓Л╓п║╒╪╚й╛╓н╔ч╔╥╔С╓н╪Г╓й╩х╓╓йЩ╓к\n"
+#~ " ╓╒╓О╓╩╓фа╙╓с╓ч╓╥╓Г╓╕║ё╬э╓╥╓╞╓о╟й╡╪╓Р╩╡╬х╓╥╓ф╓╞╓ю╓╣╓╓║ё\n"
+#~ "\n"
+#~ " - ╔╗╔╜╔╧╔я║╪╔х: ╓Ё╓Л╓окэеЖ╓кGNU/Linux╓к╬э╓╥╓╓©м╓╛║╒хС╬О╓кфц╪Л╓й\n"
+#~ " ╔╓╔С╔╧╔х║╪╔К╓Р╓╥╓©╓╓╬Л╧Г╓ка╙╓с╓ч╓╧║ё║ж╔╚╔╧╔©╔ч╔╓╔╨║в\n"
+#~ " ╓н╔╓╔С╔╧╔х║╪╔К╓хф╠╓╦╓╞║╒╪╚й╛╓н╔╥╔╧╔ф╔Ю╓н╩х╓╓йЩ╓Ра╙╓ы╓ч╓╧║ё\n"
+#~ " ╓г╓Б║╒╢╟а╢╓к╪╚©╝╓╛╓й╓╓╓й╓И║╒║жюДбп╓к║в╓Ё╓Л╓о╩х╓О╓й╓╓╓г╓╞╓ю╓╣╓╓║╙\n"
+
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "GNU/Linuxмя╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓н╫ЮхВ╓╛╓г╓╜╓ф╓╓╓Л╓п║йа╟╓к GNU/Linux \n"
+#~ "╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓©╓Й║╒\n"
+#~ "йл╓н╔Ф║╪╔ф╔ё╔Й╔ф╔ё╓г╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓ц╓©╬Л╧Г║к║╒╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓к\n"
+#~ "Linux-Mandrake╔╥╔╧╔ф╔Ю╓Р╔╓╔С╔╧╔х║╪╔К╓╧╓К╓╚╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+#~ "╓Б╓╥╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓ц╓ф╓╓╓й╓╠╓Л╓п║╒╔о║╪╔и╔г╔ё╔╧╔╞╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р\n"
+#~ "╓Ё╓Ё╓г╨Н╓Й╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓х╓╓╓╕╓н╓о║╒╔Ё╔С╔т╔Е║╪╔©╓н╔о║╪╔и╔г╔ё╔╧╔╞\n"
+#~ "╓Рлэе╙╓к╓╒╓О╓╩╓фоюмЩе╙╓к╤Хюз╓К╓Ё╓х╓г╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "©╥╓╥╓╞╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╓й╓И║╒║ж╪╚ф╟ЁД╓ЙеЖ╓ф║в╓Ра╙╓ы╓п║╒╪╚ф╟е╙╓к\n"
+#~ "Linuxмя╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓г╓╜╓╒╓╛╓Й╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╓д╓╞╓К╔о║╪╔и\n"
+#~ "╔г╔ё╔╧╔╞╓Ра╙╓ж╓х╓╜╓о║╒╨г╫И╓нIDE╔и╔И╔╓╔ж╓╛║жhda║в║╒2хжлэ╓╛║жhdb║в║╒╨г╫И\n"
+#~ "╓нSCSI╔и╔И╔╓╔ж╓╛║жsda║в║╒╓х╓╓╓╕╤Я╧Г╓к╓й╓Й╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╓Х╓╞╓╒╓К╔я║╪╔ф╔ё╔╥╔Г╔С╓нюз╓ЙйЩ╓х╓╥╓ф╓о║╒root╔я║╪╔ф╔ё╔╥╔Г╔С(/) ╓х\n"
+#~ "boot╔я║╪╔ф╔ё╔╥╔Г╔С(/boot) ╓Р╨Н╓Й╓ч╓╧║ёroot╓о╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓н\n"
+#~ "╔г╔ё╔Л╔╞╔х╔Й╓н╓ф╓ц╓з╓С╓г║╒/boot╓к╓о╔Ё╔С╔т╔Е║╪╔©╓н╔╧╔╓╔ц╔а╓РфЧ╓Л╓©\n"
+#~ "╓х╓╜╓к╣╞ф╟╓ки╛мв╓й╔у╔║╔╓╔К╓╛цж╓╓╓ф╓╒╓К╓х╓Ё╓М╓г╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓х║╒╓у╓д╓╕╓о╓╫╓Ё╓н╔г║╪╔©╓оа╢иТ╬ц╓╗╓ф║╒╓Б╓х╓к\n"
+#~ "лА╓Й╓ч╓╩╓С║ё╓ю╓╚╓И╔я║╪╔ф╔ё╔╥╔Г╔С╓Рюз╓К╓н╓о║╒╫И©╢╪т╓к╓о╓╙╓ц╓╚╓й╓╓\n"
+#~ "╓г╓╧╓╥║╒╓х╓ц╓ф╓Б╣╓хХ╓Л╓╧╓К╓Б╓н╓г╓╧║ё╓╫╓╕╓й╓И╓й╓╓╓Х╓╕╓к║╒DiskDrake\n"
+#~ "╓о╓Ё╓н╔в╔М╔╩╔╧╓Р╓й╓К╓ы╓╞╢йц╠╓к╓╥╓ч╓╧║ё╓ч╓╨╓о╔и╔╜╔Е╔А╔С╔ф║╪╔╥╔Г╔С╓Р\n"
+#~ "фи╓С╓г║╒юХ╓к©й╓Юа╟╓к╓╦╓ц╓╞╓Й╣╓╓РмН╓ацЕ╓╠╓ч╓╥╓Г╓╕║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╓и╓н╔╙╔в╔╥╔Г╔С╓Б║╒╔╜║╪╔э║╪╔и╓га╙╓ы╓ч╓╧║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓ж╓к╓о║╒\n"
+#~ "╔©╔ж╓х╬Е╡╪╓н╔╚║╪╔╫╔К╔╜║╪╓Р╩х╓╓╓ч╓╥╓Г╓╕║ё╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╓И║╒\n"
+#~ "╪║╓н╔╜║╪╓╛╩х╓╗╓ч╓╧║╖\n"
+#~ "\n"
+#~ "- Ctrl-c ©╥╓╥╓╓╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨Н╓К║й╤У╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Ра╙╓С╓ю╬Л╧Г║к\n"
+#~ "\n"
+#~ "- Ctrl-d ╓╫╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╨О╫Э\n"
+#~ "\n"
+#~ "- Ctrl-m ╔ч╔╕╔С╔х╔щ╔╓╔С╔х╓нюъдЙ\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "©╥╓╥╓╞╨Н╓ц╓©╔я║╪╔ф╔ё╔╥╔Г╔С╓о╓╧╓ы╓ф║╒╔у╔╘║╪╔ч╔ц╔х╓╥╓й╓╓╓х╩х╓╗╓ч╓╩╓С\n"
+#~ "║й╔у╔╘║╪╔ч╔ц╔х╓х╓╓╓╕╓н╓о╔у╔║╔╓╔К╔╥╔╧╔ф╔Ю╓Р╓д╓╞╓К╓Ё╓х╓г╓╧║к║ё╓╣╓И╓к\n"
+#~ "╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔у╔╘║╪╔ч╔ц╔х╓╥╓ф║╒╓╫╓Ё╓н╔г║╪╔©╓Р╬ц╣Н╓Б╓г╓╜╓ч╓╧║ё\n"
+#~ "цМ╟у║╖╢Шб╦╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓о║╒╔у╔╘║╪╔ч╔ц╔х╓╥╓й╓╙╓╧и╛мв╓о╓╒╓Й╓ч╓╩╓С║ё\n"
+#~ "фц╓кйщб╦╓╥╓©╓╓╔г║╪╔©║й/home ╓х /usr/local╓й╓и║к╓╛╓╒╓Л╓п║╒╔у╔╘║╪╔ч╔ц╔х\n"
+#~ "╓╥╓ф╓о╓╓╓╠╓ч╓╩╓С║ё"
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "а╙╓С╓ю╔я╔ц╔╠║╪╔╦╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ф╓╓╓ч╓╧║ё╓Ё╓Л╓к╓о©Тй╛╓╚╓╚╓Й╓ч╓╧╓Х║ё\n"
+#~ "╢Шб╦╔╥╔╧╔ф╔Ю╓н╔╒╔ц╔в╔╟╔Л║╪╔и╓Ра╙╓С╓ю╬Л╧Г╓о║╒╩Жа╟╓кд╢╓ы╓К╓Ё╓х╓╛б©╓╓╓н\n"
+#~ "╓г║╒╓Б╓ц╓х╓╚╓╚╓Й╓ч╓╧║ё"
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "╓Б╓╥ DrakX ╓╛╔ч╔╕╔╧╓Р╦╚╓д╓╠╓И╓Л╓й╓╚╓ц╓©╓Й║╒╡©╓╛а╙╓п╓Л╓©╓╚╔а╔╖╔ц╔╞\n"
+#~ "╓╥╓©╓╚╓ц╓©╓Й╓╧╓К╓х╓╜╓о║╒╬Е╓к╔ч╔╕╔╧╓н╟ЛмВ╓╛╫п╓ф╓╞╓К╓о╓╨╓г╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "DrakX ╓н╓Д╓ц╓©юъдЙ╓г╓Х╓╠╓Л╓п║╒'OK' ╓Р╔╞╔Й╔ц╔╞╓╥╓ч╓╥╓Г╓╕║ё\n"
+#~ "юъдЙ╓╛╓а╓╛╓ц╓ф╓╓╓©╓И║╒╪╚й╛╓н╔ч╔╕╔╧╓к╓╓╓а╓п╓С\n"
+#~ "╤А╓╓╪ОнЮ╓н╔ч╔╕╔╧╓Р╔А╔к╔Е║╪╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╔╥╔Й╔╒╔К╔ч╔╕╔╧╓Р╩х╓ц╓ф╓╓╓К╓х╓╜╓к╓о║╒╓╫╓Л╓╛╓д╓й╓╛╓ц╓ф╓╓╓К╔╥╔Й╔╒╔К╔щ║╪╔х\n"
+#~ "╓Б╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "╓Ё╓Ё╓г╓о║╒╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞║йLAN║к╓╚╔Б╔г╔Ю╓нюъдЙ╓Р╓╥╓ч╓╧║ё\n"
+#~ "\n"
+#~ "║ж╔М║╪╔╚╔К LAN║в╓Ра╙╓ж╓х║╒DrakX ╓о╔ч╔╥╔С╓н╔╓║╪╔╣╔м╔ц╔х╔╒╔ю╔в╔©╓Рц╣╓╥\n"
+#~ "╓ч╓╧║ёPCI╓н╔╒╔ю╔в╔©╓о╪╚ф╟е╙╓к╦╚╓д╓╚╓ц╓фюъдЙ╓╣╓Л╓К╓о╓╨╓г╓╧║ё\n"
+#~ "╓Б╓╥╓╙╩х╓╓╓н╔╒╔ю╔в╔©╓╛ISA ╓й╓И║╒╪╚ф╟╓г╓о╦║╫п╓г╓╜╓ч╓╩╓С║ё╓Ё╓н╬Л╧Г║╒\n"
+#~ "╓╒╓х╓╚╓И╟ЛмВи╫╓╛╫п╓ф╓╞╓К╓н╓г║╒╓╫╓Ё╓╚╓Иа╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "SCSI╔╒╔ю╔в╔©╓н╬Л╧Г║╒╓х╓Й╓╒╓╗╓╨╔и╔И╔╓╔п╓к╔╒╔ю╔в╔©╓Рц╣╓╣╓╩╓ф╓ъ╓ч╓╥╓Г╓╕║ё\n"
+#~ "╔ю╔А╓й╓И║╒╪╚й╛╓г╔и╔И╔╓╔п╓н╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓ч╓╧║ё╩ьдЙ╔╙╔в╔╥╔Г╔С╓о║╒\n"
+#~ "╪╚й╛╓н╔о║╪╔и╔╕╔╖╔╒╓ниуб╟й╦╫Я╓гд╢╓ы╓ф╓╞╓ю╓╣╓╓║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╓Ё╓н╔ч╔╥╔С╓╛╓╧╓г╓к╢Шб╦╓н╔м╔ц╔х╔О║╪╔╞╓к╓д╓й╓╛╓ц╓ф╓╓╓К╓й╓И║╒╔м╔ц╔х╔О║╪╔╞\n"
+#~ "╢имЩ╪т╓ки╛мв╓й╬ПйС╓Р╤╣╓О╓ц╓ф╓╓╓К╓о╓╨╓г╓╧(IP ╔╒╔и╔Л╔╧║╒╔м╔ц╔х╔О║╪╔╞╓н\n"
+#~ "╔╣╔ж╔ч╔╧╔╞║йдл╬н╔м╔ц╔х╔ч╔╧╔╞║к║╒╔ш╔╧╔хл╬)║ё╪╚бП╓й╓и╓г╪╚й╛╓ю╓╠╓н╔м╔ц╔х\n"
+#~ "╔О║╪╔╞╓Р╨Н╓М╓╕╓х╓╥╓ф╓╓╓К╓й╓И║╒╔╒╔и╔Л╔╧╓й╓и╓о╪╚й╛╓га╙╓с╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "║ж╔Б╔г╔Ю╓к╓Х╓К╔ю╔╓╔╒╔К╔╒╔ц╔в║в╓Ра╙╓ж╓х║╒╔Б╔г╔Ю╓к╓Х╓К╔╓╔С╔©║╪╔м╔ц╔хюэбЁ\n"
+#~ "╓╛юъдЙ╓╣╓Л╓ч╓╧║ёDrakX ╓о╔Б╔г╔Ю╓Рц╣╓╥╓ч╓╧╓╛║╒╓Ё╓Л╓╛╪╨гт╓╥╓©╓И║╒╔Б╔г╔Ю╓н\n"
+#~ "╓д╓й╓╛╓ц╓ф╓╓╓К╔╥╔Й╔╒╔К╔щ║╪╔х╓Р╪╚й╛╓г╩ьдЙ╓╥╓ф╓╞╓ю╓╣╓╓║ё"
+
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "GNU/Linux ╓г╓о╓╓╓М╓С╓й╔в╔Й╔С╔©╓╛╩х╓╗╓ч╓╧║ё╓╛║╒╓╫╓Л╓╬╓ЛюъдЙ╓╛╓а╓╛╓╓╓ч╓╧║ё\n"
+#~ "╓©╓ю╓╥║╒╟У╨Ч╔╧╔в║╪╔И╓о╔г╔у╔╘╔К╔х╓н╔в╔Й╔С╔©л╬╓х╓╥╓ф║жlp║в╓Р╩х╓╓╓ч╓╧║ё\n"
+#~ "╓ю╓╚╓И║╒lp╓х╓╓╓╕л╬а╟╓н╔в╔Й╔С╔©╓╛╟Л╓д╓ои╛мв╓г╓╧║ё╓г╓Б║╒╟Л╓д╓н╔в╔Й╔С╔©\n"
+#~ "╓кйё©Т╓нл╬а╟╓Р╓д╓╠╓К╓Ё╓х╓Б╓г╓╜╓ч╓╧║ё╓Ё╓н╓х╓╜╓о║ж|║в╓г╤Хюз╓Й╓ч╓╧║ё\n"
+#~ "╓ю╓╚╓И║╒╔в╔Й╔С╔©╓к╓О╓╚╓Й╓Д╓╧╓╓л╬а╟╓Р╓д╓╠╓©╓╠╓Л╓п║╒╓╫╓Л╓РюХ╓к╫Я╓╓╓ф\n"
+#~ "╓╙╓╠╓п╓╧╓ъ╓ч╓╧║ё╓©╓х╓╗╓п║жMy Printer|lp║в╓х╓╓╓╕╤Я╧Г╓к║ё\n"
+#~ "л╬а╟╓нцФ╓к║жlp║в╓╛╢ч╓ч╓Л╓К╔в╔Й╔С╔©╓╛╔г╔у╔╘╔К╔х╓к╓й╓Й╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╔в╔Й╔С╔©╓╛д╬юэ╔Ё╔С╔т╔Е║╪╔©╓к╓д╓й╓╛╓ц╓ф╓╓╓Л╓п║╒║ж╔М║╪╔╚╔К╔в╔Й╔С╔©║в╓Р\n"
+#~ "а╙╓с╓ч╓╧║ё╓Ё╓н╬Л╧Г║╒╔в╔Й╔С╔©╓н╓д╓й╓╛╓ц╓ф╓╓╓К╔щ║╪╔х╓Р╩ьдЙ╓╥╓ф║╒е╛юз╓й\n"
+#~ "╔у╔ё╔К╔©╓Ра╙╓с╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╔м╔ц╔х╔О║╪╔╞╬Е╓н╓ш╓╚╓нUnix╔ч╔╥╔С╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╩х╓╕╓й╓И║╒\n"
+#~ "║ж╔Й╔Б║╪╔х lpd║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё╓Ё╓Л╓Р╩х╓╕╓к╓о║╒╔Ф║╪╔╤л╬╓Д╔я╔╧╔О║╪╔и╓о\n"
+#~ "╓╓╓Й╓ч╓╩╓С╓╛║╒╓╫╓н╔╣║╪╔п╬Е╓н╟У╨Ч╔╜╔Е║╪╓нл╬а╟╓╛мв╓Й╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "SMB╔в╔Й╔С╔©╓Р╩х╓╕╓й╓И║й╓д╓ч╓Й╔м╔ц╔х╔О║╪╔╞╬Е╓н╔╕╔ё╔С╔и╔╕╔╨9x/NT╔ч╔╥╔С\n"
+#~ "╓к╓д╓й╓╛╓ц╓©╔в╔Й╔С╔©╓Р╩х╓╕╓х╓╓╓╕╟улё╓г╓╧║к║╒╓╫╓н╔ч╔╥╔С╓нSMB л╬║й╓Ё╓Л\n"
+#~ "╓оTCP/IPл╬╓х╓ойлй╙╓г╓╧║к╓х║╒╬Л╧Г╓к╓Х╓ц╓ф╓оIP╔╒╔и╔Л╔╧╓╛и╛мв╓к╓й╓Й╓ч╓╧║ё\n"
+#~ "╓╣╓И╓к╔Ф║╪╔╤л╬║╒╔О║╪╔╞╔╟╔К║╪╔вл╬╓х╔я╔╧╔О║╪╔и║╒╓╣╓И╓к╓о╔в╔Й╔С╔©л╬╓╛\n"
+#~ "╓й╓╓╓х╔в╔Й╔С╔©╓к╔╒╔╞╔╩╔╧╓г╓╜╓ч╓╩╓С║ёNetWare ╔в╔Й╔С╔©╓Б║╒╔О║╪╔╞╔╟╔К║╪╔в╓о\n"
+#~ "итмв╓й╓ю╓╠╓г║╒╓ш╓х╓С╓иф╠╓╦╓г╓╧║ё"
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "╓Ё╓Ё╓г╓о║ж╓о╓╓║в╓хеЗ╓╗╓К╓н╓Р╤╞╓╞©Д╬╘╓╥╓ч╓╧║ё╦Е╓╚╓ИMS╔╕╔ё╔С╔и╔╕╔╨╓Р\n"
+#~ "╔╓╔С╔╧╔х║╪╔К╓╥╓©╓И║╒╔ж║╪╔х╔╩╔╞╔©╓о╬Е╫Я╓╜╓╣╓Л╓ч╓╧║ё╓╫╓╕╓й╓ц╓©╓И║╒\n"
+#~ "╔ж║╪╔х╔г╔ё╔╧╔╞╓Р╨Н╓ц╓ф╓╙╓╚╓й╓╓╓х║╒Linux╓╛н╘╓а╬Е╓╡╓И╓Л╓й╓╞╓й╓Й╓ч╓╧╓Х║ё"
+
+#~ msgid "Move your wheel!"
+#~ msgstr "╔ш╔╓║╪╔К╓Р╓ч╓О╓╥╓ф╓ъ╓ч╓╥╓Г╓╕║╙"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "йя╧╧╓Ра╢иТгк╢Ч╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid "Cable connection"
+#~ msgstr "╔╠║╪╔ж╔КюэбЁ"
+
+#~ msgid "Host name:"
+#~ msgstr "╔ш╔╧╔хл╬:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "╔ч╔╕╔╧╓н╥©╓о╓й╓С╓г╓╧╓╚║╘"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "╡РаЭеы╓н╪╚ф╟юъдЙ"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "м╜╦З╓й╡РаЭеы╓Рфю╓К╓©╓А╓кйл╓нйЩк║╓Р╩Н╓╥╓ф╓ъ╓ч╓╧║ё\n"
+#~ "╔╧╔╞╔Й║╪╔С╓╛люлг╓╥╓ч╓╧...\n"
+#~ "╓╓╓Д╓й╓И╔Б╔к╔©╓н╔╧╔╓╔ц╔а╓Рюз╓ц╓ф╓Б╓ю╓╓╓╦╓Г╓╕╓ж║ё╫╙╓О╓ц╓©╓И beep ╡╩\n"
+#~ "╓гцн╓И╓╩╓ч╓╧║ё"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "м╜╦З╓й╡РаЭеы(нЦ: 800x600)╓Р╪╚ф╟е╙╓кц╣╓╩╓ч╓╧║ё\n"
+#~ "╓╛║╒╓Ё╓Л╓г╔ч╔╥╔С╓╛╩ъ╓ч╓ц╓ф╓╥╓ч╓╕╓╚╓Б╓╥╓Л╓ч╓╩╓С║ё\n"
+#~ "ц╣╓╥╓ф╓ъ╓ч╓╥╓Г╓╕╓╚║╘"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "м╜╦З╓й╔Б║╪╔и╓╛╦╚иу╓╚╓Й╓ч╓╩╓С\n"
+#~ "б╬╓н╔с╔г╔╙╔╚║╪╔и/╔Б╔к╔©╓г╩Н╓╥╓ф╡╪╓╣╓╓║ё"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "╡РаЭеы╓н╪╚ф╟╦║╨В"
+
+#~ msgid "dhcpd"
+#~ msgstr "dhcpd"
+
+#~ msgid "pump"
+#~ msgstr "pump"
+
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
+
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB ╔ч╔╕╔╧"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB ╔ч╔╕╔╧║й2╔э╔©╔С║к"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB ╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB╔ч╔╕╔╧"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB╔ч╔╕╔╧║й2╔э╔©╔С║к"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "хфмя╔ч╔╕╔╧"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI ╔п╔╧╔ч╔╕╔╧"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х║╕╔п╔╧╔ч╔╕╔╧"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "╔М╔╦╔ф╔ц╔╞║╕╔п╔╧╔ч╔╕╔╧"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB╔ч╔╕╔╧"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB╔ч╔╕╔╧║й3╔э╔©╔С╟й╬Е║к"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ╟й╬Е(serial)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (╔╥╔Й╔╒╔К)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (╔╥╔Й╔╒╔К)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (╔╥╔Й╔╒╔К)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "хфмя╔ч╔╕╔╧ (╔╥╔Й╔╒╔К)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "╔ч╔╓╔╞╔М╔╫╔у╔х╦ъ╢╧║й╔╥╔Й╔╒╔К║к"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "хфмя╓н3╔э╔©╔С╔ч╔╕╔╧ (╔╥╔Й╔╒╔К)"
+
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (╔╥╔Й╔╒╔К)"
+
+#~ msgid ""
+#~ "I need to configure your network adapter to be able to connect to internet."
+#~ msgstr ""
+#~ "╔╓╔С╔©║╪╔м╔ц╔хюэбЁ╓к╓о║╒╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓РюъдЙ╓╧╓Ки╛мв╓╛╓╒╓Й╓ч╓╧║ё"
+
+#~ msgid ""
+#~ "Please choose which network adapter do you want to use to connect to "
+#~ "internet.\n"
+#~ "If you don't know, choose eth0.\n"
+#~ msgstr ""
+#~ "╔╓╔С╔©║╪╔м╔ц╔х╓к╓д╓й╓╟╓©╓А╓н╔м╔ц╔х╔О║╪╔╞╔╒╔ю╔в╔©╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+#~ "╓О╓╚╓И╓й╓╠╓Л╓п║╒eth0 ╓Ра╙╓С╓г╓╙╓╜╓ч╓╥╓Г╓╕║ё\n"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs ╔ч╔╕╔С╔х╓к╪╨гт"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
+#~ "\n"
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX ╓о║╒XFree 3.3╓хXFree 4.0н╬йЩ╓нюъдЙ╔у╔║╔╓╔К╓Р╓д╓╞╓Й╓ч╓╧║ё╓г╓Б\n"
+#~ "╔г╔у╔╘╔К╔х╓г╓обп╠Ч╔с╔г╔╙╔╚║╪╔и╓╛л╣╓╓╦б╓Й║╒4.0╔╣║╪╔п╓н╓ш╓╕╓Р╩х╓╓╓ч╓╧║ё\n"
+#~ "\n"
+#~ "XFree 3.3 ╓н╓ч╓ч╓к╓╥╓ф╓╙╓╜╓ч╓╧╓╚?"
+
+#~ msgid "Cryptographic"
+#~ msgstr "╟е╧Ф╡╫"
+
+#~ msgid "Configure LAN"
+#~ msgstr "LAN ╓нюъдЙ"
+
+#~ msgid "End configuration"
+#~ msgstr "юъдЙ╓Р╫╙╓╗╓К"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "╔м╔ц╔х╔О║╪╔╞юъдЙ╓Р╓╥╓й╓╓"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "╔╥╔╧╔ф╔Ю╓н╔М║╪╔╚╔К LAN ╔м╔ц╔х╔О║╪╔╞╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid "Show less"
+#~ msgstr "Ё╣н╛╓ги╫╪╗"
+
+#~ msgid "Show more"
+#~ msgstr "╬э╨ы╓Ри╫╪╗"
+
+#~ msgid "Take over the hard drive"
+#~ msgstr "╔о║╪╔и╔и╔И╔╓╔ж╓Р╟З╓╜╥я╓╟"
+
+#~ msgid "URI for Local printer"
+#~ msgstr "╔М║╪╔╚╔К╔в╔Й╔С╔©╓нURI"
+
+#~ msgid "URI for Network printer"
+#~ msgstr "╔м╔ц╔х╔О║╪╔╞╔в╔Й╔С╔©╓нURI"
+
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "╔М║╪╔╚╔К╔в╔Й╔С╔©╔г╔п╔╓╔╧ (URI)"
+
+#~ msgid ""
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr ""
+#~ "╔в╔Й╔С╔©╓╛╓д╓й╓╛╓ц╓ф╓╓╓К╔г╔п╔╓╔╧╓о╡©╓г╓╧╓╚\n"
+#~ "(цМ╟у ╔я╔И╔Л╔К╓н/dev/lp0 ╓о LPT1: ╓к╓й╓Й╓ч╓╧)║╘\n"
+
+#~ msgid "Network Printer Options (URI)"
+#~ msgstr "Netware ╔в╔Й╔С╔©╓н╔╙╔в╔╥╔Г╔С (URI)"
+
+#~ msgid "curly"
+#~ msgstr "╔╚║╪╔К"
+
+#~ msgid "default"
+#~ msgstr "╔г╔у╔╘╔К╔х"
+
+#~ msgid "tie"
+#~ msgstr "╔м╔╞╔©╔╓"
+
+#~ msgid "brunette"
+#~ msgstr "╔ж╔К╔м╔ц╔х"
+
+#~ msgid "girl"
+#~ msgstr "╫В╓н╩р"
+
+#~ msgid "woman-blond"
+#~ msgstr "╔ж╔М╔С╔и╫Вю╜"
+
+#~ msgid "automagic"
+#~ msgstr "╔╙║╪╔х╔ч╔╦╔ц╔╞"
+
+#~ msgid "Normal"
+#~ msgstr "╔н║╪╔ч╔К"
+
+#~ msgid "Have you been provided with a hostname?"
+#~ msgstr "╔ш╔╧╔х╔м║╪╔Ю╓РдС╤║╓╣╓Л╓ф╓╓╓ч╓╧╓╚║╘"
+
+#~ msgid "Local Area Network specification"
+#~ msgstr "╔М║╪╔╚╔К╔╗╔Й╔╒╔м╔ц╔х╔О║╪╔╞╓н╬э╨ы"
+
+#~ msgid "You may now decide which class C network to use.\n"
+#~ msgstr "╓и╓н╔╞╔И╔╧C╔м╔ц╔х╔О║╪╔╞╓Р╩х╓╕╓╚╥Х╓А╓ф╓╞╓ю╓╣╓╓║ё\n"
+
+#~ msgid "Network:"
+#~ msgstr "╔м╔ц╔х╔О║╪╔╞:"
+
+#~ msgid "Internet Connection Sharing - setup of $device"
+#~ msgstr "╔╓╔С╔©║╪╔м╔ц╔х╤╕м╜юэбЁ - $device ╓нюъдЙ"
+
+#~ msgid ""
+#~ "The following interface is about to be configured:\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+#~ msgstr ""
+#~ "╪║╓н╔╓╔С╔©║╪╔у╔╖║╪╔╧╓РюъдЙ╓╥╓Х╓╕╓х╓╥╓ф╓ч╓╧║╖\n"
+#~ "\n"
+#~ "$interface\n"
+#~ "\n"
+
+#~ msgid "Everything configured!"
+#~ msgstr "а╢╓ф╓РюъдЙ╓╥╓ч╓╥╓©║╙"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "╔╜║╪╔э║╪╔и╔Л╔╓╔╒╔╕╔х╓о╡©╓г╓╧╓╚║╘"
+
+#~ msgid "Configure my card"
+#~ msgstr "╔╚║╪╔и╓нюъдЙ"
+
+#~ msgid "pptp alcatel"
+#~ msgstr "pptp alcatel"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "PCMCIA╔╚║╪╔и╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╥╓Г╓╕╓╚║╘"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "%s╔г╔п╔╓╔╧╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
+
+#~ msgid "Small(%dMB)"
+#~ msgstr "╨г╬╝(%dMB)"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "╔Б╔г╔Ю╓нюъдЙ"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "╔╥╔╧╔ф╔Ю╓н╔Б╔г╔Ю╓к╓Х╓К╔ю╔╓╔╒╔К╔╒╔ц╔в╔м╔ц╔х╔О║╪╔╞╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "╔╥╔╧╔ф╔Ю╓нISDNюэбЁ╓РюъдЙ╓╥╓ч╓╧╓╚║╘"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "PCI╔г╔п╔╓╔╧╓Р╓╣╓╛╓╥╓ф╓ъ╓ч╓╧╓╚║╘"
+
+#~ msgid "Searching root partition."
+#~ msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╦║╨В"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: ╓Ё╓Л╓о╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓г╓о╓╒╓Й╓ч╓╩╓С║╓╓ш╓╚╓Ра╙╓С╓г╡╪╓╣╓╓║ё"
+
+#~ msgid "No root partition found"
+#~ msgstr "╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╦╚╓д╓╚╓Й╓ч╓╩╓С"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "NIS ╔и╔А╔╓╔С╓╛╓й╓╓╓н╓г╔ж╔М║╪╔и╔╜╔Ц╔╧╔х╓╛╩х╓╗╓ч╓╩╓С"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "╓и╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓Р╔К║╪╔х╔я║╪╔ф╔ё╔╥╔Г╔С╓к╓╥╓ч╓╧╓╚"
+
+#~ msgid "Autologin at startup"
+#~ msgstr "╣╞ф╟╩Ч╓н╪╚ф╟╔М╔╟╔╓╔С"
+
+#~ msgid "Autologin - Choose default user"
+#~ msgstr "╪╚ф╟╔М╔╟╔╓╔С - ╔г╔у╔╘╔К╔х╔Ф║╪╔╤╓Ра╙бР"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "╔╕╔ё╔С╔и╔╕╔╨╓н╔я║╪╔ф╔ё╔╥╔Г╔С╓╛╓╒╓Й╓ч╓╩╓С║╙"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Linux4Win╓╛фЧ╓К╓ю╓╠╓н╤У╓╜╓╛╓╒╓Й╓ч╓╩╓С║╙"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "а╢╪╚ф╟"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "LILO operating system chooser-he youkosou!\n"
+#~ "\n"
+#~ "<TAB>: Ichiran Hyouji\n"
+#~ "\n"
+#~ "Ichiran kara erande <ENTER> wo oshimasu. %d byou de Default ni narimasu.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "SILO ╔А╔╓╔С╔╙╔в╔╥╔Г╔С"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "SILO ╓к╓о╟й╡╪╓н╔╗╔С╔х╔Й╓╛╓╒╓Й╓ч╓╧║ё\n"
+#~ "╓ш╓╚╓н╔╗╔С╔х╔Й╓Р╡ц╓╗╓К╓╚йя╧╧╓╧╓К╓Ё╓х╓╛╓г╓╜╓ч╓╧║ё"
+
+#~ msgid "This label is already in use"
+#~ msgstr "╓Ё╓н╔И╔ы╔К╓о╓╧╓г╓к╩х╓О╓Л╓ф╓╓╓ч╓╧"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO ╓н╔╓╔С╔╧╔х║╪╔К╓к╪╨гт╓╥╓ч╓╥╓©║ё╟й╡╪╓н╔╗╔И║╪╓╛х╞ю╦:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX ╓о╓ч╓╨║╒PCI╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓Рц╣╓╥╓к╓╓╓╜╓ч╓╧║ё╔╒╔ю╔в╔©╓╛╓ъ╓д\n"
+#~ "╓╚╓ц╓ф║╒╩х╓╕╔и╔И╔╓╔п╓╛╓О╓╚╓Л╓п║╒╓╫╓Л╓Р╪╚ф╟е╙╓ках╓ъ╧Ч╓ъ╓ч╓╧║ё╔╒╔ю╔в╔©\n"
+#~ "╓╛╓©╓╞╓╣╓С╓╒╓ц╓ф╓БбГ╬Фив╓г╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╓Б╓╥ISA╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓Р╩х╓ц╓ф╓╓╓©╓Й║╒PCI╔п╔╧╓нSCSI╔╒╔ю╔в╔©╓г╓Б\n"
+#~ "DrakX╓к╔и╔И╔╓╔п╓╛╓О╓╚╓И╓й╓╚╓ц╓©╓Й╓╧╓К╓х╓╜║╒╓ч╓©╓оSCSI╔╒╔ю╔в╔©╓╛╓й╓╓\n"
+#~ "╓х╓╜╓к╓о║╒╔в╔М╔С╔в╔х╓╛╫п╓ф╓╜╓ф║╒SCSI╔╒╔ю╔в╔©╓╛╓╒╓К╓╚╓и╓╕╓╚╓╜╓╜╓ч╓╧║ё\n"
+#~ "╓й╓╠╓Л╓п║ж╓╓╓╓╓╗║в╓хеЗ╓╗╓ф╓╞╓ю╓╣╓╓║ё╓╒╓Л╓п║ж╓о╓╓║в╓хеЗ╓╗╓ч╓╥╓Г╓╕║ё\n"
+#~ "╓╧╓К╓х╔и╔И╔╓╔п╓н╟ЛмВи╫╓╛╫п╓ф╓╞╓К╓н╓г║╒е╛юз╓й╓Б╓н╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╔и╔И╔╓╔п╓Ра╙╓С╓ю╓И║╒╓╫╓н╔и╔И╔╓╔п╓г╔╙╔в╔╥╔Г╔С╓Р╩ьдЙ╓╥╓©╓╓╓╚╓и╓╕╓╚╓Р\n"
+#~ "DrakX╓╛╓╜╓╓╓ф╓╜╓ч╓╧║ё╨г╫И╓о║╒╔и╔И╔╓╔п╓к╔о║╪╔и╔╕╔╖╔╒╓Р╔в╔М║╪╔ж╓╣╓╩╓ф\n"
+#~ "╓ъ╓ч╓╥╓Г╓╕║ё╓©╓╓╓╛╓╓╓о╓Ё╓Л╓г╓╕╓ч╓╞╓╓╓╜╓ч╓╧║ё\n"
+#~ "\n"
+#~ "\n"
+#~ "╓Ё╓Л╓╛╔ю╔А╓й╓И║╒╓╫╓н╔╒╔ю╔в╔©╓к╓д╓╓╓ф╔и╔╜╔Е╔А╔С╔ф║╪╔╥╔Г╔С╓к╫Я╓╓╓ф╓╒╓ц╓©\n"
+#~ "╓Ё╓х╓Д║╒╔╕╔ё╔С╔и╔╕╔╨╓н╔в╔М╔я╔ф╔ё╓н╬ПйС╓й╓и╓Р╩в╓╓╓ю╓╥╓ф╓ъ╓ч╓╥╓Г╓╕║ё╔╓╔С\n"
+#~ "╔╧╔х║╪╔К╔╛╔╓╔и╓г╓Б║╒╓Ё╓Л╓Р╧╣╓╗╓ф╓╙╓╞╓Х╓╕╓к╓╙╬╘╓А╓╥╓ч╓╥╓©╓Х╓м║ё╓╫╓н╬ПйС\n"
+#~ "╓Р╔и╔И╔╓╔п╓к╓О╓©╓╥╓ф╓Д╓К╓Ё╓х╓к╓й╓Й╓ч╓╧║ё"
+
+#~ msgid "Shutting down"
+#~ msgstr "╔╥╔Ц╔ц╔х╔ю╔╕╔СцФ"
+
#~ msgid "useless"
#~ msgstr "л╣мя"
@@ -4925,9 +8093,6 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ "╓Ё╓Л╓И╓Р╩х╓╓╓ч╓╧╓╚? ╓╒╓й╓©╓╛ Linux "
#~ "╬Е╓г╓Ё╓Л╓И╓Р╩х╓╕╦╒мЬ╓╛╓╒╓К╓╚╓РЁн╓╚╓А╓ф╡╪╓╣╓╓║ё"
-#~ msgid "Recommended"
-#~ msgstr "©Д╬╘"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -4940,12 +8105,12 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ "or 7.0 (Air)."
#~ msgstr ""
#~ "Linux╓н╔╓╔С╔╧╔х║╪╔К╓╛╫И╓А╓ф╓╚║╒╓ш╓╚╓нLinux╔г╔ё╔╧╔х╔Й╔с╔Е║╪╔╥╔Г╔С╓Д\n"
-#~ "╔п║╪╔╦╔Г╔С╓х╤╕б╦╓╣╓╩╓©╓╓╓х╓╜╓к╓о║╒ \"╔╓╔С╔╧╔х║╪╔К\" ╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
+#~ "╔п║╪╔╦╔Г╔С╓х╤╕б╦╓╣╓╩╓©╓╓╓х╓╜╓к╓о║╒║ж╔╓╔С╔╧╔х║╪╔К║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё\n"
#~ "\n"
#~ "\n"
#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
#~ "6.1 (Helios), Gold 2000, 7.0 (Air)╓й╓и║╒╦е╓╓Mandrake Linux╓Р\n"
-#~ "╔╒╔ц╔в╔╟╔Л║╪╔и╓╧╓К╓й╓И\"╔╒╔ц╔в╔╟╔Л║╪╔и\"╓Ра╙╓с╓ч╓╥╓Г╓╕║ё"
+#~ "╔╒╔ц╔в╔╟╔Л║╪╔и╓╧╓К╓й╓И║ж╔╒╔ц╔в╔╟╔Л║╪╔и║в╓Ра╙╓с╓ч╓╥╓Г╓╕║ё"
#~ msgid "Do you want to use LILO?"
#~ msgstr "LILO ╓Р╩х╓╓╓ч╓╧╓╚║╘"
@@ -5035,14 +8200,14 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ "\n"
#~ " - ╔╚╔╧╔©╔Юа╙бР: Linux╓к╬э╓╥╓╠╓Л╓п║╒╔╥╔╧╔ф╔Ю╓н╩х╓╓йЩ╓к╠Ч╓╦╓ф║ж╔н║╪╔ч╔К║в\n"
#~ "║жЁ╚х╞мя║в║ж╔╣║╪╔п║в╓нцФ╓╚╓Иа╙╓с╓ч╓╥╓Г╓╕║ё╓у╓д╓╕╓н╔╥╔╧╔ф╔Ю╓к╓╥╓©╓╠╓Л╓п║╒\n"
-#~ "\"╔н║╪╔ч╔К\"╓╛╓╓╓╓╓г╓╥╓Г╓╕║ё╪Г╓к╔╫╔у╔хЁ╚х╞╓Р╓╧╓К╓д╓Б╓Й╓й╓И║╒\"Ё╚х╞мя\"╓Р\n"
+#~ "║ж╔н║╪╔ч╔К║в╓╛╓╓╓╓╓г╓╥╓Г╓╕║ё╪Г╓к╔╫╔у╔хЁ╚х╞╓Р╓╧╓К╓д╓Б╓Й╓й╓И║╒║жЁ╚х╞мя║в╓Р\n"
#~ "а╙╓с╓ч╓╧║ё╓╒╓К╓╓╓о║╒хфмя╔╣║╪╔п║й╔А║╪╔Кмя║╒╟У╨Чмя╓й╓и╓й╓и║к╓х╓╥╓ф╩х╓╕╓й╓И\n"
-#~ "\"╔╣║╪╔п\"╓╛╓╙╓╧╓╧╓А╓г╓╧║ё\n"
+#~ "║ж╔╣║╪╔п║в╓╛╓╙╓╧╓╧╓А╓г╓╧║ё\n"
#~ "\n"
#~ "\n"
#~ " - ╔╗╔╜╔╧╔я║╪╔х║╖Expert: GNU/Linux ╔п╔Й╔п╔Й╓г║╒╨ы╓╚╓╓╔╚╔╧╔©╔ч╔╓╔╨╓Р╓╥╓©\n"
#~ "╓╠╓Л╓п║╒╓Ё╓н╔╓╔С╔╧╔х║╪╔К╓Ра╙╓С╓г╓╞╓ю╓╣╓╓║ё╓Ё╓н╓х╓╜║╒╔╥╔╧╔ф╔Ю╓н╩хес╓о\n"
-#~ "\"╔╚╔╧╔©╔ч╔╓╔╨\"╓к╓й╓Й╓ч╓╧║ё"
+#~ "║ж╔╚╔╧╔©╔ч╔╓╔╨║в╓к╓й╓Й╓ч╓╧║ё"
#~ msgid "Help"
#~ msgstr "╔ь╔К╔в"
@@ -5059,9 +8224,6 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ msgid "Which language do you want?"
#~ msgstr "╓и╓н╦ю╦Л╓Р╩х╓╓╓ч╓╧╓╚║╘"
-#~ msgid "Which usage do you want?"
-#~ msgstr "╓и╓н╩хмяк║╓Ра╙╓с╓ч╓╧╓╚║╘"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "╓и╓н╔я╔ц╔╠║╪╔╦╓Р╔╓╔С╔╧╔х║╪╔К╓╥╓ч╓╧╓╚"
@@ -5100,9 +8262,6 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ msgid "Password:"
#~ msgstr "╔я╔╧╔О║╪╔и:"
-#~ msgid "Local Printer Options"
-#~ msgstr "╔М║╪╔╚╔К╔в╔Й╔С╔©╓н╔╙╔в╔╥╔Г╔С"
-
#~ msgid "server"
#~ msgstr "╔╣║╪╔п"
@@ -5148,8 +8307,5 @@ msgstr "╔д╔Й║╪╓н╬э╨ы╓Р╦╚╓д╓╠╓К╓н╓о╩Ч╢ж╓╛╓╚╓╚╓Й╓ч╓╧"
#~ msgid "Installation CD Nr 1"
#~ msgstr "╔╓╔С╔╧╔х╔Л║╪╔╥╔Г╔С CD Nr 1"
-#~ msgid "Dialup with modem"
-#~ msgstr "╔Б╔г╔Ю╓г╔ю╔╓╔╒╔К╔╒╔ц╔в"
-
#~ msgid "Local LAN"
#~ msgstr "╔М║╪╔╚╔К LAN"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 372d5487f..320d02bbb 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-05-30 20:59+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-05-30 16:27+0100\n"
"Last-Translator: Ricky Jang <ricky@iolinux.co.kr>\n"
"Language-Team: I.O. Linux sytems <mandrake@iolinux.co.kr>\n"
@@ -15,43 +15,91 @@ msgstr ""
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:236
-msgid "Generic"
-msgstr "юо╧щюШюн╟м╣И"
-
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "╨Я╣П©ю д╚╣Е"
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "╨Я╣П©ю д╚╣Е ╪╠ец"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "X ╪╜╧Ж ╪╠ец"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X ╪╜╧Ж"
-#: ../../Xconfigurator.pm_.c:198
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "╬Н╤╡ а╬╥Ыюг гв╦Яю╩ цъ╟║го╫ц╟з╫ю╢о╠Н?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "╪Ёд║юЭ х╞╟Ф╪Ёа╓"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "╠в╥║гх д╚╣Е ╦ч╦П╦╝ ©К╥╝ ╪╠ец"
-#: ../../Xconfigurator.pm_.c:225
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "╪╜╧Ж ©и╪г ╪╠ец"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "╦П╢оем ╪╠ец"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "╦П╢оем"
-#: ../../Xconfigurator.pm_.c:239
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -72,39 +120,40 @@ msgstr ""
"╬й╣╣╥о ажюгго╫ц╠Б ╧ы╤Ь╢о╢ы. юз╫еюг ╦П╢оем©║ ╢Кгь юъ ╦П╦╔╢ы╦И ╬хюЭгя ©╣©╙ю╩\n"
"╪╠ецго╫ц╠Б ╧ы╤Ь╢о╢ы."
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "╪ЖфР ажфд╪Ж"
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "╪ЖаВ ажфд╪Ж"
-#: ../../Xconfigurator.pm_.c:285
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "╦П╢оем╟║ ╪Ёа╓╣гаЖ ╬й╬р╫ю╢о╢ы."
-#: ../../Xconfigurator.pm_.c:288
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "╠в╥║гх д╚╣Е╟║ ╬фаВ ╪Ёа╓╣гаЖ ╬й╬р╫ю╢о╢ы."
-#: ../../Xconfigurator.pm_.c:291
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "гь╩С╣╣╟║ ╪╠ец╣гаЖ ╬й╬р╫ю╢о╢ы."
-#: ../../Xconfigurator.pm_.c:304
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "юл ╪Ёа╓ю╩ ев╫╨ф╝гь ╨╦╫ц╟з╫ю╢о╠Н?"
-#: ../../Xconfigurator.pm_.c:308
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "ажюг : юл ╠в╥║гхд╚╣Е©║╪╜юг ╫цгХ╦П╣Е╢б ю╖гХгу╢о╢ы."
-#: ../../Xconfigurator.pm_.c:311
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "ев╫╨ф╝ ╪Ёа╓"
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -112,184 +161,168 @@ msgstr ""
"\n"
"╨╞╪Ж╦╕ ╧ы╡ы╬Н ╨╦╫й╫ц©ю. "
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "©║╥╞ ╧ъ╩Щ:"
-#: ../../Xconfigurator.pm_.c:373
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "%d цй Ё╡╬р╫ю╢о╢ы."
-#: ../../Xconfigurator.pm_.c:377
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "юл ╪Ёа╓юл ╦б╫ю╢о╠Н?"
-#: ../../Xconfigurator.pm_.c:385
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "©║╥╞ ╧ъ╩Щ, ╨╞╪Ж╦╕ ╧ы╡ы╬Н ╨╦╫й╫ц©ю."
-#: ../../Xconfigurator.pm_.c:393 ../../Xconfigurator.pm_.c:574
-msgid "Automatic resolutions"
-msgstr "юз╣© гь╩С╣╣"
-
-#: ../../Xconfigurator.pm_.c:394
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"╩Г©К╟║╢игя гь╩С╣╣╦╕ цё╠Б ю╖гь ╢ы╦╔ ╦П╣Е╦╕ ╫цгХго╟М юж╫ю╢о╢ы.\n"
-"х╜╦Июл ╠Т╨Щ╟е╦╠╟мют╢о╢ы...\n"
-"©Ьгя╢ы╦И аъаЖ╫цеЁ╪Ж юж╟М, ╩ъ ╪р╦╝╟║ Ё╙╦И Ё║Ё╜╟мют╢о╢ы."
-
-#: ../../Xconfigurator.pm_.c:452 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "гь╩С╣╣"
-#: ../../Xconfigurator.pm_.c:487
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "гь╩С╣╣©м ╩Ж╩Сю╩ ╪╠ецго╪╪©Д"
-#: ../../Xconfigurator.pm_.c:489
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "╨Я╣П©ю д╚╣Е: %s"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ╪╜╧Ж: %s"
-#: ../../Xconfigurator.pm_.c:499
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr ""
-#: ../../Xconfigurator.pm_.c:523
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "гь╩С╣╣"
-#: ../../Xconfigurator.pm_.c:575
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"╩Г©К ╟║╢игя гь╩С╣╣╦╕ ╟к╩Жгу╢о╢ы. ( ©╧: 800x600) \n"
-"╤╖╤╖╥н, ╫ц╫╨ешю╩ ╢ы©Н╫цеЁ╪Ж╣╣ юж╫ю╢о╢ы.\n"
-"╟Х╪сго╫ц╟з╫ю╢о╠Н?"
-
-#: ../../Xconfigurator.pm_.c:580
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"©ц╧ы╦╔ ╦П╣Е╟║ ╬Ь╫ю╢о╢ы.\n"
-"╢ы╦╔ ╨Я╣П©ю д╚╣ЕЁ╙ ╦П╢оем╦╕ ╪╠ецгь ╨╦╫й╫ц©Д."
-
-#: ../../Xconfigurator.pm_.c:920
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "е╟╨╦╣Е ╥╧юл╬ф╪Ж: %s\n"
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "╦╤©Л╫╨ а╬╥Ы: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "╦╤©Л╫╨ юЕд║╦М: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "╦П╢оем: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "╦П╢оем ╪ЖфРаж╩Гю╡: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "╦П╢оем ╪ЖаВ╪Жфд╪Ж: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "╨Я╣П©ю д╚╣Е: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "╠в╥║гх ╦ч╦П╦╝: %s kB\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "╦П╢оем ╪ЖаВ╪Жфд╪Ж: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "гь╩С╣╣"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Xю╘╣╣©Л ╪╜╧Ж: %s\n"
-#: ../../Xconfigurator.pm_.c:943
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Xю╘╣╣©Л ╪╜╧Ж: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "X-Window х╞╟Ф╪Ёа╓ю╩ аь╨Яаъ"
-#: ../../Xconfigurator.pm_.c:957
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "╦П╢оем ╨╞╟Ф"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "╨Я╣П©ю д╚╣Е ╪╠ец"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "╪╜╧Ж ©и╪г ╨╞╟Ф"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "гь╩С╣╣ ╨╞╟Ф"
-#: ../../Xconfigurator.pm_.c:961
-msgid "Automatical resolutions search"
-msgstr "юз╣© гь╩С╣╣ цё╠Б"
-
-#: ../../Xconfigurator.pm_.c:965
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "а╓╨╦ ╨╦╠Б"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "╢ы╫ц ев╫╨ф╝"
-#: ../../Xconfigurator.pm_.c:967 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "а╬╥А"
-#: ../../Xconfigurator.pm_.c:971 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "╧╚╬Ыю╩ го╠Ф ©Ьго╫й╢о╠Н?"
-#: ../../Xconfigurator.pm_.c:978
-msgid "Forget the changes?"
-msgstr "╨╞╟Ф╟╙╣Ию╩ ╧Ж╦╝╟з╫ю╢о╠Н?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "гЖюГ IP╪Ёа╓ю╩ ю╞аЖ"
-#: ../../Xconfigurator.pm_.c:996
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "%s╥н юГа╒╪схд©║ ╨╞╟Ф╟╙╣Июл юШ©К╣к╢о╢ы."
-#: ../../Xconfigurator.pm_.c:1012
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "а╬╥А╫цеЁ╤╘ Crtl-Alt-BackSpaceе╟╦╕ ╢╘╦ё╪╪©Д."
-#: ../../Xconfigurator.pm_.c:1015
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Xю╘╣╣©Л╟║ ╫цюш╣к╢о╢ы."
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -297,229 +330,229 @@ msgstr ""
"╨нфц╫ц©║ юз╣©ю╦╥н Xю╘╣╣©Л╟║ ╫цюш╣г╣╣╥о гр╪Ж юж╫ю╢о╢ы.\n"
"╢ы╫ц ╨нфцгъю╩╤╖ юз╣©ю╦╥н Xю╘╣╣╟║ ╫цюш╣г╠Ф ©Ьго╫й╢о╠Н?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"╨нфц╫ц©║ юз╣©ю╦╥н Xю╘╣╣©Л╟║ ╫цюш╣г╣╣╥о гр╪Ж юж╫ю╢о╢ы.\n"
+"╢ы╫ц ╨нфцгъю╩╤╖ юз╣©ю╦╥н Xю╘╣╣╟║ ╫цюш╣г╠Ф ©Ьго╫й╢о╠Н?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "╩У╥н©Н е╘╠Б╦╕ ╪╠ецгь аж╫й╫ц©ю"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256╩Ж (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "3╦╦2ц╣╟║аЖ ╩Ж╩С гоюлд╝╤С (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "6╦╦5ц╣╟║аЖ ╩Ж╩С гоюлд╝╤С (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "ц╣ю╟╧И╦╦╟║аЖ ╩Ж╩С ф╝╥Гд╝╤С (24bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "40╬О╟║аЖ ╩Ж╩С ф╝╥Гд╝╤С (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB юл╩С"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "г╔аь VGA, 640x480 @ 60Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "╫╢фш VGA, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 хёх╞, 1024x768 @ 87 Hz interlaced (800x600 ╬х╣й)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "╫╢фш VGA, 1024x768 @ 87 Hz interlaced, 800x600 @ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "х╝юЕ ╫╢фш VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA, 1024x768 @ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "1280x1024 @ 60 Hz ╩Г©К ╟║╢и ╦П╢оем"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "1280x1024 @ 74 Hz ╩Г©К ╟║╢и ╦П╢оем"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "1280x1024 @ 76 Hz ╩Г©К ╟║╢и ╦П╢оем"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "1600x1200 @ 70 Hz ╩Г©К ╟║╢и ╦П╢оем"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "1600x1200 @ 76 Hz ╩Г©К ╟║╢и ╦П╢оем"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "╟Ж╫╫╦с╦╝"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "╠Б╨╩"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "╫е╩Г"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "©╘юн"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "©╘╬ф"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "╠щ╧ъ©╘юн"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "юз╣©"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "╨нф╝ фдф╪╪гюг ц╧╧Ьб╟ ╪╫ем"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "╣Е╤Сюл╨Йюг ц╧╧Ьб╟ ╪╫ем(MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "LILO/grub ╪Ёд║"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "╨нф╝╥н╢У╦╕ ╬Н╣П©║ ╪Ёд║го╟М ╫мю╦╫й╢о╠Н?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub ╪Ёд║"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
#, fuzzy
msgid "None"
msgstr "©о╥А"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "╪Ёд║ е╛╥║╫╨ ╪╠ец"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "LILO аж ©и╪г"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "╨нф╝ юЕд║"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (©ю╥║╣х BIOS╣И©║╪╠ юш╣©гоаЖ ╬йю╩╪Ж╣╣ юж╫ю╢о╢ы.)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
#, fuzzy
msgid "compact"
msgstr "фВ╦к"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "╣ПфЗф╝ юл╧лаЖ╥н ╨нфц╣и╤╖╠НаЖ ╠Б╢ы╦╠ ╫ц╟ё"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "╨Я╣П©ю ╦П╣Е"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "╣ПфЗф╝ юл╧лаЖ╥н ╨нфц╣и╤╖╠НаЖ ╠Б╢ы╦╠ ╫ц╟ё"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "╬охё"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "╬охё (х╝юн)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "╦М╥игЮ ©и╪гю╩ а╕гягу╢о╢ы."
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "а╕гя"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
#, fuzzy
msgid "Bootloader main options"
msgstr "LILO аж ©и╪г"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "©и╪г: ``╦М╥игЮ ©и╪га╕гя''ю╨ ╬охё╬Ьюл ╩Г©К╣и╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "╢ы╫ц ╫ц╣╣гь аж╫й╫ц©Д"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "фп╫╨©Ж╣Е╟║ юод║гоаЖ ╬й╫ю╢о╢ы."
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
#, fuzzy
msgid ""
"Here are the different entries.\n"
@@ -528,226 +561,398 @@ msgstr ""
"LILO гв╦Я©║ ╣И╬Н╟║ юж╢б ╟м╣Иют╢о╢ы.\n"
"╢У цъ╟║го╟еЁ╙, юж╢б╟м╣Ию╩ ╪Жа╓гр╪Ж юж╫ю╢о╢ы."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "цъ╟║"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "©о╥А"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "╬Н╤╡ а╬╥Ыюг гв╦Яю╩ цъ╟║го╫ц╟з╫ю╢о╠Н?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "╦╝╢╙╫╨"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "╠Бе╦ OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "╬Н╤╡ а╬╥Ыюг гв╦Яю╩ цъ╟║го╫ц╟з╫ю╢о╠Н?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "╠Бе╦ OS (windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "юл╧лаЖ"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr ""
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "цъ╟║"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "цй╠Бх╜ ╥╔╣П╫це╘"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "юп╠Б-╬╡╠Б"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "ю╖гХ"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "гв╦Я╦М"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "╠Б╨╩"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "х╝юн"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "гв╦Я а╕╟е"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "гв╦Я╦Мю╩ ют╥бго╪╪©Д"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "╠в гв╦Я╦Мю╨ юл╧л ╩Г©К╣г╟М юж╫ю╢о╢ы."
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s %s д╚╣Е╟║ ╧ъ╟ъ╣г╬З╫ю╢о╢ы."
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "╤г ╢ы╦╔╟мю╩ ╟║аЖ╟М ╟Х╫й╢о╠Н?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "╤г ╢ы╦╔ %s юнемфДюл╫╨ д╚╣Е╦╕ ╟║аЖ╟М ╟Х╫й╢о╠Н?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "╬ф╢о©Д"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "©╧"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "го╣Е©Ч╬Н а╓╨╦╦╕ ╨╦╪╪©Д"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "%sд╚╣Е ╣Е╤Сюл╧Ж %s ╪Ёд║аъ"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(%s ╦П╣Б ╩Г©К)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "╬Н╤╡ %s ╣Е╤Сюл╧Ж╦╕ ╫ц╣╣гь ╨╬╢о╠Н?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "юз╣©╟к╩Ж"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "©и╪г ╦М╫ц"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr ""
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+
+#: ../../any.pm_.c:560
+#, fuzzy
+msgid "Module options:"
+msgstr "юЭх╜╟и╠Б ©и╪г"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"%s ╦П╣Бю╩ юп╬Н╣Июл╢б╣╔ ╫гфпгъ╫ю╢о╢ы.\n"
+"╢ы╦╔ ╟╙ю╦╥н ╢ы╫ц ╫ц╣╣гь ╨╦╫ц╟з╫ю╢о╠Н?"
+
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "©Н©╣ц╪а╕ ╪╠ецюзюн GRUB©║ ©ю╫е╟и х╞©╣гу╢о╢ы."
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "%cе╟©м %c╦╕ ╩Г©Кго©╘ ╧щюЭ╣х гв╦Яю╩ ╪╠ецго©╘ аж╫й╫ц©Д."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "╪╠ец╣х ©Н©╣ц╪а╕╥н ╨нфцгр╥а╦И ©ёем╦╕, ╪Жа╓гр╥а╦И 'e'╦╕ ╢╜╥╞аж╪╪©Д."
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "╨нфцюЭ ╦М╥и╣И ╤г╢б, ╦М╥игЮю╩ ю╖гь╪╜╢б 'c'╢╜╥╞аж╪╪©Д."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "╧щюЭ╣х гв╦Яю╦╥н %dцйхд юз╣©ю╦╥н ╨нфц╣к╢о╢ы."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "╣╔╫╨е╘е╬"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "╫цюш ╦ч╢╨"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "%d цй Ё╡╬р╫ю╢о╢ы."
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "╩Щ╪╨"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "╬П╦╤©Нф╝"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "╩Ха╕"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "фВ╦к"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "е╘╠Ба╤а╓"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "ю╞гЭ"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "╦╤©Нф╝ ю╖д║"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "/etc/fstab©║ ╬╡╠Б"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "╟М╠ч ╦П╣Е╥н юЭх╞"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "юо╧щ ╦П╣Е╥н юЭх╞"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "фдюо╥н ╨нем ╨╧╠╦"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "фдюо©║ юЗюЕ"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "гц╥нгг╥н ╨нем ╨╧╠╦"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "гц╥нгг©║ юЗюЕ"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "╦П╣н аЖ©Л╠Б"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "╦П╣н фВ╦к"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "юз╣© гр╢Г"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "╦П╣Г 1бВ фдф╪╪гюл ╩Г©Каъют╢о╢ы."
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "╢Уюл╩С фдф╪╪гю╩ цъ╟║гр╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"╢У ╦╧ю╨ фдф╪╪гю╩ ╦╦╣Е╫г╥а╦И, х╝юЕ фдф╪╪гю╩ ╦╦╣И╪Ж юж╢б фдф╪╪ггоЁ╙╦╕ аЖ©Л╪╪©Д"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "фдф╪╪г евюл╨М ╨╧╠╦"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "╣г╣╧╦╝╠Б"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "фдф╪╪г евюл╨М ╠Б╥о"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "╩У╥н╟╩╫е"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "╥Гга╧И"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "╨С╟Ь╟ё"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "╦╝╢╙╫╨"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "╣╣╫╨"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "╠Бе╦"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "╫╨©р"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "╨С╟Ь╟ё"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "╠Бе╦"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "фдюо╫ц╫╨еш ю╞гЭ:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "╩С╪╪╪Ё╦М"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -759,17 +964,17 @@ msgstr ""
"╠в фдф╪╪гюг е╘╠Б╦╕ а╤а╓гр ╟мю╩ а╕╬хгу╢о╢ы.\n"
"(╠в╟мю╩ е╛╦╞гяхд, \"е╘╠Ба╤а╓\"ю╩ е╛╦╞го╪╪©Д.)"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "╣╔юлемюг ╧И╬Вю╩ ╦уюЗ ╦╦╣Е╪╪©Д."
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "ажюг╠М╟т юпю╦╪╪©Д!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -779,77 +984,77 @@ msgstr ""
"╦И цФ╨пгт)\n"
"ю╩ Ё╡╠Б╟м©║ ажюгго╫й╫ц©ю."
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "ажюг : юл а╤юшю╨ ю╖гХгу╢о╢ы."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "©ю╥Ы"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "╦╤©Нф╝ ю╖д║: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "юЕд║: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ╣Е╤Сюл╨Й ╧╝юз: %s (╢эаЖ цъцЬюо╩сюс)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "ю╞гЭ: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "╫цюш: ╪╫ем %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "е╘╠Б: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s ╪╫ем"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "%d ╫г╦╟╢У ╨нем %d ╫г╦╟╢У ╠НаЖ\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "цй╠Бх╜╩Себ\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "╨Яцй╠Бх╜╩Себ\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "╦╤©Нф╝ ╣г╬Зю╫\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "╥╧юл╣Е юЕд║ %s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "╥Гга╧И фдюо(╣И): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -857,79 +1062,79 @@ msgstr ""
"╠Б╨╩юШю╦╥н ╨нфц╣г╢б фдф╪╪г\n"
" (lilo╦╕ ю╖гя╟мюл ╬ф╢о╤С MS-DOS boot╦╕ ю╖гя╟мюс)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "%s ╣Н╠ч\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "е╘╠Б %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "╥╧юл╣Е-╣П╫╨е╘ %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "╥Гга╧И фдюо юл╦╖: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "фдф╪╪гю╩ е╛╦╞го╪╪©Д"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "е╘╠Б : %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "ю╖д║: %s ╫г╦╟ем, %s гЛ╣Е, %s ╪╫ем\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "фдф╪╪г ю╞гЭ: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "%d ╧Ж╫╨╩С©║╪╜ ID %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "╦╤©Нф╝"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "╣©юш"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "RAID©║ цъ╟║"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "RAID╥н ╨нем а╕╟е"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "RAID ╪Жа╓"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "╥Гга╧Ию╦╥н ╩Г©К"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "гЮ╣©ю╩ ╪╠ецго╪╪©Д"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -940,7 +1145,7 @@ msgstr ""
"╬Ь╫ю╢о╢ы. ( 1024 ╫г╦╟╢У юлго©║╪╜╦╦ ╟║╢игу╢о╢ы.\n"
"LILO╦╕ ╩Г©Кгя╢ы╟М го╢У╤С╣╣ ╣©юшгоаЖ ╬й╟М, LILO юзц╪╦╕ ╩Г©Кгр╪Ж╣╣ ╬Ь╫ю╢о╢ы."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -951,59 +1156,64 @@ msgstr ""
"╣Ш╤С╪╜ /boot фдф╪╪гю╩ ╟║аЗ╪Ж ╬Ь╫ю╢о╢ы.\n"
"LILO ╨нф╝ ╦е╢оюЗ╦╕ ╩Г©Кго╥а гя╢ы╦И, ажюггь╪╜ /boot фдф╪╪гю╩ цъ╟║го╫й╫ц©ю."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "╢К╫е©║ ``%s''╦╕ ╩Г©Кгу╢о╢ы"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "``╬П╦╤©Нф╝''╦╕ ╦уюЗ ╩Г©Кго╪╪©Д"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%sюг фдф╪╪г ю╞гЭю╩ ╨╞╟Фхд юл фдф╪╪гЁ╩юг ╦П╣Г юз╥А╦╕ юр╟т ╣к╢о╢ы."
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "╟Х╪сго╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "юЗюЕю╩ гоаЖ ╬й╟М а╬╥Аго╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "фдф╪╪гю╩ ╠Б╥огоаЖ ╬й╟М а╬╥Аго╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "фдф╪╪г ю╞гЭ ╨╞╟Ф"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:483
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%sфдюою╩ ╬Н╣П©║ ╥Гга╧Ию╦╥н ╦╤©Нф╝ го╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "юЕд║ %s╦╕ ╬Н╣П©║ ╦╤©Нф╝ го╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1012,38 +1222,38 @@ msgstr ""
"╬Ь╫ю╢о╢ы.\n"
"loopbackю╩ ╦уюЗ а╕╟его╫й╫ц©ю."
-#: ../../diskdrake.pm_.c:508
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s фдф╪╪гю╩ фВ╦кго╦И, ╦П╣Г ╣╔юле╦╦╕ юр╟т ╣к╢о╢ы."
-#: ../../diskdrake.pm_.c:510
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "фВ╦каъ"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "loopback filedюн %s фВ╦еаъ"
-#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "%s фдф╪╪г фВ╦каъ"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "╦П╣Г фдф╪╪гю╩ фВ╦кгяхд,"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "╦П╣Г фдф╪╪гюг ╦П╣Г ╣╔юле╦╦╕ юр╟т╣к╢о╢ы."
-#: ../../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "юл╣©"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "╬Н╤╡ ╣П╫╨е╘╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
@@ -1072,79 +1282,84 @@ msgstr "%s ╣Е╤Сюл╨Йюг фдф╪╪г евюл╨Мю╩ юЗюЕгу╢о╢ы."
msgid "You'll need to reboot before the modification can take place"
msgstr "╨╞╟Ф╣х╟мю╩ юШ©Кго╠Б ю╖гь╪╠ ╦╝╨нфцюл гй©Дгу╢о╢ы."
-#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "╣╣╫╨ фдюо╫цф╝ешюг ╧Эю╖ ╟Х╩Йаъ"
-#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "е╘╠Б╨╞╟Ф"
-#: ../../diskdrake.pm_.c:585
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "юл фдф╪╪гюг ╦П╣Г ╣╔юле╦╦╕ ╧И╬Вго©╘╬ъ гу╢о╢ы."
-#: ../../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s фдф╪╪гюг е╘╠Б╦╕ ╨╞╟Фго╦И, ╦П╣Г ╣╔юле╦╦╕ юр╟т╣к╢о╢ы."
-#: ../../diskdrake.pm_.c:597
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "╩У╥н©Н е╘╠Б╦╕ ╪╠ецгь аж╫й╫ц©ю"
-#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr ""
-#: ../../diskdrake.pm_.c:652
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "╩У фдф╪╪г ╦╦╣И╠Б"
-#: ../../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "╫цюш ╪╫ем: "
-#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "е╘╠Б(MB) :"
-#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "фдюо╫ц╫╨еш ю╞гЭ: "
-#: ../../diskdrake.pm_.c:682
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr ""
-#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "юл фдф╪╪гю╨ loopbackю╦╥н ╩Г©К╣и╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../diskdrake.pm_.c:739
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "╥Гга╧И"
-#: ../../diskdrake.pm_.c:749
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "╥Гга╧И фдюо юл╦╖: "
-#: ../../diskdrake.pm_.c:775
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
"фдюоюл ╤г╢ы╦╔ ╥Гга╧И©║ юггь╪╜ ╩Г©К╣г╟М юж╫ю╢о╢ы, ╢ы╦╔╟мю╩ ╪╠ецгь аж╫й╫ц©ю"
-#: ../../diskdrake.pm_.c:776
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "фдюоюл юл╧л а╦юГгу╢о╢ы. ╠в╟мю╩ ╩Г©Кгу╢о╠Н?"
-#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "фдюою╩ ╪╠ецгьаж╫й╫ц©ю"
-#: ../../diskdrake.pm_.c:807
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1152,11 +1367,11 @@ msgstr ""
"╧И╬Вгр фдф╪╪гюг е╘╠Б╟║ ╟╟аЖ╬й╫ю╢о╢ы.\n"
"╟Х╪сго╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:815
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "╟Ф╟М"
-#: ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1164,77 +1379,77 @@ msgstr ""
"гц╥нгг ╣П╫╨е╘╦╕ ╣Е╤Сюл╨Й©║ Ёжю╦╫й╫ц©ю\n"
"гц╥нгг ╣П╫╨е╘юг ╦П╣Г юз╥А╦╕ юр╟т ╣к╢о╢ы."
-#: ../../diskdrake.pm_.c:830
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "фдф╪╪г евюл╨Мю╩ юю╠ч╨╧╠╦ го╫ц╟з╫ю╢о╠Н?"
-#: ../../diskdrake.pm_.c:841
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "юЕд║"
-#: ../../diskdrake.pm_.c:842
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "╥╧╨╖"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "е╘╠Б"
-#: ../../diskdrake.pm_.c:855
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "цъ╟║гр ╥╧юл╣Е╦╕ ╪╠ецго╫й╫ц©ю"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr ""
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s фВ╦к ╫гфп(╣Е╤Сюл╨Й %s)"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s╢б %s ю╞гЭюл╧г╥н фВ╦кгр╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs ╦╤©Нф╝ ╫гфп"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "╦╤©Нф╝ ╫гфп: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s╦╕ ╬П╦╤©Нф╝аъ ©ю╥Ы╧ъ╩Щ: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "╦╤©Нф╝ ю╖д║╢б ╧щ╣Е╫ц /╥н ╫цюшго©╘╬ъ гу╢о╢ы."
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "╦╤©Нф╝ ю╖д║ %s╟║ юл╧л а╦юГгу╢о╢ы.\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "╪Ьх╞ ╦╤©Нф╝ %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%s╦╕ ╬╡╠Бю╖гь ©╘╢баъ ©ю╥Ы╧ъ╩Щ: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1242,51 +1457,81 @@ msgstr ""
"©ю╥Ы ╧ъ╩Щ - ╩У╥н©Н фдюо ╫ц╫╨ешю╩ ╦╦╣И ╬Н╤╡ ©ц╧ы╦╔ юЕд║╣╣ цёю╩ ╪Ж ╬Ь╫ю╢о╢ы.юл "
"╧╝а╕╦╕ гь╟Аго╫ц╥а╦И, го╣Е©Ч╬Н╦╕ а║╟кгь ╨╦╫ц╠Б ╧ы╤Ь╢о╢ы."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "╬Н╤╡ фдф╪╪г╣╣ а╦юГгоаЖ ╬й╫ю╢о╢ы."
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "╪Ёд║ ╧в ╫ц╫╨еш ╩Г©К╫ц©║ ╩Г©Кгр ╬П╬Н╦╕ ╪╠ецгьаж╫й╫ц©ю."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "ю╖юг ╦╝╫╨ф╝©║╪╜ ╢Г╫еюг е╟╨╦╣Е ╥╧юл╬ф©Т╟З юод║го╢б╟мю╩ ╪╠ецго╫й╫ц©ю"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1294,40 +1539,38 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"╪╠ец:\n"
"\n"
@@ -1362,310 +1605,720 @@ msgstr ""
" ╩О╧ы га╦╟фц), юнаУ╪╜╧Ж(NIS), ╣╔юлем╨ёюл╫╨ ╪╜╧ЖЁ╙ ╠Бе╦ ╦П╣н ╩Г©К╟║╢иго╢ы.\n"
" ╬Н╤╡ ю╞©Кгя юЕд║(KDEЁ╙ GNOME╟╟ю╨) ╣Шю╖╟║ ╪Ёд║╣и╟мюл╤С ╠Б╢КгоаЖ ╦╤╫й╫ц©ю.\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
+msgstr ""
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"DrakXю╨ ©Л╪╠ гоЁ╙ юл╩Сюг PCI SCSI ╬ф╢Дем╟║ юж╢баЖ ╟к╩Ггу╢о╢ы.\n"
-"╦╦╬Ю ╧ъ╟ъ╣г╟М, ╠в╟мюл ╬к╥ааЬ ╣Е╤Сюл╧Ж╦╕ ╩Г©Кгя╢ы╦И юз╣©ю╦╥н \n"
-"╠в ╦П╣Бю╩ ╥н╣Егр╟мют╢о╢ы.\n"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
-"╦╦╬Ю ╢Г╫еюг SCSIд╚╣Е╟║ ISA юл╟еЁ╙, PCIаЖ╦╦ DrakX╟║ ╦П╦ё╢б гЭебюг\n"
-"╣Е╤Сюл╧Ж╦╕ ╩Г©Кго╢б╟мюлЁ╙ SCSIд╚╣Е╟║ ╬ф©╧ ╬Ь╢Ь╟ё©║ ╟║аЖ╟М юж╢баЖ\n"
-"╬Ь╢баЖ©║ ╢Кгь ╪╠ецгь╬ъ гу╢о╢ы. ╦╦╬Ю ╟║аЖ╟М южаЖ ╬й╢ы╦И \"╬ф╢о©ю\"\n"
-"╦╕ ╪╠ецго╫ц╟М, юж╢ы╦И \"©╧\"╦╕ ╪╠ецго╫й╫ц©ю. ╣Е╤Сюл╧Ж ╦╝╫╨ф╝╟║\n"
-"Ё╙е╦Ё╞╟мюл╟М, ╟е╠Б╪╜ гь╢Гго╢б д╚╣Е╦╕ ╪╠ецго╫й╫ц©ю.\n"
"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"╣Е╤Сюл╧Ж╦╕ ╪╠ецгя хд©║, DrakX╟║ ©и╪гю╩ ╦М╫цго╠Ф ©Ьго╢баЖ╦╕ ╧╟ю╩╟м\n"
-"ют╢о╢ы. ╦уюЗ, юз╣©ю╦╥н го╣Е©Ч╬Н╦╕ ╟╗аЖго╣╣╥о го╫й╫ц©Д. ╨╦еК юъ юш\n"
-"╣©гу╢о╢ы.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"╦╦╬Ю ╠в╥╦аЖ ╬й╢ы╦И, ╧╝╪╜Ё╙ ю╘╣╣©ЛаН(╢Г╫еюг ╫ц╫╨еш©║ ╪Ёд║╣г╬Н юж╢ы╦И)\n"
-"╧в ╪Ёд║ ╟║юл╣Е©║╪╜ а╕╟Ьго╢б го╣Е©Ч╬Н а╓╨╦╦╕ юьаЖ ╦╤╫й╫ц©ю. ╠в╟м╣Ию╩ю╨\n"
-"╣Е╤Сюл╧Ж╟║ гй©Д╥н го╢б ©и╪гю╩ а╕╟Ьгь аы╟мют╢о╢ы."
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:257
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-m to set the mount point\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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
+
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:358
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:363
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"Please be patient."
msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:371
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:376
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:567
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
msgstr ""
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
+msgstr ""
+
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1689,34 +2342,33 @@ msgid ""
"and maintenance purposes."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1727,7 +2379,7 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1744,14 +2396,45 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1763,57 +2446,61 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -1822,96 +2509,117 @@ msgid ""
"the additional instructions."
msgstr ""
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "╬П╬Н ╪╠ец"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "╪Ёд║ е╛╥║╫╨ ╪╠ец"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "го╣Е ╣П╫╨е╘ ╪╠ец"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "╦╤©Л╫╨ ╪Ёа╓"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "е╟╨╦╣Е ╪╠ец"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "╠Бе╦"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "фдюо╫ц╫╨еш ╪Ёа╓"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "фдф╪╪г фВ╦к"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "╫ц╫╨еш ╪Ёд║"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "╬охё"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "╫ц╟ё╢К ╪Ёа╓"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "╪╜╨Я╫╨ ╪Ёа╓"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "га╦╟ем ╪Ёа╓"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "root фп╫╨©Ж╣Е ╪Ёа╓"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "╩Г©Кюз цъ╟║"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "╨нф╝ ╣П╫╨е╘ а╕юш"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "╨нф╝ ╥н╢У ╪Ёд║"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "X ╪Ёа╓"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "╪Ёд║ Ё║Ё╩╠Б"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "$f фдюою╩ юп╢баъ©║ ©ю╥Ы╟║ ╩Щ╟Е╫ю╢о╢ы."
+
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "╬Н╤╡ а╬╥Ыюг ╦╤©Л╫╨╦╕ ╩Г©Кго╫й╢о╠Н?"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "╬Н╤╡ а╬╥Ыюг ╦╤©Л╫╨╦╕ ╩Г©Кго╫й╢о╠Н?"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -1921,220 +2629,238 @@ msgstr ""
"юл╦╕ ю╖гь╪╜, фдф╪╪гю╩ ╩Щ╪╨го╪╪©Д. (юл╧л юж╢б фдф╪╪гю╩ е╛╦╞го╟еЁ╙).\n"
"╠в╦╝╟М Ё╙╪╜, ``╦╤©Нф╝ ю╖д║''╦╕ е╛╦╞гяхд '/'ю╦╥н ╪Ёа╓го╫й╫ц©ю."
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"го╣Е ╣П╫╨е╘юг фдф╪╪г евюл╨Мю╩ юпю╩╪Ж ╬Ь╫ю╢о╢ы. Ёй╧╚╨╞гЭ╣х╟е ╟╟╫ю╢о╢ы. :(\n"
-"юъ╦Ь╣х фдф╪╪гю╩ ╨Я©Л╠Б ю╖гь ЁК╥бгр╟мют╢о╢ы."
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "╫╨©р фдф╪╪гю╨ ╧щ╣Е╫ц гй©Дгу╢о╢ы."
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"╣П╫╨е╘╣Е╥╧е╘╟║ фдф╪╪г евюл╨Мю╩ а╓х╝хВ юп╬Н©ю╢б╣╔ ╫гфпгъ╫ю╢о╢ы.\n"
-"╢Г╫еюг ╦ПгХ╫и(?)ю╦╥н ╟Х╪сго╫й╫ц©ю."
+"╫╨©р фдф╪╪гюл ╬Ь╫ю╢о╢ы.\n"
+"\n"
+"╟Х╪с аЬгЮгу╢о╠Н?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "╥Гф╪ фдф╪╪гю╩ цё╟М юж╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "╥Гга╧Ию╦╥н ╩Г©К"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "а╓╨╦"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: юл╟мю╨ ╥Гф╝ фдф╪╪гюл ╬ф╢у╢о╢ы. ╢ы╦╔╟мю╩ ╪╠ецгь аж╫й╫ц©ю."
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "фдф╪╪г фВ╦к"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "╥Гф╝ фдф╪╪гюл ╬Ь╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "фдф╪╪г евюл╨Мю╩ юю╠ч╨╧╠╦ го╫ц╟з╫ю╢о╠Н?"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS domainюл ╬ф╢я╟мю╦╥н╢б ╨Й╥нф╝дЁ╫╨ф╝╦╕ ╩Г©Кгр╪Ж ╬Ь╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "╥Гга╧Ию╦╥н ╩Г©К"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "$f фдюою╩ юп╢баъ©║ ©ю╥Ы╟║ ╩Щ╟Е╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Linux4Winю╩ Ёж╢б╣╔ ╩Г©Кгр фдф╪╪гю╩ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "е╘╠Б ╪╠ец"
-#: ../../install_steps.pm_.c:174
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr ""
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "╥Гф╝ фдф╪╪г е╘╠Б(MB): "
-#: ../../install_steps.pm_.c:318
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "╫╨©р фдф╪╪г е╘╠в(MB): "
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_steps.pm_.c:391
-#, c-format
-msgid "Welcome to %s"
-msgstr "%s©║ ©ю╫е╟мю╩ х╞©╣гу╢о╢ы."
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
-#: ../../install_steps.pm_.c:743
-msgid "No floppy drive available"
-msgstr "гц╥нгг ╣Е╤Сюл╨Й╦╕ ╩Г©Кгр ╪Ж ╬Ь╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "╣╣╫╨ фдюо╫цф╝ешюг ╧Эю╖ ╟Х╩Йаъ"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "%s ╢э╟Х╥н Ёя╬Н╟╘╢о╢ы.\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "╫╨©р фдф╪╪гю╨ ╧щ╣Е╫ц гй©Дгу╢о╢ы."
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"╫╨©р фдф╪╪гюл ╬Ь╫ю╢о╢ы.\n"
-"\n"
-"╟Х╪с аЬгЮгу╢о╠Н?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "╬Н╤╡ ╪╫ем╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "юЭц╪ е╘╠Б: "
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "фдф╪╪г"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "╧Жа╞: %s\n"
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
+msgstr "юз╣© е╘╠Б а╤а╓ ╫гфп"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "е╘╠Б: %d KB\n"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "╪Ёд║го╟Мюз го╢б фпе╟аЖ╦╕ ╪╠ецго╪╪©Д."
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "а╓╨╦"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "╪Ёд║"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "╪Ёд║аъ"
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "%s фдф╪╪гюг е╘╠Б╦╕ ╨╞╟Фго╦И, ╦П╣Г ╣╔юле╦╦╕ юр╟т╣к╢о╢ы."
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "юА╫ц╦╦ ╠Б╢ы╦╝╪╪©Д, "
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "юЭ╧╝╟║"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Ё╡ю╨ ╫ц╟ё "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "юЭц╪ ╫ц╟ё "
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "╪Ёд║ аь╨Яаъют╢о╢ы"
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"%s го╣Е ╣Е╤Сюл╨Йюг фдф╪╪г юш╬Вю╩ гр ╪Ж юж╫ю╢о╢ы.\n"
+"╪Ёа╓ ©о╥Ахд, 'w'╦╕ ╢╜╥╞ юЗюЕго╢б╟мю╩ юьаЖ╦╤╫й╫ц©ю."
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
-#, c-format
-msgid "Installing package %s"
-msgstr "%s фпе╟аЖ ╪Ёд║аъ"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "╬Н╤╡ ю╘╣╣©Л фдф╪╪г╣╣ цёю╩ ╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "╟Х╪с аЬгЮгу╢о╠Н?"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "╢Уюл╩С фдф╪╪гю╩ цъ╟║гр╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "фпе╟аЖ╦╕ а╓╨Яго╢баъ ©║╥╞╧ъ╩Щ:"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "юл╧л юж╢б X11 ╪Ёа╓ю╩ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "фдф╪╪г ю╞гЭ: %s\n"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "╢ыю╫ ╪Ёд║ ю╞гЭаъ гоЁ╙╦╕ ╪╠ецгь аж╫й╫ц©ю."
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Ёвф╝©В©║╪╜ ╟║а╝©х"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "╬Н╤╡ ю╘╣╣©Л фдф╪╪г╣╣ цёю╩ ╪Ж ╬Ь╫ю╢о╢ы."
+#: ../../install_interactive.pm_.c:238
+#, fuzzy
+msgid "Bringing down the network"
+msgstr "Ёвф╝©В©║╪╜ ╟║а╝©х"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Lnx4winю╩ ю╖гя цФ╨пгя ╟Ь╟ёюл ╬Ь╫ю╢о╢ы."
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:375
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "юз╣© е╘╠Б а╤а╓ ╫гфп"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "%s©║ ©ю╫е╟мю╩ х╞©╣гу╢о╢ы."
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Linux4Winю╩ Ёж╢б╣╔ ╩Г©Кгр фдф╪╪гю╩ ╪╠ецгь аж╫й╫ц©ю."
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "гц╥нгг ╣Е╤Сюл╨Й╦╕ ╩Г©Кгр ╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "е╘╠Б ╪╠ец"
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "%s ╢э╟Х╥н Ёя╬Н╟╘╢о╢ы.\n"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "╥Гф╝ фдф╪╪г е╘╠Б(MB): "
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:288
-msgid "Swap partition size in MB: "
-msgstr "╫╨©р фдф╪╪г е╘╠в(MB): "
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "╢ыю╫ ╪Ёд║ ю╞гЭаъ гоЁ╙╦╕ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "╪╠ецгя фпе╟аЖ ╠в╥Люг юЭц╪ е╘╠Б╟║ %d MB©║ ╟║╠У╫ю╢о╢ы.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2143,7 +2869,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2153,103 +2879,190 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "╪Ёд║гр фпе╟аЖюг фш╪╬евюлаЖ"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "╪Ёд║го╟Мюз го╢б фпе╟аЖ╦╕ ╪╠ецго╪╪©Д."
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "а╓╨╦"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "╪Ёд║"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "юга╦╪╨ юз╣© ╟к╩Г"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "ф╝╦╝ х╝юЕ"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "ф╝╦╝ а╒╠Б"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "╠в╥Л╨╟/фпе╟аЖ╨╟ а╓╥д еД╠ш"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "юъ╦Ь╣х фпе╟аЖ"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "╧Жа╞: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "е╘╠Б: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "аъ©Д╪╨: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "юЭц╪ е╘╠Б: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "юл фпе╟аЖ╦╕ ╧Ж╦╠╪Ж ╬Ь╫ю╢о╢ы. юл╧л ╪Ёд║ ╣г╬З╫ю╢о╢ы."
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "╢ыю╫ фпе╟аЖ╣Июл а╕╟е╣к╢о╢ы."
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "╢ыю╫ фпе╟аЖ╣Июл ╪Ёд║/а╕╟е ╣и╟л╢о╢ы."
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "юл фпе╟аЖ╦╕ ╪╠ец/╧Ж╦╡ гр╪Ж ╬Ь╫ю╢о╢ы."
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "юл╟мю╨ юг╧╚юШюн фпе╟аЖют╢о╢ы. ╧щ╣Е╫ц ╪╠ец╣г╬Н╬ъ го╢о╢ы."
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "юл фпе╟аЖ╦╕ ╧Ж╦╠╪Ж ╬Ь╫ю╢о╢ы. юл╧л ╪Ёд║ ╣г╬З╫ю╢о╢ы."
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
#, fuzzy
msgid "You can't unselect this package. It must be upgraded"
msgstr "юл фпе╟аЖ╦╕ ╧Ж╦╠╪Ж ╬Ь╫ю╢о╢ы. юл╧л ╪Ёд║ ╣г╬З╫ю╢о╢ы."
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "юл фпе╟аЖ╦╕ ╧Ж╦╠╪Ж ╬Ь╫ю╢о╢ы. юл╧л ╪Ёд║ ╣г╬З╫ю╢о╢ы."
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "╢ыю╫ фпе╟аЖ╣Июл ╪Ёд║/а╕╟е ╣и╟л╢о╢ы."
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "юл фпе╟аЖ╦╕ ╪╠ец/╧Ж╦╡ гр╪Ж ╬Ь╫ю╢о╢ы."
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "╪Ёд║аъ"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "аЬгЮаъ"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "юА╫ц╦╦ ╠Б╢ы╦╝╪╪©Д, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Ё╡ю╨ ╫ц╟ё "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "юЭц╪ ╫ц╟ё "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "цК╪р"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "╪Ёд║ аь╨Яаъют╢о╢ы"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d фпе╟аЖ"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "%s фпе╟аЖ ╪Ёд║аъ"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "╩Г©Кюз цъ╟║"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2259,194 +3072,397 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "е╘╠Ба╤а╓"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "╟Х╪с аЬгЮгу╢о╠Н?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "фпе╟аЖ╦╕ а╓╨Яго╢баъ ©║╥╞╧ъ╩Щ:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "╢ыю╫ фпе╟аЖ╦╕ ╪Ёд║аъ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы: "
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "©ю╥Ы ╧ъ╩Щ"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "╩Г©Кгр ╬П╬Н╦╕ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "е╟╨╦╣Е"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "е╟╨╦╣Е ╥╧юл╬ф©Т ╪╠ец"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "╪Ёд║хд ╢ы╦╔ ╢ы╦╔ ╬П╬Н╦╕ ╪╠ецгр╪Ж юж╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "╥Гф╝ фдф╪╪г"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "╫ц╫╨еш©║╪╜ ╥Гф╝ фдф╪╪г(/)ю╨ ╬Н╤╡╟мют╢о╠Н?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "╪Ёд║ ю╞гЭ"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "╪Ёд║ ю╞гЭю╩ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "╪Ёд║/╬В╠в╥╧юл╣Е"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "╪Ёд║Ё╙ ╬В╠в╥╧юл╣Е ют╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:110
-#, fuzzy
-msgid "Automated"
-msgstr "IP юз╣© гр╢Г"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "╠гюЕ╩Г╬Г"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "цжюШх╜"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "юЭ╧╝╟║"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"а╓╦╩╥н юЭ╧╝╟║ ют╢о╠Н? юЕЁ╜юл ╬ф╢у╢о╢ы.\n"
"╟╜╥бго╟т гр╪Ж южю╩аЖ╢б ╦Т╤С╣╣, ©╘╠Б юж╢б╟м╣Ию╨ ╦е©Л ю╖гХгу╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "╬В╠в╥╧юл╣Е"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "юо╧щ╩Г©Кюз"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "а╓╨╦"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "╟Ё╧ъюз©К"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "╪╜╧Ж"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "╬Н╤╡ ©К╣╣╥н ╩Г©Кго╫й╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "╬Н╤╡ а╬╥Ыюг ╦╤©Л╫╨╦╕ ╩Г©Кго╫й╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "╦╤©Л╫╨ фВф╝"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "PCMCIS д╚╣Е х╞╟Ф╪Ёа╓аъ..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE ╪Ёа╓аъ"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "╩Г©К╟║╢игя фдф╪╪гюл ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "╥Гф╝ фдф╪╪гю╦╥н ╩Г©Кгр фдф╪╪гю╩ ╪╠ецгь аж╫й╫ц©ю."
-
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "╦╤©Нф╝ ю╖д║╦╕ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"го╣Е ╣П╫╨е╘юг фдф╪╪г евюл╨Мю╩ юпю╩╪Ж ╬Ь╫ю╢о╢ы. Ёй╧╚╨╞гЭ╣х╟е ╟╟╫ю╢о╢ы. :(\n"
+"юъ╦Ь╣х фдф╪╪гю╩ ╨Я©Л╠Б ю╖гь ЁК╥бгр╟мют╢о╢ы."
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"╣П╫╨е╘╣Е╥╧е╘╟║ фдф╪╪г евюл╨Мю╩ а╓х╝хВ юп╬Н©ю╢б╣╔ ╫гфпгъ╫ю╢о╢ы.\n"
+"╢Г╫еюг ╦ПгХ╫и(?)ю╦╥н ╟Х╪сго╫й╫ц©ю."
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "╥Гф╝ фдф╪╪г"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "╫ц╫╨еш©║╪╜ ╥Гф╝ фдф╪╪г(/)ю╨ ╬Н╤╡╟мют╢о╠Н?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "фдф╪╪г евюл╨М ╨╞╟Ф╩Ггвю╩ юШ©Кго╥а╦И ╦╝╨нфцю╩ гь╬ъ гу╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "фВ╦кгр фдф╪╪гю╩ ╪╠ецго╫й╫ц©ю"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "╧Х╣Е ╨М╥╟ ╟к╩Г╦╕ гу╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "фдф╪╪г фВ╦к"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, fuzzy, c-format
msgid "Creating and formatting file %s"
msgstr "loopback фдюо %s╦╕ ╩Щ╪╨го╟М фВ╦к"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "╟║╢игя фпе╟аЖ╦╕ цё╟М юж╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "╬В╠в╥╧юл╣Егр фпе╟аЖ╦╕ ╟к╩Жаъют╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr "юл фпе╟аЖ╦╕ ╧Ж╦╠╪Ж ╬Ь╫ю╢о╢ы. юл╧л ╪Ёд║ ╣г╬З╫ю╢о╢ы."
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "юо╧щ╩Г©Кюз"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "╠гюЕ╩Г╬Г"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "цжюШх╜"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "фпе╟аЖ ╠в╥Л ╪╠ец"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "╟Ё╨╟ фпе╟аЖ ╪╠ец"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2454,173 +3470,11 @@ msgstr ""
" %s фпе╟аЖ ╪Ёд║аъ \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "╪Ёд║юЭ х╞╟Ф╪Ёа╓"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "гЖюГ IP╪Ёа╓ю╩ ю╞аЖ"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Ёвф╝©В х╞╟Фю╩ аЖ╠щ ╢ы╫ц ╪Ёа╓"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Ёвф╝©В ╪ЁюЗю╩ гоаЖ ╬й╫ю╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Ёвф╝©В х╞╟Ф ╪Ёа╓"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "аЖ©╙ Ёвф╝©Вю╨ юл╧л ╪Ёа╓╣г╬Н юж╫ю╢о╢ы. ╬Н╤╩╟т го╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "аЖ©╙ Ёвф╝©В ╪Ёа╓ю╩ го╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "Ёвф╝©В д╚╣Е╦╕ цёю╩╪Ж ╬Ь╫ю╢о╢ы"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "╦П╣╘ ╪Ёа╓"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "╦П╣╘ю╦╥н юЭх╜а╒╪с х╞╟Фю╩ ╪Ёа╓го╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "%s Ёвф╝©В д╚╣Е ╪Ёа╓аъ"
-
-#: ../../install_steps_interactive.pm_.c:464
-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)"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP юз╣© гр╢Г"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP аж╪р:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Ёщ╦╤╫╨е╘:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP аж╪р╢б 1.2.3.4╟З ╟╟ю╨ гЭ╫дюл╬Н╬ъ гу╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Ёвф╝©В ╪Ёа╓"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 аж╪р╣╣ ют╥бгь╬ъ гу╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS ╪╜╧Ж:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "╟тюлф╝©Чюл юЕд║:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "╟тюлф╝©Чюл:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "хё╫╨ф╝ юл╦╖:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "╦П╣╘ю╩ цёю╩╠Н©Д?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "юЭх╜╟и╠Б ©и╪г"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "©╛╟А юл╦╖"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "юЭх╜ ╧Ьхё"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "╥н╠Д ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "╩Г©Кюз юнаУ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "╫╨е╘╦Ёф╝ ╠Б╧щ"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "ем╧лЁ╞ ╠Б╧щ"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "╣╣╦чюн юл╦╖"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "аж DNS ╪╜╧Ж"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "╨н DNS ╪╜╧Ж"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2659,88 +3513,94 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "фпе╟аЖ╦╕ ╧чю╩ ╧л╥╞ ╩Гюлф╝╦╕ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "╩Г©К╟║╢игя фпе╟аЖюг ╦╝╫╨ф╝╦╕ ╧л╥╞ ╩Гюлф╝©║ а╒╪сгь╪╜ ╧ч╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "╬Н╤╡ ╫ц╟ё╢К╦╕ ╩Г©Кго╫й╢о╠Н?"
+msgstr "╬Н╤╡ ©К╣╣╥н ╩Г©Кго╫й╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "го╣Е©Ч╬Н ╫ц╟ёюл GTM©║ ╦бцГа╝ юж╫ю╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "╬охё ╬Ь╫©"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Shadow file╩Г©К"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "MD5 ╬охё ╩Г©К"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "NIS ╩Г©К"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "юл ╬охё╢б Ёй╧╚ ╢э╪Ьгу╢о╢ы.( юШ╬Н╣╣ %d ╠шюз╢б Ёя╬Н╬ъ гу╢о╢ы)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "NIS юнаУ"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS ╣╣╦чюн"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS ╪╜╧Ж"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "╩Г©Кюз цъ╟║"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "╩Г©Кюз цъ╟║"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(юл╧л %s╢б(ю╨) цъ╟║╣г╬З╫ю╢о╢ы.)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -2750,60 +3610,78 @@ msgstr ""
"╩Г©Кюз ют╥б\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "╫га╕ юл╦╖"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "╩Г©Кюз ╬фюл╣П"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "юл ╬охё╢б Ёй╧╚ ╢э╪Ьгу╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "╩Г©Кюз ╬фюл╣П ют╥бгь аж╫й╫ц©ю"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ю╞юЗ ╬фюл╣П╢б ©╣╧╝ ╪р╧╝юзЁ╙ ╪Щюз, '-' ╠в╦╝╟М '_' ╦╦ фВгт╣и╪Ж юж╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "юл ю╞юЗ ╬фюл╣П╢б юл╧л цъ╟║╣г╬З╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "ц╧╧Ьб╟ гц╥нгг ╣Е╤Сюл╨Й"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "╣н╧Ьб╟ гц╥нгг ╣Е╤Сюл╨Й"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "╩Щ╥╚"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -2817,182 +3695,146 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "ак╪шгу╢о╢ы. ╩Г©К╟║╢игя гц╥нгг ╣Е╤Сюл╨Й╟║ ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "╨нф╝ ╣П╫╨е╘╦╕ ╦╦╣И╤╖ ╩Г©Кгр гц╥нгг ╣Е╤Сюл╨Й╦╕ ╪╠ецгь аж╫й╫ц©ю"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "гц╥нгг ╣П╫╨е╘╦╕ %s ╣Е╤Сюл╨Й©║ Ёжю╦╫й╫ц©ю"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "╨нф╝ ╣П╫╨е╘ ╩Щ╪╨аъ"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO ╪Ёд║ ╫гфп. ╢ыю╫╟З ╟╟ю╨ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "SILO╦╕ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO аж ©и╪г"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "фдф╪╪г"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "юл юл╦╖ю╨ ╧З╫А ╩Г©Каъют╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO ╪Ё╫ц ╫гфп. ╢ыю╫╟З ╟╟ю╨ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "╨нф╝ ╥н╢У аь╨Яаъ"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "aboot╦╕ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
+msgstr "SILO╦╕ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "га╤Т╫ц х╞╟Ф╪Ёа╓"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "ю╔ га╤Т╫ц"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP га╤Т╫ц"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "га╤Т╫ц юл╦╖ю╨ httP://... юл╬Н╬ъ гу╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "га╤Т╫ц юл╦╖ю╨ ftp://... юл╬Н╬ъ гу╢о╢ы."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "LILO ╪Ёд║ ╫гфп. ╢ыю╫╟З ╟╟ю╨ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "╨╦╬х©║ ╫е╟Ф╬х╬╦"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "╬фаж ╧л╬Югт"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "юЗ╪Жаь"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "╨╦еК"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "ЁТю╫"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "цж╟Мюг ╨╦╬х"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "╪╪╨н╪Ёа╓ ╩Ггв"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(╣╔юле╦ ╨╞гЭю╩ юою╦еЁ╪Ж╣╣ юж╫ю╢о╢ы)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "го╣Е ╣Е╤Сюл╨Й╦╕ цжюШх╜го╟з╫ю╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "╨╦╬х ╢э╟Х╦╕ ╪╠ецгь аж╪╪©Д"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "а╓х╝гя RAM е╘╠Б╦╕ ют╥бгь аж╪╪©Д (found %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "юл╣©гЭ юЗюЕюЕд║ ╧л╣П╬Н юз╣© ╦╤©Нф╝"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "╨нфц╫ц /tmp ╣П╥╨еД╦╝ юз╣© ц╩╪р"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "╢ыаъ profiles ╟║╢и"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "╫цюш╫ц num lockе╟ ╩Г©К"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "╥╔ е╘╠Б╦╕ MB╥н ют╥бго╪╪©Д"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "ЁТю╨ ╨╦╬х ╥╧╨╖©║╪╜╢б supermount╦╕ ╩Г©Кгр ╪Ж ╬Ь╫ю╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "PCI юЕд║╣Ию╩ цё╫ю╢о╠Н?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "юл╧л юж╢б X11 ╪Ёа╓ю╩ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ╣Е╤Сюл╨Й©║ ╨С гц╥нгг ╣П╫╨е╘╦╕ Ёжю╦╫й╫ц©ю"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "юз╣© ╪Ёд║ гц╥нгг ╣П╫╨е╘ ╩Щ╪╨"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3002,7 +3844,7 @@ msgstr ""
"\n"
"а╓╦╩ аЖ╠щ а╬╥А го╫ц╟з╫ю╢о╠Н?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3022,146 +3864,18 @@ msgstr ""
"╪Ёд║хд ╫ц╫╨еш ╪Ёа╓©║ ╢Кгя а╓╨╦╢б ╟Ь╫д ╦г╣Е╥╧юле╘ ╦╝╢╙╫╨ ю╞юЗ ╟║юл╣Е╦╕\n"
"бЭ╟Мго╫ц╠Б ╧ы╤Ь╢о╢ы."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "╫ц╫╨еш а╬╥А"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%sд╚╣Е ╣Е╤Сюл╧Ж %s ╪Ёд║аъ"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(%s ╦П╣Б ╩Г©К)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "╬Н╤╡ %s ╣Е╤Сюл╧Ж╦╕ ╫ц╣╣гь ╨╬╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "юз╣©╟к╩Ж"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "©и╪г ╦М╫ц"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"%s ╦П╣Бю╩ юп╬Н╣Июл╢б╣╔ ╫гфпгъ╫ю╢о╢ы.\n"
-"╢ы╦╔ ╟╙ю╦╥н ╢ы╫ц ╫ц╣╣гь ╨╦╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "PCMCIAд╚╣Е╦╕ ╟к╩Жго╫ц╟з╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "PCMCIS д╚╣Е х╞╟Ф╪Ёа╓аъ..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "%s юЕд║╣Ию╩ цё╫ю╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s д╚╣Е╟║ ╧ъ╟ъ╣г╬З╫ю╢о╢ы."
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "╤г ╢ы╦╔╟мю╩ ╟║аЖ╟М ╟Х╫й╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "╤г ╢ы╦╔ %s юнемфДюл╫╨ д╚╣Е╦╕ ╟║аЖ╟М ╟Х╫й╢о╠Н?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "╬ф╢о©Д"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "©╧"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "го╣Е©Ч╬Н а╓╨╦╦╕ ╨╦╪╪©Д"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Ёвф╝©В©║╪╜ ╟║а╝©х"
-
-#: ../../install_steps_interactive.pm_.c:1207
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "Ёвф╝©В©║╪╜ ╟║а╝©х"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "╦╝╢╙╫╨-╦г╣Е╥╧юле╘ ╪Ёд║ %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> гв╦Я╟ё юл╣© | <Space> ╪╠ец | <F12> ╢ыю╫ х╜╦И"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"%s го╣Е ╣Е╤Сюл╨Йюг фдф╪╪г юш╬Вю╩ гр ╪Ж юж╫ю╢о╢ы.\n"
-"╪Ёа╓ ©о╥Ахд, 'w'╦╕ ╢╜╥╞ юЗюЕго╢б╟мю╩ юьаЖ╦╤╫й╫ц©ю."
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "╠Б╢ы╥а аж╪╪©Д"
@@ -3171,7 +3885,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr ""
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "юъ╦Ь╣х ╪╠ецют╢о╢ы, ╢ы╫ц го╪╪©Д\n"
@@ -3185,465 +3899,991 @@ msgstr " ? (╠Б╨╩ %s) "
msgid "Your choice? (default %s) "
msgstr "╢Г╫еюг ╪╠ецю╨? (╠Б╨╩ %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "╪╠ецго╪╪©Д (╠Б╨╩ю╨ %s юл╦Г, `none' ют╥б╫ц ╩Щ╥╚) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "ц╪дз"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "╣╤юо"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "╣Е╨╦╤Т"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "╫╨фДюн"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "ги╤У╣Е"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "га╤Ш╫╨"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "ЁК╦ё©Чюл"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "фЗ╤У╣Е"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "╥╞╫ц╬ф"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "©╣╠╧"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "╧л╠╧"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "╧л╠╧ (╠╦╧ЖюЭ)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "╧л╠╧ (е╦юз╠Б)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "╨╖╠Б©║"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "╨р╟║╦╝╬ф"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "╨Й╤СаЗ (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
#, fuzzy
msgid "Belarusian"
msgstr "╨р╟║╦╝╬ф"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "╫╨ю╖╫╨ (╣╤╬Н)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "╫╨ю╖╫╨ (╨р╬Н)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "╣╤юо (dead е╟ ╬Ью╫)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "╣╖╦╤е╘"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "╣Е╨╦╤Т"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "ЁК╦ё©Чюл"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "©║╫╨еД╢о╬ф"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "╠в╦╝╫╨"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "гК╟║╦╝"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "е╘╥н╬фф╪╬ф"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "юл╫╨╤С©╓"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "юле╩╦╝╬ф"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "╬фюл╫╫╥ё╣Е"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "юле╩╦╝╬ф"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "╤Сф╬ ╬ф╦ч╦╝д╚"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Ёв╣╗╤У╣Е"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "╦╝еУ╬ф╢о╬ф AZERTY"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "╦╝еУ╬ф╢о╬ф AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "фВ╥ГеУд╝"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "дЁЁ╙╢ы (дЫ╨╓)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "╫╨©Ч╣╖"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "╫╫╥н╧ые╟╬ф"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "еб╠╧"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US е╟╨╦╣Е (╠╧а╕)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr ""
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "ю╞╟М ╫╫╤С╨Я╬ф (╤Сф╬ ╥╧юл╬ф©Т)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - ╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "╥наЖеь ╦╤©Л╫╨╦г/фш╫╨ф╝╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "╦╤юле╘╥н╪ргаф╝ юнез╦╝╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "ALPS ╠ш╤Сюл╣ЕфВюнф╝"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "дк╫лео ╬ее╥ ╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "аЖ╢о╬Н╫╨ Ёщ╫╨е╘╥я"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "юо╧щюШюн╟м╣И"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "╥╧╨╖"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "╦╤юле╘╥н╪ргаф╝ юнез╦╝╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "юо╧щюШюн 2╧Жф╟ ╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "юо╧щюШюн 3╧Жф╟ ╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "╥наЖеь ╦╤©Л╫╨╦г/фш╫╨ф╝╦╤©Л╫╨"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "╦╤©Л╫╨ ╫ц╫╨еш (╫ц╦╝╬С)"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "╥наЖеь CC ╫ц╦╝аН (╫ц╦╝╬С)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "╥наЖеь ╦╤©Л╫╨╦г+/фш╫╨ф╝╦╤©Л╫╨+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM ╫ц╦╝аН"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM хВф╝е╦╨М╥©"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "╥наЖеь ╦╤©Л╫╨ (╫ц╦╝╬С, ©ю╥║╣х C7 гЭеб)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "╦╤©Л╫╨ ╬Ью╫"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+#, fuzzy
+msgid "none"
+msgstr "©о╥А"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "╦╤©Л╫╨ ╬Ью╫"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "юл╟мюл ╦б╫ю╢о╠Н?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "га╤Т╫ц х╞╟Ф╪Ёа╓"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "юл ╪Ёа╓ю╩ ев╫╨ф╝гь ╨╦╫ц╟з╫ю╢о╠Н?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "╬Н╤╡ ╣П╫╨е╘╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "©╛╟А юл╦╖"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "х╞╟Ф╪Ёа╓"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "га╤Т╫ц х╞╟Ф╪Ёа╓"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "юЭх╜ ╧Ьхё"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "╣╣╦чюн юл╦╖"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "╦╤©Нф╝ ю╖д║"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "╬охё"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "╬охё"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "ев╫╨ф╝ ╪Ёа╓"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr ""
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr ""
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "╟Х╪сго╫ц╟з╫ю╢о╠Н?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "╬Н╤╡ ╫ц╟ё╢К╦╕ ╩Г©Кго╫й╢о╠Н?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "╩У╥н©Н е╘╠Б╦╕ ╪╠ецгь аж╫й╫ц©ю"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "©Н©╣ц╪а╕ ╪╠ецюзюн GRUB©║ ©ю╫е╟и х╞©╣гу╢о╢ы."
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "юл ╪Ёа╓ю╩ ев╫╨ф╝гь ╨╦╫ц╟з╫ю╢о╠Н?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%cе╟©м %c╦╕ ╩Г©Кго©╘ ╧щюЭ╣х гв╦Яю╩ ╪╠ецго©╘ аж╫й╫ц©Д."
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "х╞╟Ф╪Ёа╓"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "╪╠ец╣х ©Н©╣ц╪а╕╥н ╨нфцгр╥а╦И ©ёем╦╕, ╪Жа╓гр╥а╦И 'e'╦╕ ╢╜╥╞аж╪╪©Д."
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "aboot╦╕ ╩Г©Кго╫ц╟з╫ю╢о╠Н?"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "╨нфцюЭ ╦М╥и╣И ╤г╢б, ╦М╥игЮю╩ ю╖гь╪╜╢б 'c'╢╜╥╞аж╪╪©Д."
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "╦П╣╘ю╩ цёю╩╠Н©Д?"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "╧щюЭ╣х гв╦Яю╦╥н %dцйхд юз╣©ю╦╥н ╨нфц╣к╢о╢ы."
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:544
+#, fuzzy
+msgid "Dialup options"
+msgstr "©и╪г ╦М╫ц"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "©╛╟А юл╦╖"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "юЭх╜ ╧Ьхё"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "╥н╠Д ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "╩Г©Кюз юнаУ"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "╣╔╫╨е╘е╬"
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "╫╨е╘╦Ёф╝ ╠Б╧щ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "╫цюш ╦ч╢╨"
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "ем╧лЁ╞ ╠Б╧щ"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "аж DNS ╪╜╧Ж"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "╬жгц ADB ╦╤©Л╫╨ (2 ╧Жф╟)"
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "╨н DNS ╪╜╧Ж"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "╬жгц ADB ╦╤©Л╫╨ (3+ ╧Жф╟)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "╬жгц USB ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "╬жгц USB ╦╤©Л╫╨ (2 ╧Жф╟)"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "╬Н╤╡ ╣П╫╨е╘╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "╬жгц USB ╦╤©Л╫╨ (3+ ╧Жф╟)"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "юо╧щюШюн ╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "╬Н╤╡ ╣П╫╨е╘╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "╥наЖеь ╦╤©Л╫╨╦г/фш╫╨ф╝╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "юо╧щюШюн 3╧Жф╟ ╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS ╠ш╤Сюл╣ЕфВюнф╝ (PS/2)"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "╥наЖеь ╦╤©Л╫╨╦г+/фш╫╨ф╝╦╤©Л╫╨+ (PS/2)"
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "га╦╟ем ©╛╟А╧Ф╧Щ"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "дк╫лео ╬ее╥ ╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII ╦╤юл╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨ га╥н (PS/2)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "аЖ╢о╬Н╫╨ Ёщ╫╨е╘╥я (PS/2)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "юЭ╧╝╟║"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "╦╤юле╘╥н╪ргаф╝ юнез╦╝╦╤©Л╫╨ (PS/2)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI ╧Ж╫╨ ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "╦╤юле╘╥н╪ргаф╝ ╧Ж╫╨ ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "╥наЖеь ╧Ж╫╨ ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "цК╪р"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB ╦╤©Л╫╨"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB ╦╤©Л╫╨ (3╧Жф╟ юл╩С)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "╦╤©Л╫╨ ╬Ью╫"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "╦╤юле╘╥н╪ргаф╝ Rev 2.1A юл╩С (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "юЭ╧╝╟║"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "╥наЖеь CC ╫ц╦╝аН (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "╥наЖеь ╦╤©Л╫╨╦г+/фш╫╨ф╝╦╤©Л╫╨+ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII ╦╤юл╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "╦╤юле╘╥н╪ргаф╝ юнез╦╝╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM ╫ц╦╝аН (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM хВф╝е╦╨М╥© (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "╥наЖеь ╦╤©Л╫╨ (╫ц╦╝╬С, ©ю╥║╣х C7 гЭеб)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "╥наЖеь ╦╤©Л╫╨╦г/фш╫╨ф╝╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Ёвф╝©В х╞╟Ф ╪Ёа╓"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "юо╧щюШюн ╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "юл ╪Ёа╓ю╩ ев╫╨ф╝гь ╨╦╫ц╟з╫ю╢о╠Н?"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "╦╤юле╘╥н╪ргаф╝ хёх╞ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Ёвф╝©Же╥ ╪Ёа╓"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "юо╧щюШюн 3╧Жф╟ ╦╤©Л╫╨ (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "©╛╟А юл╦╖"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "╦╤©Л╫╨ ╫ц╫╨еш (╫ц╦╝╬С)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "аЖ©╙ Ёвф╝©Вю╨ юл╧л ╪Ёа╓╣г╬Н юж╫ю╢о╢ы. ╬Н╤╩╟т го╫ц╟з╫ю╢о╠Н?"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "юл╟мюл ╦б╫ю╢о╠Н?"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "╬Н╤╡ ╣П╫╨е╘╦╕ юл╣©го╟М ╫мю╦╫й╢о╠Н?"
+
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Ёвф╝©В х╞╟Ф ╪Ёа╓"
+
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "Ёвф╝©В д╚╣Е╦╕ цёю╩╪Ж ╬Ь╫ю╢о╢ы"
+
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Ёвф╝©В ╪Ёа╓"
+
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"хё╫╨ф╝ юл╦╖ю╩ ют╥бгь аж╫й╫ц©ю.\n"
+"хё╫╨ф╝ юл╦╖ю╨ ``mybox.mylab.myco.com''╟З ╟╟юл ©оюЭгя хё╫╨ф╝ \n"
+"юл╦╖юл╬Н╬ъ гу╢о╢ы. \n"
+"╟тюлф╝ ©Чюл╟║ юж╢ы╦И ╠в IP аж╪р╣╣ ют╥бгь╬ъ гу╢о╢ы."
-#: ../../partition_table.pm_.c:527
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "хё╫╨ф╝ юл╦╖:"
+
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+
+#: ../../network.pm_.c:302
+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.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "%s Ёвф╝©В д╚╣Е ╪Ёа╓аъ"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP юз╣© гр╢Г"
+
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "IP аж╪р:"
+
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Ёщ╦╤╫╨е╘:"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr ""
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP аж╪р╢б 1.2.3.4╟З ╟╟ю╨ гЭ╫дюл╬Н╬ъ гу╢о╢ы."
+
+#: ../../network.pm_.c:341
+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.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "DNS ╪╜╧Ж:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "╟тюлф╝©Чюл:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "╟тюлф╝©Чюл юЕд║:"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "╪Ёд║юЭ х╞╟Ф╪Ёа╓"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "ю╔ га╤Т╫ц"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP га╤Т╫ц"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "га╤Т╫ц юл╦╖ю╨ httP://... юл╬Н╬ъ гу╢о╢ы."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "га╤Т╫ц юл╦╖ю╨ ftp://... юл╬Н╬ъ гу╢о╢ы."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:545
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr "фдф╪╪г евюл╨М©║╪╜ ╨С ╟Ь╟ёюл южаЖ╦╦ ╩Г©Кгр╪Ж╟║ ╬Ь╫ю╢о╢ы."
-#: ../../partition_table.pm_.c:634
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "%s фдюою╩ юп╢баъ ©ю╥Ы╟║ ╧ъ╩Щго©╢╫ю╢о╢ы."
-#: ../../partition_table.pm_.c:641
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:643
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr ""
@@ -3677,42 +4917,55 @@ msgstr "хО╧л юж╢б фпе╟аЖ( ^^ )"
msgid "maybe"
msgstr "╪Ёд║го╢б╟мюл ааю╩╣Мгт ( ^^; )"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "╠╧а╕х╜ фпе╟аЖ (аъ©Дгт) "
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "╠╧а╕х╜ фпе╟аЖ (╦е©Л ааю╫)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "╠╧а╕х╜ фпе╟аЖ (ааю╫)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "╢э╪Ьго╟т"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "╨╧юБго╟т"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "аЩюШ ©╛╟А╣х га╦╟ем"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "гв╦Я а╕╟е"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "╦╝╦Пф╝ хё╫╨ф╝ е╔"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "╦╝╦Пф╝ га╦╟ем"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "Ёщ©Ч╬Н га╦╟ем ©и╪г"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "ю╘╣╣©Л ╫ц╫╨еш©║ ©╛╟А╣х га╦╟ем"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "ЁК╨╖ Ёщ©Ч╬Н"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr ""
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "юЕд║╦╕ ╟к╩Жго╟М юж╫ю╢о╢ы..."
@@ -3726,44 +4979,44 @@ msgstr "фВф╝ ╟к╩Г"
msgid "A printer, model \"%s\", has been detected on "
msgstr ""
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr ""
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr ""
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "╦╝╦Пф╝ хё╫╨ф╝юл╦╖"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "╦╝╦Пф╝ хё╫╨ф╝ е╔"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) га╦╟ем ©и╪г"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -3772,27 +5025,27 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB ╪╜╧Ж хё╫╨ф╝"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB ╪╜╧Ж IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "╟Ью╞ юл╦╖"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "юш╬В ╠в╥Л"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Ёщ©Ч╬Н га╦╟ем ©и╪г"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -3800,130 +5053,155 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "Ёщ©Ч╬Н га╦╟ем ©и╪г"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "га╦╟ем ©╛╟А╧Ф╧Щ"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "╬фаж ╧л╬Югт"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "╫цгХ юн╪Б╦╕ го╫ц╟з╫ю╢о╠Н?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "╫цгХ фДюлаЖ юн╪Б..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"╫цгХ юн╪Б фДюлаЖ╦╕ га╦╟ем ╣╔╦Сю╦╥н ╨╦Ёб╫ю╢о╢ы.\n"
+"га╦╟ем ╣г╠Б╠НаЖ ╬Ю╟ёюг ╫ц╟ёюл ╟и╦╠ ╪Ж юж╫ю╢о╢ы.\n"
+"га╦╟фц ╩Сх╡: \n"
+"%s\n"
+"\n"
+"╧ы╦ё╟т юн╪Б╣г╬З╫ю╢о╠Н?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"╫цгХ юн╪Б фДюлаЖ╦╕ га╦╟ем ╣╔╦Сю╦╥н ╨╦Ёб╫ю╢о╢ы.\n"
+"га╦╟ем ╣г╠Б╠НаЖ ╬Ю╟ёюг ╫ц╟ёюл ╟и╦╠ ╪Ж юж╫ю╢о╢ы.\n"
+"╧ы╦ё╟т юн╪Б╣г╬З╫ю╢о╠Н?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr ""
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr ""
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "а╬юл е╘╠Б"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr ""
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr ""
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr ""
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr ""
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr ""
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr ""
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr ""
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "╫цгХ юн╪Б╦╕ го╫ц╟з╫ю╢о╠Н?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "╫цгХ фДюлаЖ юн╪Б..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"╫цгХ юн╪Б фДюлаЖ╦╕ га╦╟ем ╣╔╦Сю╦╥н ╨╦Ёб╫ю╢о╢ы.\n"
-"га╦╟ем ╣г╠Б╠НаЖ ╬Ю╟ёюг ╫ц╟ёюл ╟и╦╠ ╪Ж юж╫ю╢о╢ы.\n"
-"га╦╟фц ╩Сх╡: \n"
-"%s\n"
-"\n"
-"╧ы╦ё╟т юн╪Б╣г╬З╫ю╢о╠Н?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"╫цгХ юн╪Б фДюлаЖ╦╕ га╦╟ем ╣╔╦Сю╦╥н ╨╦Ёб╫ю╢о╢ы.\n"
-"га╦╟ем ╣г╠Б╠НаЖ ╬Ю╟ёюг ╫ц╟ёюл ╟и╦╠ ╪Ж юж╫ю╢о╢ы.\n"
-"╧ы╦ё╟т юн╪Б╣г╬З╫ю╢о╠Н?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "га╦╟ем"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "га╦╟ем╦╕ ╪Ёа╓го╫ц╟з╫ю╢о╠Н?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -3931,19 +5209,64 @@ msgstr ""
"╢ыю╫╟З ╟╟ю╨ га╦╟ем е╔╣Июл юж╫ю╢о╢ы.\n"
"╢У цъ╟║╦╕ го╟еЁ╙ ╨╞╟Фго╢б╟мюл ╟║╢игу╢о╢ы."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "аЬгЮаъ"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "га╦╟ем ©╛╟А╧Ф╧Щю╩ ╪╠ецгь аж╫й╫ц©ю"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "га╦╟ем╟║ ©╛╟А╣г╬Н юж╫╨╨С╓╒K?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "га╦╟ем ©╛╟А╧Ф╧Щю╩ ╪╠ецгь аж╫й╫ц©ю"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "е╔ а╕╟е"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "аЩюШ ©╛╟А╣х га╦╟ем"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "©и╪г ╦М╫ц"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "а╓╨╦"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -3951,45 +5274,45 @@ msgid ""
"connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "га╦╟ем е╔"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spool ╣П╥╨еД╦╝"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "га╦╟ем ©╛╟А╧Ф╧Щ"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anancronю╨ аж╠БюШюн ╦М╥и ╫╨диаЛ╥╞ ют╢о╢ы."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -3997,7 +5320,7 @@ msgstr ""
"apmd╢б ╧Хем╦╝ ╩Себ©м syslog╦╕ ╟ецд╪╜ ╥н╠в ╠Б╥ою╩ ╟╗╫цго╢б╣╔ ╩Г©К╣к╢о╢ы.\n"
"╤ггя ╧Хем╦╝╥╝юл ╧л╬Югр╤╖ юз╣©ю╦╥н ╫ц╫╨ешю╩ ╪к╢ы©Н ╫цдяаж╢б ╠Б╢и╣╣ гу╢о╢ы."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4005,7 +5328,7 @@ msgstr ""
"а╓гьаь ╫ц╟ё©║ гя╧Ь©║ гоЁ╙╬© ╫ггЮ╫це╣╢о╢ы. at╢б batch ╦М╥и╣Ию╩ ╫ц╫╨еш\n"
"╥н╣Ею╡юл Ё╥ю╩╤╖ ╪ЖгЮ╫це╣╢о╢ы."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4016,7 +5339,7 @@ msgstr ""
"га╥н╠в╥╔юл╢ы. vixie cronю╨ ╠Б╨╩ UNIX Cron©║ ╨╦╬х╪╨╟З ╠Б╢и╪╨ю╩ гБ╩С╫це╡ х╞╟Ф\n"
"╪Ёа╓ ©и╪гю╩ цъ╟║гъ╢ы. ╟м╣Ию╩ цъ╟║гъ╢ы."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4024,13 +5347,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4040,51 +5363,51 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4092,7 +5415,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4100,44 +5423,44 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4145,46 +5468,197 @@ msgstr ""
"Syslog╢б ©╘╥╞ ╣╔╦С╣Июг ╥н╠в ╦ч╪╪аЖ╦╕ ©╘╥╞ а╬╥Ыюг ╫ц╫╨еш ╥н╠в фдюо╥н\n"
"Ё╡╠Б╢б╣╔ ю╞©Кгу╢о╢ы. гв╩С Syslog╦╕ ╫ггЮ╫це╟╢б╟мюл аа╫ю╢о╢ы."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "юл ╫цюш ╫╨е╘╦Ёф╝╢б usb mouse╦╕ ╩Г©Кгр╪Ж юж╣╣╥о ╦П╣Бю╩ ╥н╣Егь ащ╢о╢ы."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "╫ц╫╨еш ╨нфц╟З а╬╥А╫ц©║ X фЫф╝ ╪╜╧Ж ╫цюш╟З а╬╥А"
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "╨нфц╫ц©║ юз╣©ю╦╥н ╫цюш╣и ╪╜╨Я╫╨╦╕ ╪╠ецгь аж╫й╫ц©ю."
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
+"го╣Е ╣П╫╨е╘юг фдф╪╪г евюл╨Мю╩ юпю╩╪Ж ╬Ь╫ю╢о╢ы. Ёй╧╚╨╞гЭ╣х╟е ╟╟╫ю╢о╢ы. :(\n"
+"юъ╦Ь╣х фдф╪╪гю╩ ╨Я©Л╠Б ю╖гь ЁК╥бгр╟мют╢о╢ы."
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "LILO/GRUB ╪Ёа╓"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "╨нф╝ ╣П╫╨е╘ а╕юш"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr ""
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "╪╠ец"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO ╪Ёд║ ╫гфп. ╢ыю╫╟З ╟╟ю╨ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "X ╪Ёа╓"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "га╦╟ем ©╛╟А╧Ф╧Щ"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "╣╣╦чюн юл╦╖"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "IDE ╪Ёа╓аъ"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "цЮгогу╢о╢ы"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4232,23 +5706,30 @@ msgstr ""
msgid "Choose the tool you want to use"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "гь╩С╣╣ ╨╞╟Ф"
+
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "╬Н╤╡ а╬╥Ыюг ╦╤©Л╫╨╦╕ ╩Г©Кго╫й╢о╠Н?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "3╧Жф╟ ©║╧д╥╧юлф╝?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "╬Н╤╡ ╫ц╦╝╬С фВф╝©║ ╦╤©Л╫╨╟║ ©╛╟А╣г╬Н южЁ╙©Д?"
@@ -4457,6 +5938,435 @@ msgstr ""
msgid "Finding leaves takes some time"
msgstr ""
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "га╤Т╫ц х╞╟Ф╪Ёа╓"
+
+#, fuzzy
+msgid "Internet"
+msgstr "хО╧л юж╢б фпе╟аЖ( ^^ )"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "ааю╨ фпе╟аЖ"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "╦жф╪╧л╣П╬Н"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "╦жф╪╧л╣П╬Н"
+
+# ../../share/compssUsers
+msgid "KDE"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "╦жф╪╧л╣П╬Н"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "╦жф╪╧л╣П╬Н"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "©о╥А"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "╩Г©Кюз юнаУ"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "╦жф╪╧л╣П╬Н"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "╪Ёд║гр фпе╟аЖ ╪╠ец"
+
+#~ msgid "Total size: "
+#~ msgstr "юЭц╪ е╘╠Б: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Ёвф╝©В х╞╟Фю╩ аЖ╠щ ╢ы╫ц ╪Ёа╓"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "©╛╟А юл╦╖"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "©╛╟А юл╦╖"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "©╛╟А юл╦╖"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "©╛╟А юл╦╖"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "╣╤юо"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "╣╤юо"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "╧╚╬Ыю╩ го╠Ф ©Ьго╫й╢о╠Н?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "╪Ёд║"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "е╘╠Ба╤а╓"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "╬Н╤╡ фдф╪╪г ю╞гЭю╦╥н ╧ы╡ы╫ц╟з╫ю╢о╠Н?"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "╨╞╟Ф╟╙╣Ию╩ ╧Ж╦╝╟з╫ю╢о╠Н?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "га╦╟ем ©╛╟А╧Ф╧Щ"
+
+#~ msgid "Host name:"
+#~ msgstr "хё╫╨ф╝ юл╦╖:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "╬Н╤╡ а╬╥Ыюг ╦╤©Л╫╨╦╕ ╩Г©Кго╫й╢о╠Н?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "юз╣© гь╩С╣╣"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "╩Г©К╟║╢игя гь╩С╣╣╦╕ цё╠Б ю╖гь ╢ы╦╔ ╦П╣Е╦╕ ╫цгХго╟М юж╫ю╢о╢ы.\n"
+#~ "х╜╦Июл ╠Т╨Щ╟е╦╠╟мют╢о╢ы...\n"
+#~ "©Ьгя╢ы╦И аъаЖ╫цеЁ╪Ж юж╟М, ╩ъ ╪р╦╝╟║ Ё╙╦И Ё║Ё╜╟мют╢о╢ы."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "╩Г©К ╟║╢игя гь╩С╣╣╦╕ ╟к╩Жгу╢о╢ы. ( ©╧: 800x600) \n"
+#~ "╤╖╤╖╥н, ╫ц╫╨ешю╩ ╢ы©Н╫цеЁ╪Ж╣╣ юж╫ю╢о╢ы.\n"
+#~ "╟Х╪сго╫ц╟з╫ю╢о╠Н?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "©ц╧ы╦╔ ╦П╣Е╟║ ╬Ь╫ю╢о╢ы.\n"
+#~ "╢ы╦╔ ╨Я╣П©ю д╚╣ЕЁ╙ ╦П╢оем╦╕ ╪╠ецгь ╨╦╫й╫ц©Д."
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "юз╣© гь╩С╣╣ цё╠Б"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB ╦╤©Л╫╨"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "╬жгц ADB ╦╤©Л╫╨ (2 ╧Жф╟)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "╬жгц ADB ╦╤©Л╫╨ (3+ ╧Жф╟)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "╬жгц USB ╦╤©Л╫╨"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "╬жгц USB ╦╤©Л╫╨ (2 ╧Жф╟)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "╬жгц USB ╦╤©Л╫╨ (3+ ╧Жф╟)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "юо╧щюШюн ╦╤©Л╫╨"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII ╦╤юл╦╤©Л╫╨"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨ га╥н"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI ╧Ж╫╨ ╦╤©Л╫╨"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "╦╤юле╘╥н╪ргаф╝ ╧Ж╫╨ ╦╤©Л╫╨"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "╥наЖеь ╧Ж╫╨ ╦╤©Л╫╨"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB ╦╤©Л╫╨"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB ╦╤©Л╫╨ (3╧Жф╟ юл╩С)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "╦╤юле╘╥н╪ргаф╝ Rev 2.1A юл╩С (╫ц╦╝╬С)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "╥наЖеь ╦╤©Л╫╨╦г+/фш╫╨ф╝╦╤©Л╫╨+ (╫ц╦╝╬С)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII ╦╤юл╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "аЖ╢о╬Н╫╨ Ёщ╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "юо╧щюШюн ╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "╦╤юле╘╥н╪ргаф╝ хёх╞ (╫ц╦╝╬С)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "юо╧щюШюн 3╧Жф╟ ╦╤©Л╫╨ (╫ц╦╝╬С)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "дк╫лео ╬ее╥ ╦╤©Л╫╨"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs ╦╤©Нф╝ ╫гфп"
+
+#~ msgid "Cryptographic"
+#~ msgstr "╬охё"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "аЖ©╙ Ёвф╝©В ╪Ёа╓ю╩ го╫ц╟з╫ю╢о╠Н?"
+
+#~ msgid "Show less"
+#~ msgstr "╢э╪Ьго╟т"
+
+#~ msgid "Show more"
+#~ msgstr "╨╧юБго╟т"
+
+#~ msgid "curly"
+#~ msgstr "╟Ж╫╫╦с╦╝"
+
+#~ msgid "default"
+#~ msgstr "╠Б╨╩"
+
+#~ msgid "tie"
+#~ msgstr "╫е╩Г"
+
+#~ msgid "brunette"
+#~ msgstr "©╘юн"
+
+#~ msgid "girl"
+#~ msgstr "©╘╬ф"
+
+#~ msgid "woman-blond"
+#~ msgstr "╠щ╧ъ©╘юн"
+
+#~ msgid "automagic"
+#~ msgstr "юз╣©"
+
+#~ msgid "Normal"
+#~ msgstr "юо╧щ╩Г©Кюз"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "PCMCIAд╚╣Е╦╕ ╟к╩Жго╫ц╟з╫ю╢о╠Н?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "%s юЕд║╣Ию╩ цё╫ю╢о╠Н?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "╦П╣╘ ╪Ёа╓"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "╦П╣╘ю╦╥н юЭх╜а╒╪с х╞╟Фю╩ ╪Ёа╓го╫ц╟з╫ю╢о╠Н?"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Lnx4winю╩ ю╖гя цФ╨пгя ╟Ь╟ёюл ╬Ь╫ю╢о╢ы."
+
+#~ msgid "SILO main options"
+#~ msgstr "SILO аж ©и╪г"
+
+#~ msgid "This label is already in use"
+#~ msgstr "юл юл╦╖ю╨ ╧З╫А ╩Г©Каъют╢о╢ы."
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO ╪Ё╫ц ╫гфп. ╢ыю╫╟З ╟╟ю╨ ©ю╥Ы╟║ ╧ъ╩Щгъ╫ю╢о╢ы:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakXю╨ ©Л╪╠ гоЁ╙ юл╩Сюг PCI SCSI ╬ф╢Дем╟║ юж╢баЖ ╟к╩Ггу╢о╢ы.\n"
+#~ "╦╦╬Ю ╧ъ╟ъ╣г╟М, ╠в╟мюл ╬к╥ааЬ ╣Е╤Сюл╧Ж╦╕ ╩Г©Кгя╢ы╦И юз╣©ю╦╥н \n"
+#~ "╠в ╦П╣Бю╩ ╥н╣Егр╟мют╢о╢ы.\n"
+#~ "\n"
+#~ "\n"
+#~ "╦╦╬Ю ╢Г╫еюг SCSIд╚╣Е╟║ ISA юл╟еЁ╙, PCIаЖ╦╦ DrakX╟║ ╦П╦ё╢б гЭебюг\n"
+#~ "╣Е╤Сюл╧Ж╦╕ ╩Г©Кго╢б╟мюлЁ╙ SCSIд╚╣Е╟║ ╬ф©╧ ╬Ь╢Ь╟ё©║ ╟║аЖ╟М юж╢баЖ\n"
+#~ "╬Ь╢баЖ©║ ╢Кгь ╪╠ецгь╬ъ гу╢о╢ы. ╦╦╬Ю ╟║аЖ╟М южаЖ ╬й╢ы╦И \"╬ф╢о©ю\"\n"
+#~ "╦╕ ╪╠ецго╫ц╟М, юж╢ы╦И \"©╧\"╦╕ ╪╠ецго╫й╫ц©ю. ╣Е╤Сюл╧Ж ╦╝╫╨ф╝╟║\n"
+#~ "Ё╙е╦Ё╞╟мюл╟М, ╟е╠Б╪╜ гь╢Гго╢б д╚╣Е╦╕ ╪╠ецго╫й╫ц©ю.\n"
+#~ "\n"
+#~ "\n"
+#~ "╣Е╤Сюл╧Ж╦╕ ╪╠ецгя хд©║, DrakX╟║ ©и╪гю╩ ╦М╫цго╠Ф ©Ьго╢баЖ╦╕ ╧╟ю╩╟м\n"
+#~ "ют╢о╢ы. ╦уюЗ, юз╣©ю╦╥н го╣Е©Ч╬Н╦╕ ╟╗аЖго╣╣╥о го╫й╫ц©Д. ╨╦еК юъ юш\n"
+#~ "╣©гу╢о╢ы.\n"
+#~ "\n"
+#~ "\n"
+#~ "╦╦╬Ю ╠в╥╦аЖ ╬й╢ы╦И, ╧╝╪╜Ё╙ ю╘╣╣©ЛаН(╢Г╫еюг ╫ц╫╨еш©║ ╪Ёд║╣г╬Н юж╢ы╦И)\n"
+#~ "╧в ╪Ёд║ ╟║юл╣Е©║╪╜ а╕╟Ьго╢б го╣Е©Ч╬Н а╓╨╦╦╕ юьаЖ ╦╤╫й╫ц©ю. ╠в╟м╣Ию╩ю╨\n"
+#~ "╣Е╤Сюл╧Ж╟║ гй©Д╥н го╢б ©и╪гю╩ а╕╟Ьгь аы╟мют╢о╢ы."
+
+#~ msgid "Shutting down"
+#~ msgstr "╫ц╫╨еш а╬╥А"
+
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -4478,9 +6388,6 @@ msgstr ""
#~ "5.1(Venice), 5.2(Leloo), 5.3(Festen), 6.0(Venus), 6.1(Helios), Gold 2000\n"
#~ "or 7.0(Air)."
-#~ msgid "Recommended"
-#~ msgstr "╠гюЕ╩Г╬Г"
-
#~ msgid "useless"
#~ msgstr "╬╣╦П╬Ью╫"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index ee2cc34c1..edbe2bf11 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -1,56 +1,110 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1999 Free Software Foundation, Inc.
# KФstutis KruЧikas <DrKestas@takas.lt>, 1999
-# MykolasNorvaisas@cinotes.impro.mii.lt, 1999-2000
+# Mykolas NorvaiПas <Myka@centras.lt>, 1999-2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-04 18:38+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-11-02 20:54+0100\n"
-"Last-Translator: KФstutis KruЧikas <DrKestas@takas.lt>\n"
+"Last-Translator: Mykolas NorvaiПas <Myka@centras.lt>\n"
"Language-Team: Lithuanian <lt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:236
-msgid "Generic"
-msgstr "Paprasta"
-
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Video plokПtК"
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Pasirinkite vaizdo plokПtФ"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Pasirinkite X serverА"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X serveris"
-#: ../../Xconfigurator.pm_.c:198
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "KuriЮ XFree konfiguracijЮ jШs norite turКti?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"JШsЬ korta palaiko 3D Аrenginio akseleracija tik su XFree %s.\n"
+"JШsЬ korta dirba su XFree %s kuris galbШt geriau palaiko 2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "JШsЬ korta palaiko 3D akseleracija su XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s su 3D Аrenginio ekseleracija"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"JШsЬ korta palaiko 3D Аrenginio akseleracija tik su XFree %s,\n"
+"ATMINKITE, KAD TAI YRA EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI "
+"KOMPIUTERа.\n"
+"JШsЬ korta dirba su XFree %s kuris galbШt geriau palaiko 2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"JШsЬ korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
+"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERа."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s su EKSPERIMENTINE 3D Аrenginio akseleracija"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Pasirinkite savo vaizdo plokПtКs atminties dydА"
-#: ../../Xconfigurator.pm_.c:225
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Pasirinkite serverio nustatymus"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Pasirinkite monitoriЬ"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitorius"
-#: ../../Xconfigurator.pm_.c:239
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -70,39 +124,39 @@ msgstr ""
"negu monitorius gali Аvykdyti, nes galite jА sugadinti. Jeigu abejojate\n"
"pasirinkite bendrus nustatymus."
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Horizontalaus atnaujinimo daЧnis"
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Vertikalaus atnaujinimo daЧnis"
-#: ../../Xconfigurator.pm_.c:285
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitorius nenurodytas"
-#: ../../Xconfigurator.pm_.c:288
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Vaizdo plokПtК dar nenurodyta"
-#: ../../Xconfigurator.pm_.c:291
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Dar nepasirinkta skiriamoji geba"
-#: ../../Xconfigurator.pm_.c:304
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Ar JШs norite iПbandyti savo nustatymus"
-#: ../../Xconfigurator.pm_.c:308
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "PerspКjimas: su Пia korta bandyti pavojinga"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "PerspКjimas: Пios kortos bandymas gali pakabinti kompiuterА"
-#: ../../Xconfigurator.pm_.c:311
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Patikrinti nustatymus"
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -110,185 +164,173 @@ msgstr ""
"\n"
"pabandykite pakeisti kai kuriuos nustatymus"
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "аvyko klaida:"
-#: ../../Xconfigurator.pm_.c:373
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Baigiame per %d sekundЧiЬ (-es)"
-#: ../../Xconfigurator.pm_.c:377
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Ar toks nustatymas Jus tenkina?"
-#: ../../Xconfigurator.pm_.c:385
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "аvyko klaida, pabandykite pakeisti kai kuriuos nustatymus"
-#: ../../Xconfigurator.pm_.c:393 ../../Xconfigurator.pm_.c:574
-msgid "Automatic resolutions"
-msgstr "AutomatinК skiriamoji geba"
-
-#: ../../Xconfigurator.pm_.c:394
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"AП pabandysiu Аvairias galimas skiriamasias gebas.\n"
-"JШsЬ ekranas mirgКs...\n"
-"Jeigu norite, galite jА iПjungti, JШs iПgirsite pyptelКjimЮ, kai bus baigta"
-
-#: ../../Xconfigurator.pm_.c:452 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Skiriamoji geba"
-#: ../../Xconfigurator.pm_.c:487
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Pasirinkite skiriamЮjЮ gebЮ ir spalvЬ skaiХiЬ"
-#: ../../Xconfigurator.pm_.c:489
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Video plokПtК: %s"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 serveris: %s"
-#: ../../Xconfigurator.pm_.c:499
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Rodyti viskЮ"
-#: ../../Xconfigurator.pm_.c:523
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Skiriamosios gebos"
-#: ../../Xconfigurator.pm_.c:575
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"AП galiu pabandyti surasti prieinamЮ skiriamЮjЮ gebЮ (pvz.: 800x600).\n"
-"Bet kompiuteris gali \"pakibti\"\n"
-"Ar JШs norite pabandyti?"
-
-#: ../../Xconfigurator.pm_.c:580
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Nerasta galimЬ variantЬ\n"
-"Pabandykite kitЮ video plokПtФ arba monitoriЬ"
-
# c-format
-#: ../../Xconfigurator.pm_.c:920
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "KlaviatШros iПdКstymas: %s\n"
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "PelКs rШПis: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "PelКs Аrenginys: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorius: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitoriaus Horiz. skleistinК: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitoriaus Vert. skleistinК: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Video plokПtК: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Video atmintis: %s kB\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "SpalvЬ skaiХius: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Skiriamoji geba: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../../Xconfigurator.pm_.c:943
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 tvarkyklК: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "RuoПiami X-Window nustatymai"
-#: ../../Xconfigurator.pm_.c:957
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Pakeisti monitoriЬ"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Pakeisti video plokПtФ"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Pakeisti serverio nustatymus"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Pakeisti skiriamЮjЮ gebЮ"
-#: ../../Xconfigurator.pm_.c:961
-msgid "Automatical resolutions search"
-msgstr "AutomatinК skiriamosios gebos paieПka"
-
-#: ../../Xconfigurator.pm_.c:965
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Rodyti informacijЮ"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Patikrinti vКl"
-#: ../../Xconfigurator.pm_.c:967 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "IПeiti"
-#: ../../Xconfigurator.pm_.c:971 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "KЮ JШs norite pakeisti"
-#: ../../Xconfigurator.pm_.c:978
-msgid "Forget the changes?"
-msgstr "Ar pamirПti pakeitimus?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"IПlaikyti pakeitimus?\n"
+"DabartinК konfiguracija yra:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:996
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "PraПau perleisti %s kad pakeitimai bШtЬ iПsaugoti"
-#: ../../Xconfigurator.pm_.c:1012
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "PraПau atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1015
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X aut. paleidimas"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -296,228 +338,223 @@ msgstr ""
"JШs galite nustatyti, kad X startuotЬ automatiПkai.\n"
"Ar JШs norite, kad X startuotЬ po kompiuterio perkrovimo?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Automatinis pasisveikinimas"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"AП galiu nustatyti taip kad vienas vartotojas pasisveikintЬ automatiПkai.\n"
+"Jei nenorite to naudoti paspauskite Nutraukti."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Pasirinkite vartotojЮ pagal nutylКjimЮ"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Pasirinkite kurА langЬ programЮ naudosite"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 spalvos (8 bitai)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tШkst. spalvЬ (15 bitЬ)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tШkst. spalvЬ (16 bitЬ)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milijonai spalvЬ (24 bitai)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milijardai spalvЬ (32 bitai)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ar daugiau"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standartinis VGA 640x480 prie 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA 800x600 prie 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 suderinamas, 1024x768 prie 87 Hz kryЧminis (nКra 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 prie 87 Hz kryЧminis, 800x600 prie 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "IПplКstas Super VGA, 800x600 prie 60 Hz, 640x480 prie 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "NekryЧminis SVGA, 1024x768 prie 60 Hz, 800x600 prie 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "AukПto daЧnio SVGA, 1024x768 prie 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "DaugiadaЧnis, galintis 1280x1024 prie 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "DaugiadaЧnis, galintis 1280x1024 prie 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "DaugiadaЧnis, galintis 1280 prie 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitorius, galintis 1600x1200 prie 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitorius, galintis 1600x1200 prie 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "curly"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "Pagrindinis"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "tie"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunetК"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "mergina"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondinК"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "Automagic"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Pirmasis startavimo srities sektorius"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub аdiegimas"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO аdiegimas"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Kur norite Аdiegti startavimo programЮ"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub аdiegimas"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Nieko"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "KokiЮ Аkrovos tvarkyklФ (-es) JШs norКtumКte naudoti?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "аkrovos programos Аdiegimas"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Pakrovimo Аrenginys"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nedirba su senu BIOSu)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "KompaktiПkas"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompaktiПkas"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Palaukti prieП pakraunant atvaizdЮ pagal nutylКjimЮ"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Video reЧimas"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Palaukti prieП pakraunant atvaizdЮ pagal nutylКjimЮ"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "SlaptaЧodis"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "SlaptaЧodis (vКl)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "GrieЧtos komandinКs eilutКs nustatymai"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "grieЧtas"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Bendri аkrovos tvarkyklКs nustatymai"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Nustatymas ''GrieЧtos komandinКs eilutКs nustatymai'' yra naudojama tik su "
"slaptaЧodЧiu"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "PraПau bandyti vКl"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "SlaptaЧodЧiai neatitinka"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -525,225 +562,414 @@ msgstr ""
"хia yra skirtingi АraПai.\n"
"JШs galite pakeisti esamus arba prijungti naujus."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "PridКti"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Baigta"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Kokio tipo АraПЮ jШs norite pridКti"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Kitos OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Kitos OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Kokio tipo АraПЮ jШs norite pridКti"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Atvaizdas"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "пakninis"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "PridКti"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Skaitymui-RaПymui"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "LentelК"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Nesaugu"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "чymК"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Pagal nutylКjimЮ"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Gerai"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "IПmesti АraПЮ"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "TuПХia ЧymК neledЧiama"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "пis Чyminys jau naudojamas"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Rastas %s %s interfeisai"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Ar turite dar vienЮ?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Ar jШs turite kokА nors %s interfeisЮ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Ne"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Taip"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "PaЧiШrКkite Аrangos informacijЮ"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "%s tvarkyklК Аdiegiama ploПtei %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modulis %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "KokiЮ %s tvarkyklФ turКХiau iПbandyti?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Kartai %s tvarkyklК turi turКti informacijos kad gerai dirbtЬ, nors\n"
+"normaliai turi veikti ir be jos. Ar jШs norite jai nustatyti ekstra\n"
+"nustatymus ar leisite pabandyti nusistatyti paХiai. Bandymai gali\n"
+"pakabinti kompiuterА, bet tai neturКtЬ padaryti Чalos."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Atomatinis bandymas"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Nurodykite nustatymus"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Dabar jШs galite nurodyti modulio %s nustatymus."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Dabar jШs galite nustatyti %s modulio nustatymus.\n"
+"OpcijЬ formatas yra toks : ''vardas=reikПmК vardas2=reikПmК2 ...''.\n"
+"Pvz, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Modulio parinktys:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Modulio %s iПkvietimas nepavyko.\n"
+"Ar norite bandyti su kitais nustatymais?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Sveiki, besinaudojantys %s, operaciniu sistemu ikrovos tvarkykle!\n"
+"\n"
+"Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
+"\n"
+"Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite <ENTER>\n"
+"arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Sveiki, besinaudojantys GRUB, opercainiu sistemu ikrovos tvarkykle!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Pasirinkimui naudokite %c ir %c klaviПus."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Spauskite enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Pasirinktas ivadas bus ikrautas automatiskai per %d sekundziu."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nepakanka vietos /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Darbastalis"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Paleidimo meniu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minutКs"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minutК"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekundКs"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Sukurti"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Atjungti"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "IПtrinti"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "SuЧymКti"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Pakeisti dydА"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "RШПis"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Prijungimo vieta"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "аraПyti /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Pakeisti А eksperto reЧimЮ"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Pakeisti А normalЬ reЧimЮ"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Atstatyti iП bylos"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "IПsaugoti А bylЮ"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Atstatyti iП diskelio"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "IПsaugoti А diskelА"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "IПvalyti viskЮ"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "SuЧymКti visus skirsnius"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Automatinis nustatymas"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Visos pirminiai skirsniai yra naudojami"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "AП negaliu pridКti nК vieno skirsnio"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "NorКdami sukurti papildomЮ skirsnА praПom iПtrinti bent vienЮ esamЮ"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "IПgelbКti skirsniЬ pasiskirstymo lentelФ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Atmesti"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "аraПyti skirsniЬ pasiskirstymo lentelФ"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Perkrauti"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
-msgstr ""
+msgstr "grАЧtamasis ciklas"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "TuПХias"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Kita"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "TuПХias"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Kita"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "BylЬ sistemos rШПys:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "DetalКs"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -755,17 +981,17 @@ msgstr ""
"Patariu jums pakeisti jo dydА\n"
"(spragtelКkite ant jo o paskui paspauskite \"Pakeisti dydА\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "PradЧiai padarykite atsarginФ savo duomenЬ kopijЮ"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Perskaitykite АdКmiai!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -775,77 +1001,77 @@ msgstr ""
"(2048 sektoriЬ pakankama)\n"
"kaupiklio pradЧioje"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "BШkite atsargШs: Пi operacija yra pavojinga."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Klaida"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Prijungimo vieta:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "аrenginys"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kaupiklio raidК: %s (lyg ir)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "RШПis: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Pradinis: sektorius %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Dydis: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoriai (-iЬ)"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Nuo cilinfro %d iki cilindro %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "SuЧymКta\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "NesuЧymКta\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Prijungta\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
-msgstr ""
+msgstr "GrАЧtamojo ciklo byla (os): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -853,79 +1079,79 @@ msgstr ""
"Skirsnis, Аkraunamas pagal nutylКjimЮ\n"
" (MS-DOS uЧkrovimui, ne lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Lygis %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabalo dydis %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kaupikliaii %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "PraПau spragtelКti ant skirsnio"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Dydis: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindrЬ(-ai), %s galvЬ(-os), %s sektoriЬ(-iai)\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "SkirnsiЬ lentelКs rШПis: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "prie magistralКs %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Prijungimas"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktyvus"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Prijungti prie RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "PaПalinti iП RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Keisti RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
-msgstr ""
+msgstr "Naudojamas ciklui"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Pasirinkite operacijЮ"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -937,7 +1163,7 @@ msgstr ""
"Arba naudokite LILO ir tai nedirbs arba nenaudokite LILO ir jums nereikКs "
"/boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -948,100 +1174,104 @@ msgstr ""
"disko kaupiklio cilindro ir jШs neturite /boot srities. Jeigu planuojate\n"
"naudoti LILO valdymo programЮ atsargiai pridКkite /boot sritА"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-"JШs pasirinkote programinА RAID skirsnА kaip root (/).\n"
+"JШs pasirinkote programinА RAID skirsnА kaip ПakninА (/).\n"
"Jokia Аkrovos tvarkyklК negali su ja dirbti be /boot skirsnio.\n"
-"Taigi, bШkite atsargШs, kurdami /boot skirsnА, jeigu norite naudotis lilo ar "
-"grub"
+"Taigi, bШkite atsargШs, kurdami /boot skirsnА"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Vietoj to naudokite ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Pirmiau naudokite ``Unmount''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Po rШПies pakeitimo skirsnyje %s, visi duomenys jame bus prarasti"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Ar vistiek tФsti ?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "IПeiti neiПsaugojus"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "IПeiti neiПsaugojus sriХiЬ pasiskirstymo lentelКs?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Pakeisti skirsnio tipЮ"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Kokio tipo skirsnА norite turКti?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Kokios kalbos JШs norite"
+
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr ""
-#: ../../diskdrake.pm_.c:483
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur norite prijungti atjungimo bylЮА %s?"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur norite prijungti АrenginА %s?"
-#: ../../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:508
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Po skirsnio %s suЧymКjimo, visi duomenys jame bus prarasti"
-#: ../../diskdrake.pm_.c:510
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "SuЧymima"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "SuЧymКjima atjungimo byla %s"
-#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "SuЧymimas skirsnis %s"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Po visЬ skirsniЬ suЧymКjimo,"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "visi esantys Пiuose skirsniuose duomenys bus prarasti"
-#: ../../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Perkelti"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "KurА diskЮ jШs norite perkelti"
@@ -1070,78 +1300,83 @@ msgstr "Disko %s skirsniЬ pasiskirstymo lentelК bus АraПyta!"
msgid "You'll need to reboot before the modification can take place"
msgstr "Jums reikia perstartuoti kad pakeitimai bШtЬ iПsaugoti"
-#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "SkaiХiuojami FAT bylЬ sistemos rКЧiai"
-#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "KeiХiamas dydis"
-#: ../../diskdrake.pm_.c:585
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Kurio skirsnio dydА jШs norite pakeisti?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Pasidarykite atsarginФ duomenЬ Пiame skirsnyje kopijЮ"
-#: ../../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Po skirsnio %s dydЧio pakeitimo, visi duomenys jame bus prarasti"
-#: ../../diskdrake.pm_.c:597
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Pasirinkite naujЮ dydА"
-#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:652
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Sukurti naujЮ skirsnА"
-#: ../../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "PradЧios sektorius: "
-#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "BylЬ sistemos rШПysi: "
-#: ../../diskdrake.pm_.c:682
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PirmenybК: "
-#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:739
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:749
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake.pm_.c:775
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake.pm_.c:776
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "пi byla jau yra.Naudoti jЮ?"
-#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Pasirinkite bylЮ"
-#: ../../diskdrake.pm_.c:807
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1149,11 +1384,11 @@ msgstr ""
"AtsarginК skirsnio lentelК nКra tokio paХio dydЧio\n"
"Vis tiek tФsti?"
-#: ../../diskdrake.pm_.c:815
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "DКmesio"
-#: ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1161,77 +1396,77 @@ msgstr ""
"аdКkite diskelА А kaupiklА\n"
"Visi duomenys esantys diskelyje bus prarasti"
-#: ../../diskdrake.pm_.c:830
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Bandome atstatyti skirsniЬ lentelФ"
-#: ../../diskdrake.pm_.c:841
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "Аrenginys"
-#: ../../diskdrake.pm_.c:842
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "lygis"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "gabalo dydis"
-#: ../../diskdrake.pm_.c:855
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Pasirinkite jau esantА RAID prijungimui"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "naujas"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s suЧymКjimas %s nepavyko"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "NeaiПku, kaip suЧymКti %s rШПimi %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs prijungimas nepavyko"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "prijungimas nepavyko: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "klaida, atjungiant %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Prijungimo vieta turi prasidКti /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Sritis su prijungimo vieta %s jau yra\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Klaida, bandant atidaryti %s, kad АraПyti: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1239,73 +1474,82 @@ msgstr ""
"аvyko klaida-nerasta tinkamЬ АrenginiЬ, kur bШtЬ galima sukurti naujus "
"skirsnius. PraПome pasitikrinti savo АrangЮ dКl galimo gedimo"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "JШs neturite jokiЬ skirsniЬ!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Pasirinkite kalbЮ Аdiegimui ir sisteminiam vartojimui"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Pasirinkite norimЮ klaviatШros iПdКstymЮ iП sЮraПo aukПХiau"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Pasirinkite norimЮ klaviatШros iПdКstymЮ iП sЮraПo aukПХiau"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Pasirinkite \"аdiegti\" jeigu nebuvo Аdiegta ankstesniЬ Linux versijЬ arba\n"
-"jШs norite turКti jЬ keletЮ.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Pasirinkite \"Atnaujinti\" jeigu norite atnaujinti ankstesnes Mandrake\n"
-"Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) or 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 arba 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Pasirinkite:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Rekomenduojama: Jeigu jums ansХiau nКra tekФ Аdiegti Linux.\n"
"\n"
-" - VartotojiПka: Jeigu jau turКjote reikalЬ su Linux. GalКsite pasirinkti\n"
-"\"Normali\" bendros reikПmКs sistemos Аdiegimui, \"KШrimo\" jeigu naudojate\n"
-"savo kompiuterА kurti programoms ir \"ServerinК\" jeigu norite turКti "
-"bendros paskirties (pvz. paПto, spausdintuvo...) serverА.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Eksperto: Jeigu jШs puikiai sekasi su GNU/Linux iПsprФsti rimtas "
-"uЧduotis.\n"
-"Kaip ir konfiguracijoje \"VartotojiПka\" jШs galКsite pasirinkti koks bus\n"
-"Пios sistemos panaudojimas.\n"
-" Bet PraПome, PraПome NESIRINKITE TAI, APIE KA JUS NIEKO NEZINOTE!\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
+#, fuzzy
msgid ""
"Select:\n"
"\n"
@@ -1313,12 +1557,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Pasirinkite:\n"
"\n"
@@ -1334,330 +1579,552 @@ msgstr ""
"Kaip ir konfiguracijoje \"VartotojiПka\" jШs galКsite pasirinkti koks bus\n"
"Пios sistemos panaudojimas.\n"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"Pirmiausia DrakX pabandys paieПkoti PCI ir SCSI АrenginiЬ. Jeigu jis suras\n"
-"ir Чinos kokias tvarkykles jam (jiems) naudoti jis automatiПkai jas АdКs.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"Jeigu jШsЬ SCSI Аrenginys yra ISA plokПtК arba DrakX neЧinos kaip jА "
-"valdyti\n"
-"arba jШs iПvis jo neturite jums bus praneПta. Jeigu jШs neturite, "
-"atsakykite\n"
-"\"Ne\". Jeigu turite vienq arba daugiau atsakykite \"Taip\" ir tvarkykliЬ "
-"sЮraПas\n"
-"bus jums parodytas\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Kai jШs pasirinksite tvarkyklФ, DrakX papraПys nurodyti jos nustatymus.\n"
-"Pirmiausia leiskite Аrangai paХiai nusistatyti. DaЧnai tai puikiai suveikia\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
"\n"
-"Jeigu jums nepavyks, nepamirПkite, kad informacijos apie jШsЬ АrangЮ gali\n"
-"suteikti dokumentacija arba Windows (jeigu jШs turite ПiЮ sistemЮ).\n"
-"Tai tuos nustatymus jШs turite perduoti tvarkyklei."
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Undo: you can use this option to cancel your changes.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Dabar jШs galite pasirinkti А kuriЮ(-ias) sritА(-is) Аdiegsime\n"
-"Linux-Mandrake\n"
-"sistemЮ, jeigu tai dar nebuvo nustatyta anksХiau (nuo buvusio Linux\n"
-"Аdiegimo\n"
-"arba su kokia nors skirsniЬ skirstymo programa). пi operacija susideda iП\n"
-"loginio\n"
-"kompiuterio kieto disko padalinimo А kelius skirsnius.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Jeigu jums reikia sukurti naujus skirsnius, naudokite \"Automatinis\n"
-"nustatymas\", norint\n"
-"automatiПkai sukurti Linux skirsnius. Norint skirsniЬ sukШrimui pasirinkti "
-"kaupiklА,\n"
-"spauskite \"hda\", jeigu tai pirmasis IDE diskas ant kanalo, \"hdb\" jeigu\n"
-"antras ant pirmo IDE kanalo, \"sda\" jeigu pirmas SCSI diskas ir t.t\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"Du pagrindiniai skirsniai yra: root skirsnis (/), kuris yra sistemos "
-"pradinis\n"
-"taПkas ir /boot, kuris susideda iП bylЬ, kuriЬ reikia sistemos uЧkrovimui,\n"
-" kada kompiuteris pirmЮ kartЮ Аjungiamas\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Kadangi Пio proceso rezultatas yra negrАЧtamas, tЮ daryti nepatyrusiam\n"
-"vartotojui\n"
-"gali bШti sunku. VisЮ procedШrЮ supaprastina DiskDrake. PrieП\n"
-"pradКdami,\n"
-"pasiЧiШrКkite dokumentacijЮ.\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"JШs galite tai daryti klaviatШros pagalba: eikite per skirsnius klaviПЬ Tab\n"
-"ir Up/Down klaviПЬ pagalba\n"
-". Kada skirnis pasirinktas, JШs galite naudoti:\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-c, norКdami sukurti naujЮ skirsnА (kada bШna pasirinktas tuПХias "
-"skirsnis)\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-d, norКdami iПtrinti skirsnА\n"
"\n"
-"- Ctrl-m, norКdami nurodyti prijungimo vietЮ\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Visos naujai nustatytos sritys norint jas naudoti turi bШti suformatuotos\n"
-"(formatavimas reiПia falinКs sistemos sukШrimЮ). Dabar jШs gal bШt norite\n"
-"iПnaujo suformatuoti jau formatuotas sritis, kad iПtrinti jose esanХius\n"
-"duomenis. Atminkite kad iПnaujo formatuoti jau formatuotas sitis nКra\n"
-"bШtina, nes jose gali bШti reikalinga informacija."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:267
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-"Jeigu JШs turite visus CD sЮraПe aukПХiau, spauskite Gerai.\n"
-" Jeigu JШs neturite nК vieno iП ПiЬ CD, spauskite Nutraukti.\n"
-"Jeigu nКra tik kai kuriЬ CD, nuimkite jo pasirinkimЮ ir po spauskite Gerai."
-#: ../../help.pm_.c:155
-msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Dabar yra Аdiegiami paketai, kuriuos jШs pasirinkote. Tai turКtЬ\n"
-"keletЮ minuХiЬ uЧtrukti, taХiau jeigu jШs pasirinkote atnaujinti\n"
-"tai turКtЬ uЧtrukti kiek ilgiau."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:303
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"Jeigu DrakX nepavyko surasti jШsЬ pelКs arba jШs pats norite jЮ\n"
-"nurodyti; jums bus parodytas sЮraПas\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
"\n"
-"Jeigu jШs sutinkate su DrakX' nustatymais tiesiog perПokite А tЮ sekcijЮ\n"
-"kuriЮ norite paspausdami ant meniu kairКje. Kitokiu atveju pasirinkite\n"
-"pelФ kuri jums labiausiai tinka.\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
"\n"
-"Jeigu pas jus yra pelК su serijine jungtimi jums taip pat reikКs nurodyti\n"
-"prie kokios jungties ji yra prijungta."
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:329
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-"PraПau pasirinkti teisingЮ jungtА. PavyzdЧiui COM1 pagal MS Windows\n"
-"Linux'e yra ttyS0."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:341
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
"\n"
-"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"пi sekcija yra skirta vietinio tinklo (LAN) nustatymui.\n"
+"Jeigu JШs turite visus CD sЮraПe aukПХiau, spauskite Gerai.\n"
+" Jeigu JШs neturite nК vieno iП ПiЬ CD, spauskite Nutraukti.\n"
+"Jeigu nКra tik kai kuriЬ CD, nuimkite jo pasirinkimЮ ir po spauskite Gerai."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"Jeigu jШs pasakyrite \"Taip\" DrakX pabandys pats surasti tinklo kortЮ.\n"
-"PCI Аrenginys turКtЬ bШti surastas ir prijungtas automatiПkai. TaХiau\n"
-"jeigu jШsЬ turite ISA АrenginА automatinis aptikimas nesuveiks ir jШs\n"
-"turКsite nurodyti tvarkyklФ iП sЮraПo, kuris tada pasirodys.\n"
"\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+#, fuzzy
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"PraПau pasirinkti teisingЮ jungtА. PavyzdЧiui COM1 pagal MS Windows\n"
+"GNU/Linux'e yra ttyS0."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"DКl SCSI АrenginiЬ, leiskite tvarkyklei pirmiau paХiai pabandyti АrenginА,\n"
-"nes kitokio atveju jums teks nurodyti nustatymus iП Windows Control Panel\n"
-"konfiguracijos\n"
+"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Jeigu jШs Аdiegiate Linux-Mandrake А kompiuterА, kuris jau yra tinkle\n"
-"tinklo administratorius jums turi nurodyti informacijЮ apie IP adresЮ,\n"
-"tinklo subkaukФ ir tinklo kaukФ. аdiegiant privaХiam tinkle namuose, jums "
-"tai\n"
-"reikКs pasirinkti paХiam."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Dabar jШs galite Аvesti prisiskambinimo nustatymus. Jeigu neЧinote kЮ\n"
+"АraПyti tiksliЮ informacijЮ galite gauti iП jШsЬ ISP."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Nurodykite:\n"
"\n"
" - IP adresas; jeigu jo neЧinote paklauskite tinklo administratoriaus "
"arba\n"
-"ISP.\n"
+"IPT.\n"
" - Tinklo KaukК: \"255.255.255.0\" pagrinde yra neblogas pasirinkimas. "
"Jeigu\n"
-"jШs neЧinote pasiklauskite tinklo administratoriaus arba ISP.\n"
+"jШs neЧinote pasiklauskite tinklo administratoriaus arba IPT.\n"
"\n"
"\n"
-" - Atomatinis IP: Jeigu jШsЬ tinkle yra naudojamas bootp arba dhcp "
+" - Atomatinis IP: Jeigu jШsЬ tinkle yra naudojamas BOOTP arba DHCP "
"protokolas\n"
"pasirinkite ПА nustatymЮ. Jeigu jА pasirinksite nereikКs nustatinКti\n"
"\"IP adreso\". Jeigu jШs neЧinote pasiklauskite tinklo administratoriaus\n"
-"arba ISP.\n"
+"arba IPT.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Jeigu jШsЬ tinklas naudoja NIS, tada pasirinkite \"Naudoti NIS\". Jeigu\n"
+"neЧinote paklauskite tinklo administratoriaus."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1665,7 +2132,7 @@ msgstr ""
"Dabar jШs galite Аvesti prisiskambinimo nustatymus. Jeigu neЧinote kЮ\n"
"АraПyti tiksliЮ informacijЮ galite gauti iП jШsЬ ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1673,13 +2140,15 @@ msgstr ""
"Jeigu jШs naudosite proxy, praПau dabar tai nustatyti. Jeigu to dar\n"
"neЧinote, pasiklauskite tinklo administratoriaus arba ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1692,29 +2161,42 @@ msgstr ""
"Atminkite kad jums reikia pasirinkti kriptografijos paketus, atitinkanХius "
"mШsЬ АstatymЬ reikalavimus."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Dabar jШs pagal gyvenamЮjЮ vietЮ galite pasirinkti laiko juostЮ.\n"
"\n"
"\n"
-"Linux dirba su GMT \"Greenwich Mean Time\" laiko juosta ir paverХia А\n"
+"GNU/Linux dirba su GMT \"Greenwich Mean Time\" laiko juosta ir paverХia А\n"
"vietinА laikЮ pagal laiko juostЮ kuriЮ jЬs pasirenkate."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"Dabar JШs galite pasirinkti, kurias tarnybas JШs norite paleisti Аkrovos "
"metu.\n"
@@ -1727,53 +2209,159 @@ msgstr ""
"serveriu: JШs greiХiausiai nenorКsite naudotis tomis tarnybomis, kuriЬ JШs\n"
"nenorite."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You need to enter some informations here.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:567
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Dabar jШs galite Аvesti savo Linux-Mandrake sistemos root slaptaЧodА.\n"
"SlaptaЧodis turi bШti Аvestas du kartus kad patikrinti kad Аvestas "
@@ -1791,7 +2379,7 @@ msgstr ""
"bШti\n"
"prisimenamas be ypatingЬ pastangЬ."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1800,7 +2388,7 @@ msgstr ""
"ir\n"
" \"Naudoti MD5 slaptaЧodЧius\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1808,7 +2396,7 @@ msgstr ""
"Jeigu jШsЬ tinklas naudoja NIS, tada pasirinkite \"Naudoti NIS\". Jeigu\n"
"neЧinote paklauskite tinklo administratoriaus."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1845,35 +2433,31 @@ msgstr ""
"administravimo\n"
"darbams."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Labai rekomenduojama Хia pasirinkti \"Taip\". Jeigu jШs vКliau \n"
-"АdieginКsite Microsoft Windows ji naujai uЧraПys startavimo sektoriЬ.\n"
-"Tada nepadarФ startavimo diskelio kaip mes patarКje nebegalКsite\n"
-"startuoti Linux."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Jums reikia nurodyti, kur АraПyti LILO paleidimui reikalingЮ informacijЮ\n"
+"Jums reikia nurodyti, kur АraПyti GNU/Linux paleidimui reikalingЮ "
+"informacijЮ\n"
"\n"
"\n"
"\n"
"Jeigu neЧinote kaip elgtis, pasirinkite \"Pirmasis kaupiklio sektorius "
"(MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1883,10 +2467,10 @@ msgstr ""
"(tai yra pirminis master kaupiklis) arba \"/dev/sda\" (pirmas SCSI "
"kaupiklis)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1897,7 +2481,8 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1914,7 +2499,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"pagrindiniai LILO nustatymai yra Пie:\n"
@@ -1937,10 +2524,60 @@ msgstr ""
" * normal: pasirinkite standartinА 80x25 tekstinА reЧimЮ.\n"
" * <skaiХius>: naudoti atitinkamЮ tekstinА reЧimЮ."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"pagrindiniai LILO nustatymai yra Пie:\n"
+" - Paleidimo Аrenginys: Nurodo АrenginА (pvz. disko skirsnio), kuriame\n"
+"yra paleidЧiamasis sektorius. jeigu Чinote, tada nurodykite, jeigu ne, "
+"raПykite\n"
+"\"/dev/hda\".\n"
+"\n"
+"\n"
+" - PauzК prieП startuojant atvaizdА pagal nutylКjimЮ: Nustato kiekА "
+"deПimtЬjЬ\n"
+" sekundКs daliЬ, kuriЬ reikia palaukti, prieП paleidЧiant pirmЮ vaizdЮ. Tai "
+"naudinga sistemoms, kurios paleidЧiamos iПkart po klaviatШros Аjungimo. "
+"аkrovos tvarkyklК nelaukia, jeigu \"pauzК\" yra nenurodyta arba lygi "
+"nuliui.\n"
+"\n"
+"\n"
+" - Video reЧimas: Tai nurodo kokА paleidЧiant pasirinkti VGA reЧimЮ. Yra "
+"prieinamos Пios reikПmКs:\n"
+" * normal: pasirinkite standartinА 80x25 tekstinА reЧimЮ.\n"
+" * <skaiХius>: naudoti atitinkamЮ tekstinА reЧimЮ."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -1951,7 +2588,7 @@ msgid ""
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
-"Dabar reikia sukonfiguruoti X Windows sistemЮ, kuri yra Linux GUI\n"
+"Dabar reikia sukonfiguruoti X Windows sistemЮ, kuri yra GNU/Linux GUI\n"
"(Grafinio vartotojo interfeiso pagrindas). Kad tai padaryti jums\n"
"reikia sukonfiguruoti monitoriЬ ir vaizdo plokПtФ. Dauguma ЧingsniЬ\n"
"yra automatizuoti ir jШsЬ darbas bus tik patikrinti ar nustatymai\n"
@@ -1963,7 +2600,7 @@ msgstr ""
"jums netiks jШs galКsite grАЧti ir pakeisti konfiguracijЮ kiek\n"
"norite kartЬ."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -1971,7 +2608,7 @@ msgstr ""
"Jeigu kas nors su X konfiguracija yra netvarkoje pasirinkite Пiuos\n"
"nustatymus kad teisingai nustatyti X Windows SistemЮ."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -1979,42 +2616,47 @@ msgstr ""
"Jeigu jШs norite pasisveikinti grafiniam reЧime pasirinkite \"Taip\". Kitu\n"
"atveju pasirinkite \"Ne\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"Dabar jШs galite pasirinkti Аvairias savo sistemos opcijas.\n"
"\n"
@@ -2027,7 +2669,8 @@ msgstr ""
"PlaХiau apie tai skaitykite pateiktuose apraПymuose\n"
"\n"
"\n"
-" - Reikalingas apytikris RAM atminties kiekis: kai kuriais atvejais Linux\n"
+" - Reikalingas apytikris RAM atminties kiekis: kai kuriais atvejais "
+"GNU/Linux\n"
"negali nustatyti kiek jШsЬ sistema turi atminities. Tokiu atveju jums "
"reikia\n"
"nurodyti jos kiekА. Atminkite kad 2 arba 4 Mb netikslumas bШtЬ normalus.\n"
@@ -2041,7 +2684,7 @@ msgstr ""
" - Startuojant Аjungti Num Lock: Jeigu reikia kad startavus bШtЬ Аjungtas\n"
"Num Lock pasirinkite ПiЮ opcijЮ (Pastaba: Num Lock vistiek nedirbs po X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2055,96 +2698,116 @@ msgstr ""
"automatiПkai. Jeigu norite pakrauti kitЮ operacinФ sistemЮ praПom\n"
"perskaityti pridКtas instrukcijas."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Pasirinkite kalbЮ"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Parinkite Аdiegimo klasФ"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Diskinio kaupiklio suradimas"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "PelКs nustatymas"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Pasirinkite klaviatШrЮ"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "аvairШs"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Nustatyti bylЬ sistemas"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "SuЧymКti skirsnius"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Kuriuos paketus Аdiegti"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "аdiegti sistemЮ"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Nustatyti tinklЮ"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Kriptografija"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Nurodyti laiko juostЮ"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Nustatyti tarnybas"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Nustatyti spausdintuvЮ"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Nurodyti root slaptaЧodА"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Naujas vartotojas"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Sukurti Аkrovos diskelА"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "аdiegti Аkrovos tvarkyklФ"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Nustatyti X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Auto Аdiegimo diskelis"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "IПeiti iП Аdiegimo"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "аvyko klaida, nuskaitant bylЮ $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "PraПome patikrinti pelФ"
+
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "PraПome patikrinti pelФ"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2154,231 +2817,238 @@ msgstr ""
"Tam jШs turite sukurti skirsnА (arba spragtelКti ant jau esamo).\n"
"ir ``Mount point'' nurodyti `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"AП negaliu perskaityti jШsЬ skirsniЬ lentelКs, ji man per daug sugadinta :(\n"
-"Pabandysiu nuimti blogus skirsnius"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "JШs privalote turКti swap skirsnА"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake nagali korektiПkai perskaityti skirsniЬ lentelКs.\n"
-"TФskite savo paties rizika!"
+"JШs neturite swap skirsnio\n"
+"\n"
+"vistiek tФsti?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "IeПkomas pagrindinis skirsnis."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Naudoti laisvЮ vietЮ"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informacija"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Tai ne pagrindinis skirsnis, praПom pasirinkti kitЮ"
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Naudoti esamus skirsnius"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Nerastas pagrindinis skirsnis"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "nКra esamЬ naudotinЬ skirsniЬ"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Negalima naudoti transliavimo be NIS domeno"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Naudoti Windows skirsnА grАЧtamajam ciklui"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "аvyko klaida, nuskaitant bylЮ $f"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Kuri skirsnА JШs norite naudoti Linux4Win Аdiegimui?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"аvyko klaida, su kuria negaliu graЧiai susitvarkyti.\n"
-"TФskite darbЮ savo paties rizika."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Pasirinkite dydЧius"
-#: ../../install_steps.pm_.c:174
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Egzistuoja ne viena %s prijungimo vieta"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Pagrindinio skirsnio dydis, MB: "
-#: ../../install_steps.pm_.c:321
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap skirsnio dydis, MB: "
+
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
msgstr ""
-# \, c-format
-#: ../../install_steps.pm_.c:388
-#, c-format
-msgid "Welcome to %s"
-msgstr "Sveiki atvykФ А %s"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Kurio skirsnio dydА jШs norite pakeisti?"
-#: ../../install_steps.pm_.c:740
-msgid "No floppy drive available"
-msgstr "Neprieinamas nК vienas diskeliЬ kaupiklis"
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "SkaiХiuojami Windows bylЬ sistemos rКЧiai"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Bandoma vykdyti ЧingsnА `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "JШs privalote turКti swap skirsnА"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"JШs neturite swap skirsnio\n"
+"PERSPкJIMAS!\n"
"\n"
-"vistiek tФsti?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Pasirinkite kokio norite Аdiegti dydЧio"
+"DrakX dabar reikia pakeisti Windows skirsnio dydА. BШkit atsargus Пi "
+"operacija\n"
+"yra pavojinga. Jeigu dar nepaleidote ScanDisk, tai jau laikas tai padaryti.\n"
+"Taip pat galima paleisti ir Defrag, bei padaryti Пio skirsnio duomenЬ "
+"kopijЮ.\n"
+"Kada bШsite tikras, spauskite Gerai."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Bendras dydis: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "KurА dydА jШs norite naudoti dКl windows ant"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Versija: %s\n"
+msgid "partition %s"
+msgstr "skirsnis %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Dydis: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT dydЧio nustatymas nepavyko: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Pasirinkite paketus, kuriuos JШs norite instaliuoti"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "IПtrinti visЮ diskЮ"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "аdiegti"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "IПmesti Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "аdiegiama"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "JШs turite daugiau negu vienЮ diskЮ. а kurА norite Аdiegti Linux?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "PraПome palaukti, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "Visi duomenys jame bus prarasti diske %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Liko laiko"
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Eksperto reЧimas"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Bendra trukmК "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Naudoti DiskDrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "RuoПiamas Аdiegimas"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Naudoti fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "аdiegiamas paketas %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "TФsti vistiek?"
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "JШs neturite jokiЬ windows skirsniЬ!"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "аvyko klaida, bandant sutvarkyti paketus:"
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "AП negaliu pridКti nК vieno skirsnio"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Naudoti esamus X11 nustatymus ?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "PraПau pasirinkti vienЮ iП ПiЬ Аdiegimo klasiЬ:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "SkirnsiЬ skirstymas nepavyko: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "JШs neturite jokiЬ windows skirsniЬ!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Pajungti tinklЮ"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Jums neuЧtenka vietos Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Bandoma atjungti tinklЮ"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"PERSPкJIMAS!\n"
-"\n"
-"DrakX dabar reikia pakeisti Windows skirsnio dydА. BШkit atsargus Пi "
-"operacija\n"
-"yra pavojinga. Jeigu dar nepaleidote ScanDisk, tai jau laikas tai padaryti.\n"
-"Taip pat galima paleisti ir Defrag, bei padaryti Пio skirsnio duomenЬ "
-"kopijЮ.\n"
-"Kada bШsite tikras, spauskite Gerai."
+"аvyko klaida, su kuria negaliu graЧiai susitvarkyti.\n"
+"TФskite darbЮ savo paties rizika."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automatinis dydЧio nustatymas nepavyko"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Egzistuoja ne viena %s prijungimo vieta"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Kuri skirsnА JШs norite naudoti Linux4Win Аdiegimui?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Pasirinkite dydЧius"
+# \, c-format
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Sveiki atvykФ А %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Pagrindinio skirsnio dydis, MB: "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Neprieinamas nК vienas diskeliЬ kaupiklis"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Swap skirsnio dydis, MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Bandoma vykdyti ЧingsnА `%s'\n"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "PraПau pasirinkti vienЮ iП ПiЬ Аdiegimo klasiЬ:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "GrupiЬ, kurias JШs pasirinkote bendras dydis yra apie %d MB. \n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2387,7 +3057,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2397,58 +3067,99 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "SekanХiam Чingsnyje juos jШs galКsite pasirinkti tiksliau"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "InstaliojamЬ paketЬ procentuotК"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Pasirinkite paketus, kuriuos JШs norite instaliuoti"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "аdiegti"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "AtomatinК priklausomybК"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "IПplКsti medА"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Sutraukti medА"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Perjungti tarp paprasto ir grupiЬ surШПiavimo"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Blogas paketas"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Pavadinimas: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versija: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Dydis: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Svarba: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Bendras dydis: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+#, fuzzy
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "JШs negalite pasirinkti Пio paketo pasirinkimo, nes nКra vietos"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Sekanti paketai bus Аdiegti"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "пie paketai bus paПalinti"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "JШs negalite pasirinkti/nepasirinkti Пio paketo"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tai yra pagrindinis paketas, jis negali bШti nnepasirinktas"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "JШs negalite nuimti Пio paketo pasirinkimo. Jis jau Аdiegtas"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2456,45 +3167,88 @@ msgstr ""
"пis paketas turi bШti atnaujintas\n"
"Ar JШs tikri, kad norite nuimti pasirinkimЮ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "JШs negalite nuimti Пio paketo pasirinkimo. Jis jau Аdiegtas"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "пie paketai bus Аdiegti/paПalinti"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "JШs negalite pasirinkti/nepasirinkti Пio paketo"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "аdiegiama"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "SkaiХiuojama"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "PraПome palaukti, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Liko laiko"
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Bendra trukmК "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Nutraukti"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "RuoПiamas Аdiegimas"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paketai"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "аdiegiamas paketas %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Priimti"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2504,194 +3258,403 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Atmesti"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "TФsti vistiek?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "аvyko klaida, bandant sutvarkyti paketus:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "аvyko klaida, bandant Аdiegti paketus:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "аvyko klaida"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "PraПome pasirinkti kalbЮ, kuriЮ JШs naudosite."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "KlaviatШra"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "PraПome pasirinkti klaviatШros iПdКstymЮ."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "JШs galite pasirinkti kitas kalbas, kurios bus prieinamos po Аdiegimo"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Pagrindinis skirsnis"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Kur yra pagrindinis (/) jШsЬ sistemos skirsnis"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "аdiegimo klasК"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Kurios аdiegimo klasКs JШs norite?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "аdiegti/atnaujinti"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "JШs Аdiegiate ar atnaujinate?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
+msgstr "JШs Аdiegiate ar bandote iПgelbКti?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatinis"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Rekomenduojama"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Nustatoma"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Ekspertas"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Ar JШs tikri, kad esate ekspertas? \n"
-"Jums bus leidЧiama daryti galingus, bet ir pavojingus dalykus Хia."
+"Jums bus leidЧiama daryti galingus, bet ir pavojingus dalykus Хia.\n"
+"\n"
+"JШsЬ bus klausiama pvz: ``Naudoti ПeПКliniЮ bylЮ slaptaЧodЧiams?'',\n"
+"ar pasiruoПФ atsakyti А tokius klausimus?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Atnaujinimas"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normali"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Darbo vieta"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "KШrimo"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "ServerinК"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "Kam bus naudojama JШsЬ sistema? "
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Kam bus naudojama JШsЬ sistema?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "PraПome pasirinkti savo pelКs rШПА."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "PelКs Jungtis"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"PraПome pasirinkti, prie kurios serijinКs jungties prijungta JШsЬ pelК."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Nustatome PCMCIA kortas..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "Nustatome IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nКra prieinamЬ skirsniЬ"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "PraПome pasirinkti skirsnА, kurА JШs naudosite kaip pagrindinА."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Pasirinkite prijungimo vietas"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"AП negaliu perskaityti jШsЬ skirsniЬ lentelКs, ji man per daug sugadinta :(\n"
+"Galiu pabandyti stvarkyti (bus prarasti visi duomenys.\n"
+")Kitas variantas bШtЬ neleisti DrakX modifikuoti skirsniЬ.\n"
+"(klaida %s)\n"
+"\n"
+"Ar sutinkate prarasti tuos skirsnius?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake nagali korektiПkai perskaityti skirsniЬ lentelКs.\n"
+"TФskite savo paties rizika!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Pagrindinis skirsnis"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Kur yra pagrindinis (/) jШsЬ sistemos skirsnis"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Jums reikia perkrauti kompiuterА, norint iПsaugoti skirsniЬ lentelФ"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Pasirinkite kurА skirsnА JШs norite suЧymКti"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Tikrinti dКl blogЬ sektoriЬ?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "SuЧymimi skirsniai"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sukuriama ir suЧymima byla %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Nepakanka swap atminties Аdiegimo vykdymui, praПau praplКsti"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "IeПkomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "IeПkoma atnaujintinЬ paketЬ"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "JШsЬ sistemoje neuЧtenka vietos Аdiegimui arba atnaujinimui"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr "JШsЬ sistemoje neuЧtenka vietos Аdiegimui arba atnaujinimui (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Pilnai (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimaliai (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Rekomenduojama (%dMB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Nustatoma"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Pasirinkite kokio norite Аdiegti dydЧio"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "PaketЬ GrupКs Pasirinkimas"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "AtskirЬ paketЬ pasirinkimas"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
+"Jeigu JШs turite visus CD sЮraПe Чemiaiu, spauskite Gerai.\n"
+"Jeigu JШs neturite nК vieno iП ПiЬ CD, spauskite Nutraukti.\n"
+"Jeigu nКra tik kai kuriЬ CD, nuimkite jo pasirinkimЮ ir po spauskite Gerai."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr ""
+msgstr "Cd-Rom su uЧraПu \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2699,174 +3662,11 @@ msgstr ""
"аdiegiamas paketas %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Konfiguracija po Аdiegimo"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "IПlaikyti dabartinФ IP konfiguracijЮ"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Perkonfiguruoti tinklЮ dabar"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Nekonfiguruoti tinklo pasijungimЬ"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Tinklo konfiguravimas"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Loalaus tinklo pasijungimai jau sukonfiguruoti. Ar norite :"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Ar JШs norite nustatyti savo sistemos vietinА tinklЮ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "tinklo korta nerasta"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modemo Nustatymai"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Ar JШs norite nustatyti savo modemo dialup prisijungimЮ?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguruojamas tiklo Аrenginys %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"PraПau АraПyti Пio kompiuterio IP konfiguracijЮ.\n"
-"Kiekvienas laukas turi bШti АraПytas kaip IP adresas\n"
-"(pvz. 1.2.3.4)"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatinis IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP adresas:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Tinklo kaukК:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adresas turКtЬ bШti 1.2.3.4 formato"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Konfiguruojamas tinklas"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"PraПau Аvesti jШsЬ kompiuterio vardЮ.\n"
-"Tai turi bШti pilnas vardas (pvz ``mybox.mylab.myco.com'').\n"
-"Taip pat galite Аvesti IP ir tinklЬ sЮsajos adresus jeigu juos turite"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS serveris:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "TinklЬ sЮsajos Аrenginys"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "TinklЬ sЮsaja:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Kompiuterio vardas:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Ar bandyti surasti modemЮ?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr ""
-"PraПome pasirinkti, prie kurios serijinКs jungties yra prijungtas JШsЬ "
-"modemas."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Prisiskambinimo nustatymai"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Pasijungimo pavadinimas"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefono numeris"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Pasisveikinimo ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Autentifikacija"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Scenarinis"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Terminalinis"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domeno vardas"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Pirmasis DNS serveris"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Antrasis DNS serveris"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -2921,88 +3721,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirinkite serverА iП kurio imsite paketus"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "IПkomas serveris iП kurio bus gauti galimi paketai"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Pasirinkite paketus, kuriuos JШs norite Аdiegti."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "Kokia jШsЬ laiko juosta?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Ar jШsЬ aparatШros laikrodis GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "KokiЮ spausdinimo sitemЮ norite naudoti?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "SlaptaЧodЧio nКra"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Naudoti ПeПКlinА failЮ"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "ПeПКlinis"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Naudoti MD5 slaptaЧodЧius"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Naudoti NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "geltonieji puslapiai"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Autentifikacijos NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Priimti vartotojЮ"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "PridКti vartotojЮ"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridКtas)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3012,37 +3816,37 @@ msgstr ""
"Аveskite vartotojЮ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Tikras vardas"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Aplinka"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "пis slaptaЧodis yra perdaug paprastas"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "PraПom suteikti vartotojo vardЮ"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -3050,24 +3854,50 @@ msgstr ""
"Vartotojo vardas turi susidaryti iП maЧЬjЬ raidЧiЬ, skaiХiЬ ir simboliЬ `-' "
"arba `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "пis vartotojo vardas jau pridКtas"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Startinis diskelis leidЧia pakrauti Linux sistemЮ be normalaus sistemos "
+"АkrovКjo.\n"
+"Tai gali bШti naudinga jeigu kita operacinК sistema iПmeta LILO arba jei \n"
+"LILO nedirba su jШsЬ aparatine dalimi. Startinis diskelis taip pat gali "
+"bШti\n"
+"naudingas, norint apsisaugoti nuo kai kuriЬ sistemos gedimЬ.\n"
+"Ar JШs norite sukurti startinА diskelА?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Pirmasis diskelis"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Antrasis diskelis"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Praleisti"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3088,184 +3918,144 @@ msgstr ""
"naudingas, norint apsisaugoti nuo kai kuriЬ sistemos gedimЬ.\n"
"Ar JШs norite sukurti startinА diskelА?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Atleiskite, bet nКra galimЬ diskeliЬ kaupikliЬ"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pasirinkite kuriuo kaupikliu kursite startavimo diskelА"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "аdКkite diskelА А kaupiklА %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Kuriamas startavimo diskelis"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO Аdiegimas nepavyko. аvyko sekanti klaida:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Ar norite naudoti SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Bendri SILO nustatymai"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"SILO turi sekanХius АraПus.\n"
-"JШs galite pakeisti esamus arba pridКti naujЬ."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Skirsnis"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "пi ЧymК jau naudojama"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO Аdiegimas nepavyko. аvyko sekanti klaida:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "RuoПiama Аkrovos tvarkyklК"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Ar norite naudoti aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy nustatymai"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "аkrovos programos Аdiegimas nepavyko. аvyko sekanti klaida:"
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy turКtЬ bШti http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy turКtЬ bШti ftp://..."
-
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Sveiki atvykФ А Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Menkas"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "чemas"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Vidutinis"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "AukПtas"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanoiПkas"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "аvairШs klausimai"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(gali sugadinti duomenis)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Ar naudoti kieto disko optimizavimЮ?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Pasirinkite saugumo lygА"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tikslus RAM atminties dydis (rasta %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "IПimamЬ laikmenu automatinis montavimas"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Startuojant Аjungti Num-Lock"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Nurodykite ram atminties dydА Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "NeАmanoma naudoti supermount aukПХiausiame saugumo lygyje"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Ar bandyti surasti PCI Аrenginius"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Naudoti esamus X11 nustatymus ?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "аdКkite tuПХiЮ diskelА А kaupiklА %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Kuriamas automatinio Аdiegimo diskelis"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3275,7 +4065,7 @@ msgstr ""
"\n"
"Ar jШs norite iПeiti?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3296,150 +4086,18 @@ msgstr ""
"Informacija apie jШsЬ sistemos konfiguravima yra oficialioje\n"
"Linux-Mandrake User's Guide knygoje."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Bandoma iПjungti"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "%s tvarkyklК Аdiegiama ploПtei %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modulis %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "KokiЮ %s tvarkyklФ turКХiau iПbandyti?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Kartai %s tvarkyklК turi turКti informacijos kad gerai dirbtЬ, nors\n"
-"normaliai turi veikti ir be jos. Ar jШs norite jai nustatyti ekstra\n"
-"nustatymus ar leisite pabandyti nusistatyti paХiai. Bandymai gali\n"
-"pakabinti kompiuterА, bet tai neturКtЬ padaryti Чalos."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Atomatinis bandymas"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Nurodykite nustatymus"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Dabar jШs galite nurodyti modulio %s nustatymus."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Dabar jШs galite nustatyti %s modulio nustatymus.\n"
-"OpcijЬ formatas yra toks : ''vardas=reikПmК vardas2=reikПmК2 ...''.\n"
-"Pvz, ''io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Modulio parinktys:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Modulio %s iПkvietimas nepavyko.\n"
-"Ar norite bandyti su kitais nustatymais?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Ar pabandyti surasti PCMCIA kortas?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Nustatome PCMCIA kortas..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Ar bandyti surasti %s Аrenginius"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Rastas %s %s interfeisai"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Ar turite dar vienЮ?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Ar jШs turite kokА nors %s interfeisЮ?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Ne"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Taip"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "PaЧiШrКkite Аrangos informacijЮ"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Pajungti tinklЮ"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Bandoma atjungti tinklЮ"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake аdiegimas %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> tarp elementЬ | <Space> pasirenkti | <F12> kitas langas "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "PraПome palaukti"
@@ -3449,7 +4107,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "DviprasmiПkumas (%s), bШkite tikslesnis\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Blogas pasirinkimas, pabandykite dar kartЮ\n"
@@ -3463,452 +4121,942 @@ msgstr " ? (pagal nutylКjimЮ %s) "
msgid "Your choice? (default %s) "
msgstr "JШsЬ pasirinkimas? (pagal nutylКjimЮ %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr ""
"JШsЬ pasirinkimas? (pagal nutylКjimЮ %s Аveskite `none' jeigu nenorite)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "хekЬ"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "VokieХiЬ"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorako"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "IspanЬ"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "SuomiЬ"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "PrancШzЬ"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "NorvegЬ"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "LenkЬ"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "RusЬ"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "DidЧiosios Britanijos klaviatШra"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "JAV klaviatШra"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "ArmКnЬ (senoji)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "ArmКnЬ (spausd. maПinКlКs)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "ArmКnЬ (fonetinК)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "BelgЬ"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BulgarЬ"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "BrazilЬ"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "BulgarЬ"
+msgstr "BaltarusЬ"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "пveicarЬ (VokiПk. iПdКstymas)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "пveicar. (Pranc. iПdКstymas)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "VokieХiЬ (be atjungtЬ klaviПЬ)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DanЬ"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorako (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorako (NorvegЬ)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "EstЬ"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "GruzinЬ (\"RusiПkas\" iПdКstymas)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "GruzinЬ (\"Latin\" iПdКstymas)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GraikЬ"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "VengrЬ"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "ChorvatЬ"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "чydЬ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "чydЬ (FonetinК)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IranieХiЬ"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandijos"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "ItalЬ"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "LotynЬ AmerikieХiЬ"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "DanЬ"
-#: ../../keyboard.pm_.c:140
-#, fuzzy
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
-msgstr "LietuviЬ (azerty)"
+msgstr "LietuviЬ AZERTY (sena)"
-#: ../../keyboard.pm_.c:142
-#, fuzzy
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
-msgstr "LietuviЬ (azerty)"
+msgstr "LietuviЬ AZERTY (nauja)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "LietuviЬ (balticrim) QWERTY"
+msgstr "LietuviЬ \"skaiХiЬ eilК\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "LietuviЬ (fonetinК) QWERTY"
+msgstr "LietuviЬ \"fonetinК\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "LenkЬ (qverty iПdКstymas)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "LenkЬ (qwertz iПdКstymas)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortugalЬ"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "KanadieХiЬ (Kvebeko)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "RusiПkЬ (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "пvedЬ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "SlovКnЬ"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SlovakЬ"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Tai klaviatШra"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "TurkЬ (paprastas \"F\" modelis)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "TurkЬ (Пiuolaik. \"Q\" modelis)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "UkrainieХiЬ"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "JAV klaviatШra (tarptautinК)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "VietnamieЮХiЬ \"skaiХiЬ eilК\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "JugoslavЬ (lotuniПkas iПdКstymas)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - pelК"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse (PS/2 "
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Paprasta"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Ratas"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serijinК"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Paprasta 2 klaviПЬ pelК"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Paprasta 3 klaviПЬ pelК"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "PelКs tipo sistema (serijinК)"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Serijos (serijinК)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech pelК (serijinК, seno C7 tipo)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "PelКs nКra"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "nieko"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "PelКs nКra"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Ar taip gerai?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internet konfiguracija"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Ar JШs norite pabandyti pasijungti А internet?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Nustatyti tinklЮ"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "KurА diskЮ jШs norite perkelti"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Pasijungimo pavadinimas"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN Konfiguracija"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Pasijungimo Konfiguracija"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Korto IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Kortos mem (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Kortos IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Kortos IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Kortos IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "JШsЬ asmeninis tel numeris"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "TiekКjo telefono numeris"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "TiekКjo dns 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "TiekКjo dns 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Prisiskambinimas reЧimas"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Pasisveikinimas (vartotojo vardas)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "SlaptaЧodis"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Patvirtinti SlaptaЧodА"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "LikФs pasaulis"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "LikФs pasaulis - be D-Channel (nuomojamos linijos)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "KokurА protokolЮ norite naudoti?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "NeЧinau"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Kokio tipo kortЮ jШs turite?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "TФsti"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Atmesti"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Kokia jШsЬ laiko juosta?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-"Sveiki, besinaudojantys LILO, operaciniu sistemu ikrovos tvarkykle!\n"
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Pasirinkite tinklo interfeisЮ"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"PraПome pasirinkti, prie kurios serijinКs jungties prijungta JШsЬ pelК."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
-"Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
+"Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Ar JШs norite iПbandyti savo nustatymus"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "Nustatymai"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Ar norite naudoti aboot?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Ar bandyti surasti modemЮ?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr ""
+"PraПome pasirinkti, prie kurios serijinКs jungties yra prijungtas JШsЬ "
+"modemas."
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Prisiskambinimo nustatymai"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Pasijungimo pavadinimas"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "Telefono numeris"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Pasisveikinimo ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Autentifikacija"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Scenarinis"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Terminalinis"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domeno vardas"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Pirmasis DNS serveris"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Antrasis DNS serveris"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite <ENTER>\n"
-"arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Pasijungimo pavadinimas"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
+"You can reconfigure your connection."
+msgstr "Nustatyti tinklЮ"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Sveiki, besinaudojantys GRUB, opercainiu sistemu ikrovos tvarkykle!"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "KurА diskЮ jШs norite perkelti"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Spauskite enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "KurА diskЮ jШs norite perkelti"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Pasijungimo pavadinimas"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Pasirinktas ivadas bus ikrautas automatiskai per %d sekundziu."
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Pasijungimo pavadinimas"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Nustatyti tinklЮ"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "Spausdintuvo prijungimas"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Darbastalis"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Nustatyti tinklЮ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Paleidimo meniu"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - pelК"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB pelК"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Eksperto reЧimas"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB pelК (2 klaviПai)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Pasijungimo pavadinimas"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB pelК (3+ klaviПai)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Prie kurios ser. jungties prijungta JШsЬ pelК?"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB pelК"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB pelК (2 klaviПai)"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Nutraukti"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB pelК (3+ klaviПai)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Paprasta pelК (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Paprasta 3 klaviПЬ pelК (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Eksperto reЧimas"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2 "
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Kokio tipo skirsnА norite turКti?"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI pelК"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Tinklo konfiguravimas"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft pelК"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Ar JШs norite iПbandyti savo nustatymus"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech pelК"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Nustatyti tinklЮ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB pelК"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Pasijungimo pavadinimas"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB pelК (su 3 arba daugiau klaviПЬ)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "Loalaus tinklo pasijungimai jau sukonfiguruoti. Ar norite :"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "PelКs nКra"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "KurА diskЮ jШs norite perkelti"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft 2.1A arba vКlesnКs Rev (serijinК)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Tinklo konfiguravimas"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Serijos (serijinК)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serijinК)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "tinklo korta nerasta"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serijinК)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Konfiguruojamas tinklas"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serijinК)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"PraПau Аvesti jШsЬ kompiuterio vardЮ.\n"
+"Tai turi bШti pilnas vardas (pvz ``mybox.mylab.myco.com'').\n"
+"Taip pat galite Аvesti IP ir tinklЬ sЮsajos adresus jeigu juos turite"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serijinК)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Kompiuterio vardas:"
+
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serijinК)"
+#: ../../network.pm_.c:302
+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 ""
+"PraПau АraПyti Пio kompiuterio IP konfiguracijЮ.\n"
+"Kiekvienas laukas turi bШti АraПytas kaip IP adresas\n"
+"(pvz. 1.2.3.4)"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serijinК)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfiguruojamas tiklo Аrenginys %s"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech pelК (serijinК, seno C7 tipo)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatinis IP"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serijinК)"
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP adresas"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Paprasta pelК (serijinК)"
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Tinklo kaukК"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Suderinama su Microsoft (serijinК)"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Paprasta 3 klaviПЬ pelК (serijinК)"
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adresas turКtЬ bШti 1.2.3.4 formato"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "PelКs tipo sistema (serijinК)"
+#: ../../network.pm_.c:341
+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 ""
+"PraПau Аvesti jШsЬ kompiuterio vardЮ.\n"
+"Tai turi bШti pilnas vardas (pvz ``mybox.mylab.myco.com'').\n"
+"Taip pat galite Аvesti IP ir tinklЬ sЮsajos adresus jeigu juos turite"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Ar taip gerai?"
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS serveris"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "TinklЬ sЮsaja"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "TinklЬ sЮsajos Аrenginys"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "StoХiЬ konfiguracija"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy turКtЬ bШti http://..."
-#: ../../partition_table.pm_.c:527
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy turКtЬ bШti ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:545
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -3918,21 +5066,21 @@ msgstr ""
"Vienintelis sprendimas yra perkelti pirminius skirsnius taip, kad tuПХia "
"vieta bШtЬ Пalia iПplКstiniЬ skirsniЬ"
-#: ../../partition_table.pm_.c:634
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Klaida, nuskaitant %s bylЮ"
-#: ../../partition_table.pm_.c:641
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Atstatymas iП %s bylos nepavyko: %s"
-#: ../../partition_table.pm_.c:643
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Bloga atsarginК byla"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Klaida, АraПant А bylЮ %s"
@@ -3966,42 +5114,53 @@ msgstr "Аdomu"
msgid "maybe"
msgstr "gal bШt"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (svarbu)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (labai gerai)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (nuostabu)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Rodyti maЧiau"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Rodyti daugiau"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "Nutolintas lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Nutolintas spausdintuvas"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Nuotolintas CUPS serveris"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Nutolintas lpd serveris"
+
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "NetWare Spausdintuvo Nustatymai"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Spausdintuvo Аrenginys"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "IeПkoma Аranga"
@@ -4015,11 +5174,11 @@ msgstr "Patikrinti jungtis"
msgid "A printer, model \"%s\", has been detected on "
msgstr "\"%s\" modelio spausdintuvas buvo aptiktas prie "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Vietinio spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4027,15 +5186,15 @@ msgstr ""
"Prie kurio Аrenginio yra prijungtas jШsЬ spausdintuvas\n"
"(atminkite kad /dev/lp0 yra LPT1 ekvivalentas)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Spausdintuvo Аrenginys"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Nutolinto lpd Spausdintuvo Nustatymai"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4045,19 +5204,19 @@ msgstr ""
"nurodyti to serverio kompiuterio vardЮ ir eilКs vardЮ, kurioje\n"
"bus talpinami darbai."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Nutolinto kompiuterio vardas"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "NuotolinК eilК"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Spausdintuvo nustatymai"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4070,27 +5229,27 @@ msgstr ""
"jo TCP/IP kompiuterio vardo), spausdintuvo serverio IP adresЮ, spausdintuvo\n"
"dalinimo vardЮ, vartotojo vardЮ, slaptaЧodА ir darbo grupКs vardЮ"
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB serverio pavadinimas"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB serverio IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Dalinimo vardas"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Darbo grupК"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare Spausdintuvo Nustatymai"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4102,121 +5261,146 @@ msgstr ""
"jo TCP/IP kompiuterio vardo), spausdintuvo eilКs vardЮ spausdintuvui, bei\n"
"atitinkamЮ vartotojo vardЮ ir slaptaЧodА"
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Spausdintuvo Serveris"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Spausdinimo eilКs pavadinimas"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "Vietinio spausdintuvo nustatymai"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "Spausdintuvo nustatymai"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Menkas"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Koks yra jШsЬ spausdintuvo rШПis?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Ar JШs norite iПbandyti spausdinimЮ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Spausdinamas (-i) bandomasis puslapis (-iai)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Taip. Atspausdinti ASCII bandomЮjА puslapА"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Taip. Atspausdinti PostScript bandomЮjА puslapА"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Taip. Atspausdinti abu bandomuosius puslapius"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Nustatyti spausdintuvЮ"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Koks yra jШsЬ spausdintuvo rШПis?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Spausdintuvo nustatymai"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Lapo dydis"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Ar iПstumti lapЮ po darbo?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint tvarkyklКs nustatymai"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "SpalvЬ skaiХiaus nustatymai"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Spausdinti tekstЮ kaip PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "AtbulinК puslapiЬ seka"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Taisyti stair-stepping tekstЮ?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "PuslapiЬ skaiХius iПvedimo lapuose "
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Kairysis/DeПinysis kraПtai taПkais (1/72 inХio)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "VirПutinis/Apatinis kraПtas taПkais (1/72 inХio)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Ekstra ghostScript nustatymai"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Ekstra teksto nustatymai"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Ar JШs norite iПbandyti spausdinimЮ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Spausdinamas (-i) bandomasis puslapis (-iai)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Spausdintuvas"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Ar norite nustatyti spausdintuvЮ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4224,19 +5408,64 @@ msgstr ""
"хia yra Пios spausdinimo eilКs.\n"
"JШs galite Хia prijungti daugiau arba pakeisti esamus darbus."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS startuoja"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Pasirinkite spausdintuvo jungtА"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Kur yra prijungtas jШsЬ spausdinuvas?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Pasirinkite Nutolinto Spausdintuvo JungtА"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "PaПalinti darbЬ eilФ"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Kiekviena spausdinimo eilК (А kuriЮ yra paskiriami darbai) turi\n"
+"turКti vardЮ (daЧniausiai lp) ir su ja suriПtЮ laikmenos katalogЮ.\n"
+"Koks vardas ir koks katalogas turАtЬ bШti naudojami Пiai eilei?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Spausdintuvo vardas"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "ApraПymas"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Vieta"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4247,45 +5476,45 @@ msgstr ""
"turКti vardЮ (daЧniausiai lp) ir su ja suriПtЮ laikmenos katalogЮ.\n"
"Koks vardas ir koks katalogas turАtЬ bШti naudojami Пiai eilei?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "DarbЬ eilКs pavadinimas"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Kaupimo katalogas"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Spausdintuvo prijungimas"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Negaliu pridКti skirsnio prie _formated_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Negaliu АraПyti bylos $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid nepavyko"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nepavyko (gal bШt nКra raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d lygio RAID nepakanka sriХiЬ\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron yr periodinis komandЬ tvarkiklis."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4294,13 +5523,13 @@ msgstr ""
"jis taip pat gali bШti naudojamas kompiuterio iПjungimui prie Чemo akum. "
"lygio."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4308,7 +5537,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4316,13 +5545,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4332,7 +5561,7 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4342,19 +5571,19 @@ msgstr ""
"nurodytas /etc/sysconfig/keyboard byloje. Jis gali bШti pasirinktas su\n"
"kbdconfig utКle. Daugumoje kompiuteriЬ ji turi bШti prieinama."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4362,7 +5591,7 @@ msgstr ""
"Prijungia ir Atjungia visas Tinklo BylЬ Sistemas (NFS), SMB (Lan\n"
"TvarkyklК/Windows), ir NCP (NetWare) prijungimo vietas."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4370,20 +5599,20 @@ msgstr ""
"аjungia/IПjungia visas tinklo jungtis, nustatytas paleisti\n"
"Аkrovos metu."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4391,7 +5620,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4399,7 +5628,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4407,32 +5636,32 @@ msgstr ""
"Postfix yra PaПto perkКlimo agentas, naudojamas paПtui\n"
"perkelti iП vieno kompiuterio А kitЮ."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4440,7 +5669,7 @@ msgstr ""
"пis rwho protokolas leidЧia nutolusiems vartotojams gauti\n"
"visЬ prisijungusiЬ prie rwho domeno vartotojЬ sЮraПЮ (panaПiai kaip finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4448,53 +5677,198 @@ msgstr ""
"Syslog yra jungiamoji vieta, kuriЮ daugelis domenЬ naudoja log bylЬ\n"
"iПsaugojimui. Visada yra gera mintis paleisti syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "пis paleidimo skriptas pabandys paleisti JШsЬ usb pelКs modulius."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "PaleidЧia ir sustabdo X ПriftЬ serverА pakrovimo metu ir iПjungiant."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Pasirinkite kokias tarnybas po perkrovimo paleisti automatiПkai"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Sveiki, besinaudojantys SILO, operaciniu sistemu ikrovos tvarkykle!\n"
-"\n"
-"Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
-"\n"
-"Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite <ENTER>\n"
-"arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
-"\n"
+"AП negaliu perskaityti jШsЬ skirsniЬ lentelКs, ji man per daug sugadinta :(\n"
+"Pabandysiu nuimti blogus skirsnius"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Nustatyti LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Sukurti Аkrovos diskelА"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "SuЧymКti diskelА"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Pasirinkimas"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO Аdiegimas nepavyko. аvyko sekanti klaida:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "LentelК"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Nustatyti X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "LentelК"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Internet pasijungimo dalinimas"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Prisiskambinimas reЧimas"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Aptikta firewall konfiguracija!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Nustatome IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Sveikiname!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4555,23 +5929,30 @@ msgstr "Nustatomas saugumo lygis"
msgid "Choose the tool you want to use"
msgstr "Pasirinkite kurА АrankА naudosite"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Koks JШsЬ klaviatШros iПdКstymas"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Pakeisti skiriamЮjЮ gebЮ"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Kokia JШsЬ pelКs rШПis?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "serial_usb nerasta\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Ar emuliuoti treХiЮ klaviПЮ?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Prie kurios ser. jungties prijungta JШsЬ pelК?"
@@ -4784,15 +6165,756 @@ msgstr "IeПkoma lapЬ"
msgid "Finding leaves takes some time"
msgstr "LapЬ ieПkojimas Пiek tiek uЧtruks"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "Internet konfiguracija"
+
+#, fuzzy
+msgid "Internet"
+msgstr "Аdomu"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Biuras"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedija"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedija"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentacija"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedija"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Pasirinkite kokio norite Аdiegti dydЧio"
+
+#~ msgid "Total size: "
+#~ msgstr "Bendras dydis: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Perkonfiguruoti tinklЮ dabar"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Viskas sukonfiguruota.\n"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Pasijungimo pavadinimas"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Pasijungimo pavadinimas"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Pasijungimo pavadinimas"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Pasijungimo pavadinimas"
+
+#~ msgid "Germany"
+#~ msgstr "VokieХiЬ"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "VokieХiЬ (1TR6)"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "KЮ JШs norite pakeisti"
+
+#~ msgid "Install/Rescue"
+#~ msgstr "аdiegti/IПgelbКti"
+
+#~ msgid "Rescue"
+#~ msgstr "IПgelbКti"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Kokio tipo skirsnА norite turКti?"
+
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Pasirinkite \"аdiegti\" jeigu nebuvo Аdiegta ankstesniЬ GNU/Linux versijЬ\n"
+#~ "arba jШs norite turКti jЬ keletЮ.\n"
+#~ "\n"
+#~ "Pasirinkite \"IПgelbКti\" jeigu norite iПgelbКti jau АdiegtЮ Linux-Mandrake "
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ "Pasirinkite:\n"
+#~ "\n"
+#~ " - Rekomenduojama: Jeigu jums ansХiau nКra tekФ Аdiegti GNU/Linux.\n"
+#~ "\n"
+#~ " - VartotojiПka: Jeigu jau turКjote reikalЬ su GNU/Linux. GalКsite "
+#~ "pasirinkti\n"
+#~ "pirminФ kompiuterio funkcijЮ\n"
+#~ "\n"
+#~ " - Eksperto: Jeigu jШs puikiai sekasi su GNU/Linux iПsprФsti rimtas "
+#~ "uЧduotis.\n"
+#~ "Kaip ir konfiguracijoje \"VartotojiПka\" jШs galКsite pasirinkti koks bus\n"
+#~ "Пios sistemos panaudojimas.\n"
+#~ " Bet PraПome, PraПome NESIRINKITE TAI, APIE Kю JшS NIEKO NEчINOTE!\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "Dabar jШs galite pasirinkti А kuriЮ(-ias) sritА(-is) Аdiegsime\n"
+#~ "Linux-Mandrake\n"
+#~ "sistemЮ, jeigu tai dar nebuvo nustatyta anksХiau (nuo buvusio Linux\n"
+#~ "Аdiegimo\n"
+#~ "arba su kokia nors skirsniЬ skirstymo programa). пi operacija susideda iП\n"
+#~ "loginio\n"
+#~ "kompiuterio kieto disko padalinimo А kelius skirsnius.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu jums reikia sukurti naujus skirsnius, naudokite \"Automatinis\n"
+#~ "nustatymas\", norint\n"
+#~ "automatiПkai sukurti Linux skirsnius. Norint skirsniЬ sukШrimui pasirinkti "
+#~ "kaupiklА,\n"
+#~ "spauskite \"hda\", jeigu tai pirmasis IDE diskas ant kanalo, \"hdb\" jeigu\n"
+#~ "antras ant pirmo IDE kanalo, \"sda\" jeigu pirmas SCSI diskas ir t.t\n"
+#~ "\n"
+#~ "\n"
+#~ "Du pagrindiniai skirsniai yra: root skirsnis (/), kuris yra sistemos "
+#~ "pradinis\n"
+#~ "taПkas ir /boot, kuris susideda iП bylЬ, kuriЬ reikia sistemos uЧkrovimui,\n"
+#~ " kada kompiuteris pirmЮ kartЮ Аjungiamas\n"
+#~ "\n"
+#~ "\n"
+#~ "Kadangi Пio proceso rezultatas yra negrАЧtamas, tЮ daryti nepatyrusiam\n"
+#~ "vartotojui\n"
+#~ "gali bШti sunku. VisЮ procedШrЮ supaprastina DiskDrake. PrieП\n"
+#~ "pradКdami,\n"
+#~ "pasiЧiШrКkite dokumentacijЮ.\n"
+#~ "\n"
+#~ "JШs galite tai daryti klaviatШros pagalba: eikite per skirsnius klaviПЬ Tab\n"
+#~ "ir Up/Down klaviПЬ pagalba\n"
+#~ ". Kada skirnis pasirinktas, JШs galite naudoti:\n"
+#~ "\n"
+#~ "- Ctrl-c, norКdami sukurti naujЮ skirsnА (kada bШna pasirinktas tuПХias "
+#~ "skirsnis)\n"
+#~ "\n"
+#~ "- Ctrl-d, norКdami iПtrinti skirsnА\n"
+#~ "\n"
+#~ "- Ctrl-m, norКdami nurodyti prijungimo vietЮ\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Visos naujai nustatytos sritys norint jas naudoti turi bШti suformatuotos\n"
+#~ "(formatavimas reiПia falinКs sistemos sukШrimЮ). Dabar jШs gal bШt norite\n"
+#~ "iПnaujo suformatuoti jau formatuotas sritis, kad iПtrinti jose esanХius\n"
+#~ "duomenis. Atminkite kad iПnaujo formatuoti jau formatuotas sitis nКra\n"
+#~ "bШtina, nes jose gali bШti reikalinga informacija."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Dabar yra Аdiegiami paketai, kuriuos jШs pasirinkote. Tai turКtЬ\n"
+#~ "keletЮ minuХiЬ uЧtrukti, taХiau jeigu jШs pasirinkote atnaujinti\n"
+#~ "tai turКtЬ uЧtrukti kiek ilgiau."
+
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Jeigu DrakX nepavyko surasti jШsЬ pelКs arba jШs pats norite jЮ\n"
+#~ "nurodyti; jums bus parodytas sЮraПas\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu jШs sutinkate su DrakX nustatymais tiesiog paspauskite OK.\n"
+#~ "Kitokiu atveju pasirinkite pelФ kuri jums labiausiai tinka.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu pas jus yra pelК su serijine jungtimi jums taip pat reikКs nurodyti\n"
+#~ "prie kokios jungties ji yra prijungta."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "пi sekcija yra skirta vietinio tinklo (LAN) nustatymui.\n"
+#~ "\n"
+#~ "Jeigu jШs pasakyrite \"Taip\" DrakX pabandys pats surasti tinklo kortЮ.\n"
+#~ "PCI Аrenginys turКtЬ bШti surastas ir prijungtas automatiПkai. TaХiau\n"
+#~ "jeigu jШsЬ turite ISA АrenginА automatinis aptikimas nesuveiks ir jШs\n"
+#~ "turКsite nurodyti tvarkyklФ iП sЮraПo, kuris tada pasirodys.\n"
+#~ "\n"
+#~ "\n"
+#~ "DКl SCSI АrenginiЬ, leiskite tvarkyklei pirmiau paХiai pabandyti АrenginА,\n"
+#~ "nes kitokio atveju jums teks nurodyti nustatymus iП Windows Control Panel\n"
+#~ "konfiguracijos\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu jШs Аdiegiate Linux-Mandrake А kompiuterА, kuris jau yra tinkle\n"
+#~ "tinklo administratorius jums turi nurodyti informacijЮ apie IP adresЮ,\n"
+#~ "tinklo subkaukФ ir tinklo kaukФ. аdiegiant privaХiam tinkle namuose, jums "
+#~ "tai\n"
+#~ "reikКs pasirinkti paХiam."
+
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Labai rekomenduojama Хia pasirinkti \"Taip\". Jeigu jШs vКliau \n"
+#~ "АdieginКsite Microsoft Windows ji naujai uЧraПys startavimo sektoriЬ.\n"
+#~ "Tada nepadarФ startavimo diskelio kaip mes patarКje nebegalКsite\n"
+#~ "startuoti GNU/Linux."
+
+#~ msgid "Move your wheel!"
+#~ msgstr "Pajudinkite ratukЮ!"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Ar pamirПti pakeitimus?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "Spausdintuvo prijungimas"
+
+#~ msgid "Host name:"
+#~ msgstr "Kompiuterio vardas:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Kokia JШsЬ pelКs rШПis?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "AutomatinК skiriamoji geba"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "AП pabandysiu Аvairias galimas skiriamasias gebas.\n"
+#~ "JШsЬ ekranas mirgКs...\n"
+#~ "Jeigu norite, galite jА iПjungti, JШs iПgirsite pyptelКjimЮ, kai bus baigta"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "AП galiu pabandyti surasti prieinamЮ skiriamЮjЮ gebЮ (pvz.: 800x600).\n"
+#~ "Bet kompiuteris gali \"pakibti\"\n"
+#~ "Ar JШs norite pabandyti?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Nerasta galimЬ variantЬ\n"
+#~ "Pabandykite kitЮ video plokПtФ arba monitoriЬ"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "AutomatinК skiriamosios gebos paieПka"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB pelК"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB pelК (2 klaviПai)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB pelК (3+ klaviПai)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB pelК"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB pelК (2 klaviПai)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB pelК (3+ klaviПai)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Paprasta pelК"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI pelК"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft pelК"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech pelК"
+
+#~ msgid "USB Mouse"
+#~ msgstr "USB pelК"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB pelК (su 3 arba daugiau klaviПЬ)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft 2.1A arba vКlesnКs Rev (serijinК)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serijinК)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serijinК)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serijinК)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Paprasta pelК (serijinК)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Suderinama su Microsoft (serijinК)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Paprasta 3 klaviПЬ pelК (serijinК)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "nfs prijungimas nepavyko"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Kriptografija"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Ar JШs norite nustatyti savo sistemos vietinА tinklЮ?"
+
+#~ msgid "Show less"
+#~ msgstr "Rodyti maЧiau"
+
+#~ msgid "Show more"
+#~ msgstr "Rodyti daugiau"
+
+#~ msgid "curly"
+#~ msgstr "curly"
+
+#~ msgid "default"
+#~ msgstr "Pagrindinis"
+
+#~ msgid "tie"
+#~ msgstr "tie"
+
+#~ msgid "brunette"
+#~ msgstr "brunetК"
+
+#~ msgid "girl"
+#~ msgstr "mergina"
+
+#~ msgid "woman-blond"
+#~ msgstr "blondinК"
+
+#~ msgid "automagic"
+#~ msgstr "Automagic"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Koks JШsЬ klaviatШros iПdКstymas"
+
+#~ msgid "Normal"
+#~ msgstr "Normali"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Ar pabandyti surasti PCMCIA kortas?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Ar bandyti surasti %s Аrenginius"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "Modemo Nustatymai"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Ar JШs norite nustatyti savo modemo dialup prisijungimЮ?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Ar bandyti surasti PCI Аrenginius"
+
+#~ msgid "Searching root partition."
+#~ msgstr "IeПkomas pagrindinis skirsnis."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Tai ne pagrindinis skirsnis, praПom pasirinkti kitЮ"
+
+#~ msgid "No root partition found"
+#~ msgstr "Nerastas pagrindinis skirsnis"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Negalima naudoti transliavimo be NIS domeno"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "PraПome pasirinkti skirsnА, kurА JШs naudosite kaip pagrindinА."
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Jums neuЧtenka vietos Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automatinis"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Sveiki, besinaudojantys LILO, operaciniu sistemu ikrovos tvarkykle!\n"
+#~ "\n"
+#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
+#~ "\n"
+#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite <ENTER>\n"
+#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Sveiki, besinaudojantys SILO, operaciniu sistemu ikrovos tvarkykle!\n"
+#~ "\n"
+#~ "Noredami suzinoti pasirinkimu sarasa, spauskite <TAB>.\n"
+#~ "\n"
+#~ "Noredami ijungti viena is ju, irasykite jo pavadinima ir spauskite <ENTER>\n"
+#~ "arba laukite %d sekundziu ijungimo pagal nutylejima.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "Bendri SILO nustatymai"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "SILO turi sekanХius АraПus.\n"
+#~ "JШs galite pakeisti esamus arba pridКti naujЬ."
+
+#~ msgid "This label is already in use"
+#~ msgstr "пi ЧymК jau naudojama"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "SILO Аdiegimas nepavyko. аvyko sekanti klaida:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "Pirmiausia DrakX pabandys paieПkoti PCI ir SCSI АrenginiЬ. Jeigu jis suras\n"
+#~ "ir Чinos kokias tvarkykles jam (jiems) naudoti jis automatiПkai jas АdКs.\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu jШsЬ SCSI Аrenginys yra ISA plokПtК arba DrakX neЧinos kaip jА "
+#~ "valdyti\n"
+#~ "arba jШs iПvis jo neturite jums bus praneПta. Jeigu jШs neturite, "
+#~ "atsakykite\n"
+#~ "\"Ne\". Jeigu turite vienq arba daugiau atsakykite \"Taip\" ir tvarkykliЬ "
+#~ "sЮraПas\n"
+#~ "bus jums parodytas\n"
+#~ "\n"
+#~ "\n"
+#~ "Kai jШs pasirinksite tvarkyklФ, DrakX papraПys nurodyti jos nustatymus.\n"
+#~ "Pirmiausia leiskite Аrangai paХiai nusistatyti. DaЧnai tai puikiai suveikia\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ "Jeigu jums nepavyks, nepamirПkite, kad informacijos apie jШsЬ АrangЮ gali\n"
+#~ "suteikti dokumentacija arba Windows (jeigu jШs turite ПiЮ sistemЮ).\n"
+#~ "Tai tuos nustatymus jШs turite perduoti tvarkyklei."
+
+#~ msgid "Shutting down"
+#~ msgstr "Bandoma iПjungti"
+
#~ msgid "useless"
#~ msgstr "nenaudinga"
#~ msgid "garbage"
#~ msgstr "iПkraipymai"
-#~ msgid "Recommended"
-#~ msgstr "Rekomenduojama"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -4906,21 +7028,12 @@ msgstr "LapЬ ieПkojimas Пiek tiek uЧtruks"
#~ msgid "Setup SCSI"
#~ msgstr "Nustatyti SCSI"
-#~ msgid "Which language do you want?"
-#~ msgstr "Kokios kalbos JШs norite"
-
#~ msgid "Which packages do you want to install"
#~ msgstr "Kokius jШs norite Аdiegti paketus"
#~ msgid "Local LAN"
#~ msgstr "Lokalus LAN"
-#~ msgid "Dialup with modem"
-#~ msgstr "Prisiskambinimas modemu"
-
-#~ msgid "Local Printer Options"
-#~ msgstr "Vietinio spausdintuvo nustatymai"
-
#~ msgid "server"
#~ msgstr "serveris"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index 87ac01e15..d40767e10 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -6,51 +6,104 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-04 18:38+0200\n"
-"PO-Revision-Date: 1999-12-22 15:33+0100\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-10-01 21:05+0200\n"
"Last-Translator: Vitauts Stochka <vit@dpu.lv>\n"
"Language-Team: Latvian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:116 ../../Xconfigurator.pm_.c:236
-msgid "Generic"
-msgstr "VispБrГja"
-
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "GrafiskБ karte"
-#: ../../Xconfigurator.pm_.c:172
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "IzvГlieties grafisko karti"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "IzvГlieties X serveri"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X serveris"
-#: ../../Xconfigurator.pm_.c:198
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kuru XFree konfigurБciju jШs izvГlaties?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"JШsu kartei ir iespГjama aparatШras 3D akselerБcija, bet tikai ar XFree %s.\n"
+"JШsu karti uztur XFree %s, kam var bШt labБks 2D atbalsts."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "JШsu kartei ir iespГjama aparatШras 3D akselerБcija ar XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s ar aparatШras 3D akselerБciju"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"JШsu karte nodroПina aparatШras 3D akselerБciju, bet tikai ar XFree %s,\n"
+"рEMIET VгRб, KA TAS IR EKSPERIMENTбLS ATBALSTS, KAS VAR UZKбRT DATORU.\n"
+"JШsu karti uztur XFree %s, kam var bШt labБks 2D atbalsts."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"JШsu kartei ir iespГjama aparatШras 3D akselerБcija ar XFree %s.\n"
+"рEMIET VгRб, KA TAS IR EKSPERIMENTбLS ATBALSTS, KAS VAR UZKбRT DATORU."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ar EKSPERIMENTбLU aparatШras 3D akselerБciju"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree konfigurБcija"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "IzvГlieties grafiskБs kartes atmiРas apjomu"
-#: ../../Xconfigurator.pm_.c:225
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "IzvГlieties servera opcijas"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "IzvГlieties monitoru"
-#: ../../Xconfigurator.pm_.c:236
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitors"
-#: ../../Xconfigurator.pm_.c:239
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -70,41 +123,41 @@ msgstr ""
"Ir оOTI SVARнGI, lai jШs nenorБdНtu monitora tipu, kura sinhronizБcijas\n"
"frekvence pБrsniedz jШsu monitora iespГjas: jШs varat sabojБt savu "
"monitoru.\n"
-" Ja jШs ПaubБties, izvГlieties konservatНvБko variantu."
+" Ja Пaubaties, izvГlieties konservatНvБko variantu."
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "HorizontБlБ frekvence"
-#: ../../Xconfigurator.pm_.c:246
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "VertikБlБ frekvence"
-#: ../../Xconfigurator.pm_.c:285
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitors nav konfigurГts"
-#: ../../Xconfigurator.pm_.c:288
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "GrafiskБ karte pagaidБm nav konfigurГta"
-#: ../../Xconfigurator.pm_.c:291
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "IzПМirtspГjas pagaidБm nav izvГlГtas"
-#: ../../Xconfigurator.pm_.c:304
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Vai vГlaties izmГЛinБt Пo konfigurБciju?"
-#: ../../Xconfigurator.pm_.c:308
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "BrНdinБjums: ПНs grafiskБs kartes testГПana ir bНstama"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "BrНdinБjums: ПНs grafiskБs kartes testГПana var uzkБrt datoru"
-#: ../../Xconfigurator.pm_.c:311
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "TestГt konfigurБciju"
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -112,185 +165,172 @@ msgstr ""
"\n"
"mГЛiniet izmainНt daЧus parametrus"
-#: ../../Xconfigurator.pm_.c:350
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "AtklБta kОШda:"
-#: ../../Xconfigurator.pm_.c:373
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
-msgstr "PБrtraukПu pГc %d sekundГm"
+msgstr "Atliek %d sekundes"
-#: ../../Xconfigurator.pm_.c:377
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr "Vai tБ ir pareizi?"
+msgstr "Vai viss ir pareizi?"
-#: ../../Xconfigurator.pm_.c:385
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "AtklБta kОШda, mГЛiniet izmainНt daЧus parametrus"
-#: ../../Xconfigurator.pm_.c:393 ../../Xconfigurator.pm_.c:574
-msgid "Automatic resolutions"
-msgstr "AutomБtiskas izПМirtspГjas"
-
-#: ../../Xconfigurator.pm_.c:394
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Lai sameklГtu pieejamБs izПМirtspГjas, tiks izmГЛinБti daЧБdi\n"
-"varianti. AttГls uz ekrБna var pazust...\n"
-"Ja vГlaties, varat to izslГgt. Kad pБrbaude beigsies, jШs dzirdГsit\n"
-"skaРas signБlu"
-
-#: ../../Xconfigurator.pm_.c:452 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "IzПМirtspГja"
-#: ../../Xconfigurator.pm_.c:487
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "IzvГlieties izПМirtspГju un krБsu dziОumu"
-#: ../../Xconfigurator.pm_.c:489
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "GrafiskБ karte: %s"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 serveris: %s"
-#: ../../Xconfigurator.pm_.c:499
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "ParБdНt visu"
-#: ../../Xconfigurator.pm_.c:523
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "IzПМirtspГjas"
-#: ../../Xconfigurator.pm_.c:575
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Es varu mГЛinБt sameklГt pieejamБs izПМirtspГjas (piem.: 800x600).\n"
-"TomГr reizГm tas var uzkБrt jШsu datoru.\n"
-"Vai vГlaties pamГЛinБt?"
-
-#: ../../Xconfigurator.pm_.c:580
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Nav atrasts neviens derНgs reЧНms\n"
-"PamГЛiniet ar citu video karti vai monitoru"
-
-#: ../../Xconfigurator.pm_.c:920
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "TastatШras izkБrtojums: %s\n"
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Peles tips: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Peles ierНce: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitors: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitora horizontБlБ frekv.: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitora vertikБlБ frekv.: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "GrafiskБ karte: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "GrafiskБ atmiРa: %s kB\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "KrБsu dziОums: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "IzПМirtspГja: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../../Xconfigurator.pm_.c:943
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 draiveris: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Gatavoju X-Window konfigurБciju"
-#: ../../Xconfigurator.pm_.c:957
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Monitora maiРa"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "GrafiskБs kartes maiРa"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Servera opciju maiРa"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "IzПМirtspГjas maiРa"
-#: ../../Xconfigurator.pm_.c:961
-msgid "Automatical resolutions search"
-msgstr "AutomБtiska izПМirtspГju meklГПana"
-
-#: ../../Xconfigurator.pm_.c:965
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "ParБdНt informБciju"
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "MГЛinБt vГlreiz"
-#: ../../Xconfigurator.pm_.c:967 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Iziet"
-#: ../../Xconfigurator.pm_.c:971 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Ko jШs vГlaties darНt?"
-#: ../../Xconfigurator.pm_.c:978
-msgid "Forget the changes?"
-msgstr "Vai aizmirst izmaiРas?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"SaglabБt izmaiРas?\n"
+"PaПreizГjБ konfigurБcija ir:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:996
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "LШdzu atkБrtoti iereЛistrГjieties %s, lai aktivizГtu izmaiРas"
+msgstr "Lai aktivizГtu izmaiРas, lШdzu aizveriet un atveriet %s sesiju"
-#: ../../Xconfigurator.pm_.c:1012
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "LШdzu izreЛistrГjieties un tad nospiediet Ctrl-Alt-BackSpace"
+msgstr "LШdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1015
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X pГc startГПanas"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -298,226 +338,222 @@ msgstr ""
"Datoru var konfigurГt, lai pГc sistГmas ielБdes automБtiski startГtu X.\n"
"Vai vГlaties, lai pГc pБrstartГПanas tiktu startГts X?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Varat konfigurГt sistГmu tБ, lai pГc startГПanas automБtiski tiktu\n"
+"atvГrta viena noteikta lietotБja sesija. \n"
+"Ja nevГlaties izmantot Пo iespГju, nospiediet atsaukПanas pogu."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "IzvГlieties noklusГto lietotБju:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "NorБdiet palaiЧamo logu menedЧeri:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 krБsas (8 biti)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tШkstoПi krБsu (15 biti)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tШkstoПi krБsu (16 biti)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miljoni krБsu (24 biti)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miljardi krБsu (32 biti)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB vai vairБk"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Parasts VGA, 640x480 pie 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 pie 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 savietojams, 1024x768 pie 87 Hz ar joslБm (nav 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 pie 87 Hz ar joslБm, 800x600 pie 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Uzlabots Super VGA, 800x600 pie 60 Hz, 640x480 pie 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Ne-joslots SVGA, 1024x768 pie 60 Hz, 800x600 pie 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Augstas frekvences SVGA, 1024x768 pie 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frekvenХu, kas uztur 1280x1024 pie 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frekcenХu, kas uztur 1280x1024 pie 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frekvenХu, kas uztur 1280x1024 pie 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitors, kas uztur 1600x1200 pie 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitors, kas uztur 1600x1200 pie 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "sprogains"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "noklusГts"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "ar kaklasaiti"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunete"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "meitene"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondНne"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automaЛisks"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "SБknГjamБs sadaОas pirmais sektors"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Diska iekБrtas pirmais sektors (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub instalГПana"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO instalГПana"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Kur vГlaties instalГt sБknГtБju?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub instalГПana"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Neviens"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Kuru(s) sБknГtБju(s) vГlaties izmantot?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "SБknГtБja instalГПana"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "SБknГjamБ ierНce"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nedarbojas ar veciem BIOSiem)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Kompakts"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "kompakts"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Pauze pirms noklusГtБ attГla ielБdes"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Video reЧНms"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Pauze pirms noklusГtБ attГla ielБdes"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Parole"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Parole (atkБrtoti)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "IerobeЧot komandrindas opcijas"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ierobeЧot"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "SБknГtБja galvenБs opcijas"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcijai ``IerobeЧot komandrindas opcijas'' nav jГgas bez paroles"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "LШdzu mГЛiniet vГlreiz"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Paroles nesakrНt"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -525,167 +561,383 @@ msgstr ""
"пeit ir daЧБdi sБknГПanas ieraksti.\n"
"JШs varat pievienot jaunus vai izmainНt esoПos."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Pievienot"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "IzdarНts"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "KБda veida ierakstu gribat pievienot"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Cita OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Cita OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "KБda veida ierakstu gribat pievienot"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "AttГls"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Sakne"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "PapildinБt"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "LasНt-rakstНt"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabula"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "NedroПs"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Nosaukums"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "NoklusГts"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "IzdzГst ierakstu"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "TukПs nosaukums nav atОauts"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "пis nosaukums jau ir izmantots"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Atrasti %s %s interfeisi"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Vai datorБ ir vГl kБds?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Vai datorБ ir kБds %s interfeiss?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "NГ"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "JБ"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "ApskatНt aparatШras informБciju"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "InstalГju draiveri %s kartei %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modulis %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Kuru %s draiveri pamГЛinБt?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"DaЧos gadНjumos %s draiverim ir jБnorБda papildus informБcija, lai tas\n"
+"darbotos pareizi, tomГr parasti tБ nav vajadzНga. Vai vГlaties norБdНt\n"
+"papildus parametrus, vai arН Оausiet draiverim aptaujБt datoru un savБkt\n"
+"nepiecieПamo informБciju? Retos gadНjumos aptaujБПana var uzkБrt datoru,\n"
+"taХu tas neradНs nekБdus bojБjumus."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "AptaujБt"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "NorБdНt opcijas"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Tagad jШs varat norБdНt parametrus modulim %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Tagad jШs varat norБdНt moduОa %s opcijas.\n"
+"Opcijas jБnorБda formБtБ ``nosaukums=vГrtНba nosaukums2=vГrtНba2 ...''.\n"
+"PiemГram, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "ModuОa opcijas:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"ModuОa %s ielБde bija neveiksmНga.\n"
+"Vai vГlaties pamГЛinБt ar citiem parametriem?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Juus sveicina %s, opereetaajsisteemu paarsleedzeejs!\n"
+"\n"
+"Sarakstaa izveelieties vajadziigo sisteemu vai gaidiet %d sekundes, liidz "
+"tiks ielaadeeta nokluseetaa sisteema.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Izmantojiet taustinus %c un %c, lai izveeleetos vajadziigo ierakstu."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Izdaliitais ieraksts tiks saakneets peec %d sekundeem."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nepietiek vietas sadaОБ /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Darbagalds"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Starta izvГlne"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minШtes"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minШte"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekundes"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Izveidot"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "NomontГt"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "IzdzГst"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FormatГt"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:590
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "MainНt izmГru"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tips"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "MontГПanas punkts"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "IerakstНt /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "PБrslГgties uz eksperta reЧНmu"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "PБrslГgties uz normБlu reЧНmu"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Atjaunot no faila"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "SaglabБt failБ"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Meistars"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Atjanot no disketes"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "SaglabБt disketГ"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "IztНrНt visu"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "FormatГt visu"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Izvietot automБtiski"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Visas primБrБs sadaОas ir izmantotas"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Vairs nevaru pievienot nevienu sadaОu"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -693,59 +945,63 @@ msgstr ""
"Ja vГlaties vairБk sadaОas, lШdzu izdzГsiet vienu sadaОu, lai varГtu "
"izveidot paplaПinБtu sadaОu"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "IzglБbt sadaОu tabulu"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Atcelt"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "IerakstНt sadaОu tabulu"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "PБrlБdГt"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "TukПs"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Cits"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "TukПs"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Cits"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Failu sistГmu tipi:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "DetaОas"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -757,17 +1013,17 @@ msgstr ""
"Iesaku vispirms izmainНt ПНs sadaОas izmГru\n"
"(uzklikПМiniet uz tБs, tad uz \"MainНt izmГru\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "LШdzu vispirms izveidojiet datu rezerves kopiju"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lasiet uzmanНgi!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -776,77 +1032,77 @@ msgstr ""
"Ja gatavojaties izmantot aboot, neaizmirstiet atstБt brНvu vietu diska\n"
"sБkumБ (2048 sektori ir pietiekoПi)"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Esiet uzmanНgi: ПН operБcija ir bНstama."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "KОШda"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:680
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "MontГПanas punkts: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "IerНce: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS iekБrtas burts: %s (tikai minГjums)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tips: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "SБkums: sektors %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "IzmГrs: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektori"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "No cilindra %d lНdz cilindram %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "FormatГts\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "NeformatГts\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "MontГts\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback fails(i): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -854,79 +1110,79 @@ msgstr ""
"NoklusГti sБknГjamБ sadaОa\n"
" (lai sБknГtu MS-DOS, nevis lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "LНmenis %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabala izmГrs %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID diski %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faila nosaukums: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "LШdzu uzklikПМiniet uz sadaОas"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "IzmГrs: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "лeometrija: %s cilindri, %s galvas, %s sektori\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "SadaОu tabulas tips: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "uz Пinas %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "MontГta"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "AktНva"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Pievienot pie RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "IzslГgt no RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "IzmainНt RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Izmantot priekП loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "IzvГlieties darbНbu"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -938,7 +1194,7 @@ msgstr ""
"Vai nu jШs izmantojat LILO, un tas nestrБdБs, vai arН jШs neizmantojat LILO, "
"un /boot jums nav vajadzНgs"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -949,63 +1205,67 @@ msgstr ""
"ПН cietБ diska 1024. cilindra, un jums nav /boot sadaОas.\n"
"Ja jШs plБnojat izmantot LILO, neaizmirstiet pievienot /boot sadaОu"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"JШs esat izvГlГjies programmisku RAID sadaОu kБ saknes sadaОu (/).\n"
"Neviens sБknГtБjs nespГj to izmantot bez /boot sadaОas.\n"
-"TБpГc neaizmirstiet izveidot /boot sadaОu, ja vГlaties izmantot lilo vai grub"
+"TБpГc neaizmirstiet izveidot /boot sadaОu."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "TБ vietБ izmantojiet ``%s''"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Vispirms izmantojiet ``NomontГt''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"PГc sadaОas %s tipa nomaiРas visi ПajБ sadaОБ esoПie dati tiks pazaudГti"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "TomГr turpinБt?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Iziet bez saglabБПanas"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Iziet bez sadaОu tabulas ierakstНПanas?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "NomainНt sadaОas tipu"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "KБdu sadaОas tipu jШs vГlaties?"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "Kuru failsistГmu vГlaties izmantot?"
+
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
+msgid "You can't use ReiserFS for partitions smaller than 32MB"
+msgstr "JШs nevarat izmantot ReiserFS sadaОБm, kas mazБkas par 32MB"
-#: ../../diskdrake.pm_.c:483
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur jШs vГlaties montГt loopback failu %s?"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur jШs vГlaties montГt ierНci %s?"
-#: ../../diskdrake.pm_.c:489
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1013,39 +1273,39 @@ msgstr ""
"Nevaru noРemt montГПanas punktu, jo ПН sadaОa tiek izmantota ka loopback.\n"
"Vispirms nodzГsiet loopback"
-#: ../../diskdrake.pm_.c:508
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"PГc sadaОas %s formatГПanas visi ПajБ sadaОБ esoПie dati tiks pazaudГti"
-#: ../../diskdrake.pm_.c:510
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "FormatГju"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "FormatГju loopback failu %s"
-#: ../../diskdrake.pm_.c:512 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "FormatГju sadaОu %s"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "PГc visu sadaОu formatГПanas"
-#: ../../diskdrake.pm_.c:517
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "visi ПБjБs sadaОБs esoПie dati tiks pazaudГti"
-#: ../../diskdrake.pm_.c:527
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "PБrvietot"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Uz kuru disku vГlaties pБrvietot?"
@@ -1074,79 +1334,83 @@ msgstr "IekБrtas %s sadaОu tabula tiks ierakstНta uz diska!"
msgid "You'll need to reboot before the modification can take place"
msgstr "Lai izmaiРas sБktu darboties, jums bШs jБpБrstartГ dators"
-#: ../../diskdrake.pm_.c:569 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "IzskaitОoju fat failu sistГmas robeЧas"
-#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:618
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Mainu izmГru"
-#: ../../diskdrake.pm_.c:585
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "пis sadaОas izmГru nevar izmainНt"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Visiem ПajБ sadaОБ esoПajiem datiem jБizveido rezerves kopijas"
-#: ../../diskdrake.pm_.c:587
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"PГc sadaОas %s izmГra maiРas visi Пaja sadaОБ esoПie dati tiks pazaudГti"
-#: ../../diskdrake.pm_.c:597
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "IzvГlieties jauno izmГru"
-#: ../../diskdrake.pm_.c:597 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:652
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Izveidot jaunu sadaОu"
-#: ../../diskdrake.pm_.c:672
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "SБkuma sektors: "
-#: ../../diskdrake.pm_.c:676 ../../diskdrake.pm_.c:750
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "IzmГrs MB: "
-#: ../../diskdrake.pm_.c:679 ../../diskdrake.pm_.c:753
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Failu sistГmas tips: "
-#: ../../diskdrake.pm_.c:682
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PriekПroka: "
-#: ../../diskdrake.pm_.c:729 ../../install_steps.pm_.c:132
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "пo sadaОu nevar izmantot priekП loopback"
-#: ../../diskdrake.pm_.c:739
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:749
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback faila nosaukums: "
-#: ../../diskdrake.pm_.c:775
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Fails jau tiek izmantots citam loopback, izvГlieties citu failu"
-#: ../../diskdrake.pm_.c:776
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Fails jau eksistГ. Vai to izmantot?"
-#: ../../diskdrake.pm_.c:798 ../../diskdrake.pm_.c:814
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "IzvГlieties failu"
-#: ../../diskdrake.pm_.c:807
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1154,11 +1418,11 @@ msgstr ""
"SadaОu tabulas rezerves kopijai ir cits izmГrs\n"
"Vai tomГr turpinБt?"
-#: ../../diskdrake.pm_.c:815
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "UzmanНbu"
-#: ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1166,77 +1430,78 @@ msgstr ""
"Ielieciet disketi\n"
"Visi uz disketes esoПie dati tiks pazaudГti"
-#: ../../diskdrake.pm_.c:830
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "MГЛinu izglБbt sadaОu tabulu"
-#: ../../diskdrake.pm_.c:841
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "ierНce"
-#: ../../diskdrake.pm_.c:842
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "lНmenis"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "gabala izmГrs"
-#: ../../diskdrake.pm_.c:855
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "IzvГlieties esoПu RAID, kam pievienot"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "jauns"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatГПana %s neizdevБs"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nezinu, kБ formatГt %s, izmantojot tipu %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nfs montГПana neizdevБs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "montГПana neizdevБs: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "kОШda nomontГjot %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "MontГПanas punktiem jБsБkas ar /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau eksistГ sadaОa ar montГПanas punktu %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Cikliski montГПanas punkti %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "пim katalogam ir jБpaliek saknes failsistГmБ"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
+"пim montГПanas punktam ir nepiecieПama reБla failu sistГma (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "KОШda atverot %s ierakstНПanai: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1244,76 +1509,127 @@ msgstr ""
"AtklБta kОШda - nav atrasta neviena ierНce, kas derГtu jaunu failu sistГmu "
"veidoПanai. LШdzu pБrbaudiet aparatШru, lai noskaidrotu problГmas iemeslu"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Jums nav nevienas sadaОas!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "IzvГlieties vГlamo instalГПanas un sistГmas izmantoПanas valodu."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "LШdzu norБdiet vГlamo instalГПanas un sistГmas izmantoПanas valodu."
+
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"Lai turpinБtu instalГПanu, jums ir jБapstiprina augstБk esoПБs licences "
+"nosacНjumi.\n"
+"\n"
+"\n"
+"LШdzu izvГlieties \"PieРemt\", ja piekrНtat nosacНjumiem.\n"
+"\n"
+"\n"
+"LШdzu izvГlieties \"NoraidНt\", ja nepiekrНtat nosacНjumiem. InstalГПana "
+"tiks pБrtraukta bez paПreizГjБs\n"
+"konfigurБcijas izmaiРБm."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "No saraksta izvГlieties jШsu tastatШrai atbilstoПo izkБrtojumu"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"Ja vГlaties, lai citas valodas (izРemot to, ko norБdНjБt instalГПanas\n"
+"sБkumБ) bШtu pieejamas pГc instalГПanas, lШdzu norБdiet tБs augstБk\n"
+"esoПajБ sarakstБ. Ja vГlaties izvГlГties visas, nospiediet \"Viss\"."
+
+#: ../../help.pm_.c:30
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-"IzvГlieties \"InstalГt\", ja nav instalГta agrБka Linux versija,\n"
-"vai arН jШs vГlaties vienlaicНgi izmantot vairБkus distributНvus\n"
-"vai versijas.\n"
+"LШdzu izvГlieties \"InstalГt\", ja nav instalГta vecБka Linux-Mandrak "
+"versija\n"
+"vai jШs vГlaties izmantot vairБkas operГtБjsistГmas.\n"
"\n"
-"IzvГlieties \"Uzlabot\", ja jШs vГlaties atjauninБt vecБku Mandrake\n"
-"Linux versiju: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 vai 7.0 (Air).\n"
"\n"
+"LШdzu izvГlieties \"AtjauninБt\", ja jШs vГlaties atjauninБt jau instalГtu\n"
+"Linux-Mandrake versiju.\n"
"\n"
-"IzvГlieties:\n"
"\n"
-" - AutomБtiska (ieteicama): IzvГlieties Пo, ja jШs lНdz Пim ne reizi\n"
-" neesat instalГjis Linux. PIEZнME: instalГПanas laikБ netiks konfigurГts\n"
-" tНkls. Lai to konfigurГtu, pГc instalГПanas pabeigПanas izmantojiet\n"
-" \"LinuxConf\".\n"
+"AtkarНbБ no jШsu GNU/Linux zinБПanБm, varat izvГlГties vienu no "
+"sekojoПajiem\n"
+"Linux-Mandrake instalГПanas vai atjauninБПanas lНmeРiem:\n"
"\n"
-" - PielБgota: Ja pietiekami labi pБrzinat GNU/Linux, jums tiks dota\n"
-" iespГja izvГlГties sistГmu pielietojumu. SНkБka informБcija bШs\n"
-" pieejam vГlБk.\n"
+"\t* Ieteicama: ja neesat ne reizi instalГjis GNU/Linux operГtБjsistГmu, "
+"izvГlieties Пo lНmeni. InstalГПana bШs\n"
+"\t Оoti vienkБrПa, un jums tiks uzdoti tikai daЧi jautБjumi.\n"
"\n"
-" - Eksperta: NoderГs, ja jШs labi pБrzinat GNU/Linux un vГlaties veikt\n"
-" precНzi pielБgotu instalБciju. TБpat kБ pielБgotas instalБcijas\n"
-" gadНjumБ jums tiks dota iespГja izvГlГties sistГmas pielietojumu.\n"
-" TomГr lШdzu, lШdzu, NEIZVгLIETIES пO, JA JшS NEESAT PбRLIECINбTS PAR\n"
-" SAVU RнCнBU!\n"
+"\n"
+"\t* PielБgota: ja pietiekami labi pБrzinat GNU/Linux, varat norБdНt sistГmas "
+"pamatpielietojumu (darbastacija, serveris,\n"
+"\t izstrБdei). Jums bШs jБatbild uz vairБk jautБjumiem nekБ \"Ieteicamas\" "
+"instalГПanas klases gadНjumБ, tБpГc\n"
+"\t jums jБzina, kБ darbojas GNU/Linux, ja gribat izvГlГties Пo klasi.\n"
+"\n"
+"\n"
+"\t* Eksperta: ja jШs labi zinat GNU/Linux, varat izvГlГties Пo instalГПanas "
+"klasi. TБpat kБ \"PielБgotas\" klases\n"
+"\t gadНjumБ, jШs varГsit norБdНt sistГmas pamatpielietojumu (darbastacija, "
+"serveris, izstrБdei). Esiet Оoti\n"
+"\t uzmanНgi, pirms izvГlaties Пo klasi. JШs varГsit veikt Оoti precНzi "
+"pielБgotu instalГПanu.\n"
+"\t Uz daЧiem jautБjumiem bШs grШti atbildГt, ja jШsu GNU/Linux zinБПanas "
+"nav pietiekoПi labas. TБpГc neizvГlieties\n"
+"\t Пo instalГПanas klasi, ja neesat pБrliecinБts."
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1321,12 +1637,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"IzvГlieties:\n"
"\n"
@@ -1334,364 +1651,684 @@ msgstr ""
" iespГja izvГlГties sistГmu pielietojumu. SНkБka informБcija bШs\n"
" pieejam vГlБk.\n"
"\n"
+"\n"
" - Eksperta: NoderГs, ja jШs labi pБrzinat GNU/Linux un vГlaties veikt\n"
" precНzi pielБgotu instalБciju. TБpat kБ pielБgotas instalБcijas\n"
" gadНjumБ jums tiks dota iespГja izvГlГties sistГmas pielietojumu.\n"
" TomГr lШdzu, lШdzu, NEIZVгLIETIES пO, JA JшS NEESAT PбRLIECINбTS PAR\n"
-" SAVU RнCнBU!\n"
+" SAVU RнCнBU!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
+msgstr ""
+"Tagad jums ir jБnorБda maПНnas pielietojums. Varat izvГlГties:\n"
+"\n"
+"\t* Darbastacija: ПН ir ideБla izvГle, ja plБnojat sistГmu galvenokБrt "
+"izmantot ikdienas vajadzНbБm birojБ vai mБjБs.\n"
+"\n"
+"\n"
+"\t* IzstrБdei: ja plБnojat sistГmu izmantot galvenokБrt programmatШras "
+"izstrБdei, ПН ir laba izvГle. Jums\n"
+"\t ПajБ gadНjumБ tiks instalГts pilns programmu komplekts, lai varГtu "
+"kompilГt, atkОШdot un formatГt sБkumkodu vai\n"
+"\t veidot programmatШras pakotnes.\n"
+"\n"
+"\n"
+"\t* Serveris: ja plБnojat sistГmu izmantot kБ serveri, ПН ir laba izvГle. "
+"Tas var bШt failu serveris (NFS vai\n"
+"\t SMB), drukas serveris (Unix stila vai Microsoft Windows stila), "
+"autentificГПanas serverus (NIS),\n"
+"\t datubБzu serveris utt. пajБ gadНjumБ neceriet, ka tiks instalГti kБdi "
+"izskaistinБjumi (KDE, GNOME, un tml."
+
+#: ../../help.pm_.c:84
+msgid ""
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
+"\n"
+"\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
+"\n"
+"\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
+"\n"
+"\n"
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DaЧБdi varinati jШsu datora pielietojumam (pieРemot, ka jШs esat\n"
-"izvГlГjies instalГПanas klasi \"PielБgota\" vai \"Eksperta\") ir:\n"
+"DrakX mГЛinБs sameklГt PCI SCSI adapteri(us).\n"
+"Ja DrakX atradНs kБdu SCSI adapteri un zinБs, kuru draiveri izmantot,\n"
+"tas tiks instalГts automБtiski.\n"
+"\n"
+"Ja jums nav SCSI adapteru, ir ISA SCSI adapteris vai PCI SCSI adapteris,\n"
+"ko DrakX neatpazНst, jums tiks pajautБts, vai jШsu sistГmБ ir SCSI\n"
+"adapteris. Ja nav SCSI adapteru, jШs varat vienkБrПi izvГlГties 'NГ'.\n"
+"Ja jШs izvГlaties 'JБ', jums tiks parБdНts draiveru saraksts, no kura\n"
+"varat izvГlГties vajadzНgo adapteri.\n"
"\n"
-" - NormБls: izvГlГties Пo, ja jШs plБnojat savu datoru galvenokБrt\n"
-" izmantot ikdienas vajadzНbБm (birojБ, grafikas apstrБdei un tml.).\n"
-" Neceriet, ka tiks instalГts kaut viens kompilators vai izstrБdes\n"
-" programma.\n"
"\n"
-" - IzstrБdei: kБ norБda nosaukums. IzvГlieties Пo, ja jШs plБnojat\n"
-" savu datoru galvenokБrt izmantot programmatШras izstrБdei. Tad jums\n"
-" bШs pieejams pilnНgs programmatШras komplekts sБkumkoda kompilГПanai,\n"
-" atkОШdoПanai un formatГПanai, kБ arН programmu paku veidoПanai.\n"
+"Ja jums nepiecieПams patstБvНgi norБdНt adapteri, DrakX pajautБs, vai\n"
+"vГlaties norБdНt adaptera opcijas. Jums bШtu jБОauj DrakX aptaujБt\n"
+"aparatШtu un noskaidrot opcijas. Parasti tas izdodas.\n"
"\n"
-" - Serveris: izvГlieties Пo, ja datoru, uz kura jШs instalГjat\n"
-" Linux-Mandrake, ir paredzГts izmantot kБ serveri. Tas var bШt failu\n"
-" serveris (NFS vai SMB), drukas serveris (Unix lp (Line Printer)\n"
-" protokola vai Windows stila SMB drukБПanai), autentificГПanas serveris\n"
-" (NIS), datu bБzu servers un tml. Neceriet, ka tiks instalГti jebkБdi\n"
-" izskaistinБjumi (KDE, GNOME...).\n"
+"Ja neizdodas, jums patstБvНgi jБnorБda draivera opcijas.\n"
+"Izlasiet InstalГПanas rokasgrБmatu (3. nodaОu, apakПnodaОu \"InformБcijas "
+"savБkПana par jШsu aparatШtu\"), lai uzzinБtu, kБ iegШt Пo\n"
+"informБciju no aparatШras dokumentБcijas, raЧotБja tНkla lapas\n"
+"(ja jums ir pieejams Internets) vai no Windows (ja tБ ir uzstБdНta jШsu "
+"sistГmБ)."
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:108
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"DrakX vispirms mГЛinБs atrast vienu vai vairБkus PCI\n"
-"SCSI adapterus. Ja izdosies to(s) atrast un piemeklГt draiveri(us),\n"
-"adapteri tiks pievienoti automБtiski.\n"
+"PaПlaik jums ir jБizvГlas, kur uz cietБ diska instalГt Linux-Mandrake\n"
+"operГtБjsistГmu. Ja disks ir tukПs vai cita operГtБjsistГma aizРem visu\n"
+"vietu uz diska, jums bШs jБveic diska sadalНПana. нsumБ, cietБ diska\n"
+"sadalНПana nozНmГ to sadalНt loЛiskБs daОБs, lai izveidotu vietu\n"
+"Linux-Mandrak sistГmas instalГПanai.\n"
+"\n"
+"\n"
+"SakarБ ar to, ka diska sadalНПanas process parasti ir neatgriezenisks,\n"
+"nepieredzГjuПam lietotБjam tas var bШt nepatНkams un stresa pilns process.\n"
+"пis meistars vienkБrПo procesu. Pirms uzsБkat, izlasiet rokasgrБmatu un\n"
+"visu labi pБrdomБjiet.\n"
+"\n"
+"\n"
+"Jums ir nepiecieПamas vismaz divas sadaОas. Viena vajadzНga paПai sistГmai,\n"
+"otra - virtuБlajai atmiРai (ko sauc arН par Swap).\n"
+"\n"
+"\n"
+"Ja sadaОas jau izveidotas (agrБkas instalГПanas laikБ vai ar citu diska\n"
+"sadalНПanas rНku), jums tikai jБnorБda tБs sadaОas, kurБs vГlaties\n"
+"instalГt Linux sistГmu.\n"
"\n"
"\n"
-"Ja jШsu SCSI adapteris atrodas uz ISA plates vai PCI plates, kurai\n"
-"DrakX neprot piemeklГt draiveri, vai arН jums vispБr nav SCSI adapteru,\n"
-"jums tiks uzdots atbilstoПs jautБjums. Ja jШsu datorБ nav SCSI adapteru,\n"
-"izvГlieties \"NГ\". Ja ir vismaz viens adapteris, izvГlieties \"JБ\".\n"
-"Tad jums tiks piedБvБts draiveru saraksts, no kura jums bШs jБizvГlas\n"
-"atbilstoПs draiveris.\n"
+"Ja sadaОas vГl nav izveidotas, jums tБs ir jБizveido. Lai to izdarНtu,\n"
+"izmantojiet augstБk pieejamo meistaru. AtkarНbБ no jШsu cietБ diska \n"
+"konfigurБcijas ir iespГjami vairБki risinБjumi:\n"
"\n"
+"\t* Izmantot esoПu sadaОu: meistars uz cietБ diska ir atklБjis vienu vai "
+"vairБkas Linux sadaОas. Ja vГlaties\n"
+"\t tБs saglabБt, izvГlieties Пo opciju. \n"
"\n"
-"Kad bШs izvГlГts draiveris, DrakX pajautБs, vai vГlaties tam\n"
-"norБdНt parametrus. Vispirms Оaujiet draiverim aptaujБt ierНci:\n"
-"parasti tas darbojas bez problГmБm.\n"
"\n"
+"\t* IzdzГst visu disku: ja vГlaties izdzГst visus uz diska esoПos datus un "
+"sadaОas un aizstБt tБs ar jaunu\n"
+"\t Linux-Mandrake sistГmu, varat izvГlГties Пo opciju. Esiet uzmanНgi, "
+"izvГloties Пo risinБjumu, jo pГc\n"
+"\t apstiprinБПanas jШs vairs nevarГsit atteikties no ПНs izvГles.\n"
"\n"
-"Ja tas neizdodas, izmantojiet informБciju par savu adapteri, ko\n"
-"var atrast dokumentБcijБ vai no Windows (ja tas ir uzstБdНts jШsu\n"
-"datorБ), kБ tas ieteikts instalБcijas rokasgrБmatБ. пie parametri\n"
-"bШs jБnorБda draiverim."
+"\n"
+"\t* Izmanto brНvo vietu Windows sadaОБ: ja uz cietБ diska ir instalГts "
+"Microsoft Windows, kas aizРem visu\n"
+"\t vietu, jums ir jБatbrНvo vieta Linux datiem. Lai to izdarНtu, jШs varat "
+"nodzГst Microsoft Windows sadaОu un\n"
+"\t datus (skatНt risinБjumus \"IzdzГst visu disku\" vai \"Eksperta "
+"reЧНms\") vai izmainНt Microsoft\n"
+"\t Windows sadaОas izmГru. SadaОas izmГru var izmainНt bez datu zaudГПanas. "
+"пis risinБjums ir ieteicams, ja\n"
+"\t jШs savБ datorБ vГlaties izmantot gan Linux-Mandrake, gan Microsoft "
+"Windows.\n"
+"\n"
+"\n"
+"\t Pirms izvГlaties Пo risinБjumu, Рemiet vГrБ, ka Microsoft Windows "
+"sadaОas izmГrs bШs mazБks, nekБ ir\n"
+"\t paПlaik. Tas nozНmГ, ka jums bШs mazБk vietas Microsoft Windows sistГmБ "
+"datiem vai programmu instalГПanai.\n"
+"\n"
+"\n"
+"\t* Eksperta reЧНms: ja jШs vГlaties pastБvНgi veidot diska sadaОБs, varat "
+"izvГlГties Пo variantu. Esiet\n"
+"\t uzmanНgi pirms ПН risinБjuma izvГles. Tas ir ar plaПБm iespГjБm, bet "
+"bНstams. JШs nejauПi varat zaudГt\n"
+"\t visus datus, tБpГc izvГlieties tikai tad, ja zinat, ko darБt."
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"PaПlaik jШs varat izvГlГties, kurБ(s) diska sadaОБ(s) instalГt\n"
-"Linux-Mandrake sistГmu, ja tБs jau ir izveidotas (agrБkas Linux\n"
-"instalГПanas laikБ vai ar citu sadaОu veidoПanas rНku palНdzНbu). Citos\n"
-"gadНjumos vispirms jБizveido diska sadaОas. пН operБcija nozНmГ\n"
-"datora cietБ diska apjomu loЛiski sadalНt atseviПМi izmantojamБs daОБs.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
-"Ja jums ir jБveido jaunas sadaОas, izmantojiet \"Izvietot automБtiski\",\n"
-"lai automБtiski izveidotu Linux sadaОas. JШs varat izvГlГties disku,\n"
-"uzklikПМinot uz \"hda\", ja tБ ir pirmБ IDE iekБrta, \"hdb\", ja tБ ir\n"
-"otrБ iakБrta, vai \"sda\", ja tБ ir pirmБ SCSI iekБrta, utt.\n"
"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"Divas svarНgas sadaОas ir saknes sadaОa (/), kas ir failu sistГmas\n"
-"katalogu hierarhijas sБkumpunkts, un /boot, kas satur visus\n"
-"operГtajsistГmas startГПanai nepiecieПamos failus.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"SakarБ ar to, ka ПН procesa rezultБtus parasti nevar atcelt,\n"
-"nepieredzГjuПiem lietotБjiem tas var bШt biedГjoПs un stresa pilns\n"
-"process. Lai tБ nebШtu, DiskDrake vienkБrПo Пo procesu. Pirms turpinБt,\n"
-"pБrlasiet dokumentБciju un visu labi apdomБjiet.\n"
"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
-"Jebkurai opcijai jШs varat piekОШt ar taustiРiem: pБrejiet no vienas\n"
-"sadaОas uz citu ar Tab un bultiРБm uz augПu/leju. Kad sadaОa ir\n"
-"izvГlГta, jШs varat izmantot:\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-c lai izveidotu jaunu sadaОu (kad ir izvГlГta tukПa sadaОa)\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-d lai izdzГstu sadaОu\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
-"- Ctrl-m lai norБdНtu montГПanas punktu\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Jebkuru jaunizveidoto sadaОu pirms tБs izmantoПanas ir jБformatГ\n"
-"(formatГПana nozНmГ failu sistГmas izveidoПanu). Tagad jШs arН varat\n"
-"izvГlГties pБrformatГt jau eksistГjoПas sadaОas, lai izdzГstu tur\n"
-"esoПos datus. PiezНme: agrБk izveidotas sadaОas nav obligБti\n"
-"jБpБrformatГ, it seviПki, ja tajБs atrodas faili, ko jШs vГlaties\n"
-"saglabБt. Parasti tiek saglabБtas /home un /usr/local."
+"NorБdiet cieto disku, ko vГlaties izdzГst, lai izveidoti\n"
+"jaunu Linux-Mandrake sadaОu. Esiet uzmanНgs, visi uz tБ esoПie dati\n"
+"pazudНs un nebШs atjaunojami."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
-msgstr ""
-"Tagad jШs varat izvГlГties instalГjamo vai uzlabojamo paku grupas.\n"
-"\n"
-"PГc tam DrakX pБrbaudНs, vai jums ir pietiekoПi daudz vietas to visu\n"
-"instalГПanai. Ja nav vietas, jШs brНdinБs par to. Ja jШs vГlaties\n"
-"turpinБt neskatoties uz to, izvГlГto grupu instalГПana turpinБsies,\n"
-"taХu tiks izlaistas daЧas mazБk noderНgas pakas. Saraksta apakПБ jШs\n"
-"varat izvГlГties opciju \"AtseviПМu paku izvГle\"; ПajБ gadНjumБ jums\n"
-"vajadzГs caurskatНt vairБk nekБ 1000 paku sarakstu..."
-
-#: ../../help.pm_.c:150
-msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Ja jums ir visi ПajБ sarakstБ norБdНtie CD, nospiediet Ok.\n"
-"Ja jums nav neviena no norБdНtajiem CD, nospiediet Cancel.\n"
-"Ja trШkst tikai daЧu CD, sarakstБ atslГdziet tos un nospiediet Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:267
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-"IzvГlГtБs pakas paПlaik tiek instalГtas. пН operБcija ilgs vairБkas\n"
-"minШtes, ja vien jШs neizvГlГjБties uzlabot jau esoПu sistГmu, jo ПajБ\n"
-"gadНjumБ tas notiks ilgБk pat pirms sistГmas uzlaboПanas uzsБkПanas."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr "LШdzu esat pacietНgs. пН darbНba var ilgt vairБkas minШtes."
+
+#: ../../help.pm_.c:303
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"Ja DrakX neizdevБs atrast jШsu peli, vai arН jШs vГlaties pБrbaudНt,\n"
-"kas ir izdarНts, augПБ tiks parБdНts peОu saraksts.\n"
"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
-"Ja jШs piekrНtat DrakX izvГlei, vienkБrПi pБrejiet uz nepiecieПamo\n"
-"sekciju, uzklikПМinot uz nosaukuma izvГlnГ ekrБna kreisajБ pusГ. PretГjБ\n"
-"gadНjumБ sarakstБ izvГlieties to peles tipu, kas pГc jШsu domБm labБk\n"
-"atbilst jШsu peles modelim.\n"
"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
-"Ja jums ir seriБla pele, jums bШs jБpasaka DrakX, kuram seriБlajam portam\n"
-"tБ ir pieslГgta."
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:329
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-"LШdzu izvГlieties pareizu portu. PiemГram, MS Windows ports COM1 Linux\n"
-"vidГ tiek saukts par ttyS0."
+"Tagad varat izvГlГties instalГjamo vai uzlabojamo pakotРu grupu.\n"
+"\n"
+"\n"
+"PГc tam DrakX pБrbaudНs, vai pietiek vietas to visu instalГПanai.\n"
+"Ja nav vietas, jШs brНdinБs par to. Ja vГlaties turpinБt, neskatoties\n"
+"uz to, izvГlГto grupu instalГПana turpinБsies, taХu tiks izlaistas\n"
+"daЧas mazБk noderНgas pakotnes. Saraksta apakПБ varat izvГlГties\n"
+"opciju \"AtseviПМu pakotРu izvГle\"; ПajБ gadНjumБ jums vajadzГs\n"
+"caurskatНt vairБk nekБ 1000 pakotРu sarakstu..."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:341
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"пН sekcija ir veltНta lokБlБ datortНkla (LAN) vai modГma konfigurГПanai.\n"
+
+#: ../../help.pm_.c:358
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"Ja jums ir visi ПajБ sarakstБ norБdНtie CD, nospiediet Ok.\n"
+"Ja jums nav neviena no norБdНtajiem CD, nospiediet Atsaukt.\n"
+"Ja trШkst tikai daЧu CD, sarakstБ atslГdziet tos un nospiediet Ok."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"IzvГlieties \"LokБlais datortНkls\", un DrakX mГЛinБs jШsu datorБ sameklГt\n"
-"Ethernet adapteri. PCI adapterus vajadzГtu atrast un inicializГt\n"
-"automБtiski.\n"
-"TomГr, ja jШsu adapteris ir uz ISA Пinas, autonoteikПana nedarbosies,\n"
-"un jums bШs jБizvГlas draiveris no vГlБk parБdНtБ saraksta.\n"
+"\n"
+"Please be patient."
+msgstr ""
+"JШsu jaunБ Linux-Mandrake operГtБjsistГma paПlaik tiek\n"
+"instalГta. пН darbНba aizРems daЧas minШtes (tas ir atkarНgs no apjoma,\n"
+"ko jШs izvГlГjБties instalГt, un no jШsu datota Бtruma.)\n"
"\n"
"\n"
-"TБpat kБ SCSI adapteriem, jШs vispirms varat Оaut draiverim aptaujБt\n"
-"adapteri, citБdi jums bШs draiverim jБnorБda konkrГti parametri,\n"
-"ko jШs esat uzzinБjuПi no savas aparatШras dokumentБcijas.\n"
+"LШdzu esiet pacietНgs."
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+"Tagad varat izmГЛinБt peli. Izmantojiet pogas un riteni, lai\n"
+"pБrliecinБtos, ka konfigurБcija ir pareiza. Ja nav, varat nospiest\n"
+"\"Atsaukt\" un izvГlГties citu draiveri."
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"LШdzu izvГlieties pareizu portu. PiemГram, MS Windows\n"
+"ports COM1 GNU/Linux vidГ saucas ttyS0."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"Ja jШs instalГjat Linux-Mandrake sistГmu datorБ, kas ir pieslГgts jau\n"
-"esoПam datortНklam, tНkla administrators jums bШs norБdНjis visu\n"
-"nepiecieПamo informБciju (IP adresi, apakПtНkla masku jeb vienkБrПi\n"
-"tНkla masku un datora nosaukumu). Ja jШs veidojat privБtu datortНklu,\n"
-"piemГram, mБjБs, jums paПam jБizvГlas adrese.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"IzvГlieties \"IezvanНПanБs ar modГmu\", un tiks konfigurГts Interneta\n"
-"pieslГgums darbam ar modГmu. DrakX mГЛinБs sameklГt jШsu modГmu, bet, ja\n"
-"tas neizdosies, jums bШs jБnorБda ports, pie kura ir pieslГgts jШsu\n"
-"modГms."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
-"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"ModГms nav atrasts. LШdzu norБdiet, kuram seriБlajam portam tas pieslГgts.\n"
"\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+"JШsu zinБПanai, pirmais seriБlais ports (ko Microsoft Windows sauc par\n"
+"\"COM1\") Linux vidГ tiek saukts par \"ttyS0\"."
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+"Ja jums ir БrГjs modГms, lШdzu ieslГdziet to un Оaujiet DrakX to noteikt "
+"automБtiski."
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "LШdzu ieslГdziet jШsu modГmu un izvГlieties pareizo modeli."
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
msgstr ""
-"Ievadiet:\n"
+"Tagad varat ievadНt jШsu datora vБrdu, ja tas nepiecieПamas.\n"
+"Ja jШs to nezinat vai neesat pБrliecinБts, ko ievadНt, pareizu informБciju\n"
+"var saРemt no jШsu Interneta pakalpojumu sniedzГja."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - IP adrese: ja to nezinat, pajautБjiet tНkla administratoram vai ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - TНkla maska: \"255.255.255.0\" parasti ir laba izvГle. Ja neesat\n"
-"pБrliecinБts, pajautБjiet tНkla administratoram vai ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
+msgstr ""
+"Tagad varat konfigurГt tНkla ierНci.\n"
"\n"
+" * IP adrese: ja to nezinat vai neesat pБrliecinБts, pajautБjiet tНkla "
+"administratoram.\n"
+" Jums nav jБievada IP adrese, ja zemБk izvГlaties \"AutomБtisks IP\".\n"
"\n"
-" - AutomБtisks IP: Ja jШsu datortНkls izmanto bootp vai dhcpd protokolu,\n"
-"izvГlieties Пo opciju. Kad tБ ir izvГlГta, nav jБnorБda \"IP addrese\".\n"
-"Ja neesat pБrliecinБts, pajautБjiet tНkla administratoram vai ISP.\n"
+" - TНklamaska: \"255.255.255.0\" parasti ir laba izvГle. Ja nezinat vai "
+"neesat pБrliecinБts, pajautБjiet\n"
+"tНkla administratoram.\n"
+"\n"
+" - AutomБtisks IP: ja jШsu datortНkls izmanto BOOTP vai DHCP protokolu, "
+"izvГlieties Пo opciju. Kad tБ izvГlГta,nnav jБnorБda \"IP addrese\". Ja "
+"nezinat vai neesat pБrliecinБts, pajautБjiet tНkla administratoram."
+
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Tagad varat ievadНt jШsu datora vБrdu, ja tas nepiecieПamas.\n"
+"Ja jШs to nezinat vai neesat pБrliecinБts, pajautБjiet tНkla administratoram."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"Tagad varat ievadНt jШsu datora vБrdu, ja tas nepiecieПams.\n"
+"Ja nezinat vai neesat pБrliecinБts, atstБjiet tukПu."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1699,7 +2336,7 @@ msgstr ""
"Tagad jШs varat ievadНt iezvanНПanБs opcijas. Ja jШs nezinat, ko ievadНt,\n"
"vajadzНgo informБciju var saРemt no jШsu ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1708,127 +2345,240 @@ msgstr ""
"nezinat, vai izmantosit proxy, pajautБjiet tНkla administratoram vai\n"
"savam ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"Ja jШsu Interneta pieslГgums ir konfigurГts pareizi, jШs varat instalГt\n"
-"kriptogrБfijas pakas. Vispirms izvГlieties spoguОserveri, no kura ielБdГt\n"
-"pakas, tad izvГlieties instalГjamБs pakas.\n"
+"kriptogrБfijas pakotnes. Vispirms izvГlieties spoguОserveri, no kura\n"
+"ielБdГt pakotnes, tad izvГlieties instalГjamБs pakotnes.\n"
+"\n"
"\n"
-"Atcerieties, ka spoguОserveris un kriptogrБfijas pakas ir jБizvГlas\n"
+"Atcerieties, ka spoguОserveris un kriptogrБfijas pakotnes ir jБizvГlas\n"
"atbilstoПi jШsu valsts likumdoПanai."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "Tagad varat norБdНt laika joslu, kurБ jШs dzНvojat."
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Tagad jШs varat izvГlГties laika joslu, kurБ jШs dzНvojat.\n"
+"GNU/Linux laiku rГМina pГc GMT jeb \"GrНniХas MeridiБna Laika\" un pБrvГrП\n"
+"to par vietГjo laiku atbilstoПi jШsu izvГlГtajai laika joslai.\n"
"\n"
"\n"
-"Linux laiku rГМina pГc GMT jeb \"GrНniХas MeridiБna Laika\" un pБrvГrП to\n"
-"par vietГjo laiku atbilstoПi jШsu izvГlГtajai laika joslai."
+"Ja ПajБ datorБ izmantojat arН Microsoft Windows, izvГlieties \"NГ\"."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-"Tagad jШs varat izvГlГties servisus, kurus jШs vГlaties startГt sistГmas\n"
-"sБknГПanas laikБ. Kad pele pБrvietojas pБr saraksta elementu, parБdБs\n"
-"neliela balona palНdzНbu, kas paskaidro servisa lomu.\n"
+"Tagad varat izvГlГties servisus, kurus jШs vГlaties startГt sistГmas\n"
+"sБknГПanas laikБ.\n"
+"\n"
+"\n"
+"Kad pele pБrvietojas pБr saraksta elementu, parБdБs\n"
+"neliels palНdzНbas balons, kas paskaidro servisa lomu.\n"
+"\n"
"\n"
"Esiet НpaПi uzmanНgs ПajБ solН, ja vГlaties sistГmu izmantot ka serveri:\n"
-"iespГjams, ka nevГlaties startГt nevienu nevajadzНgu servisu."
+"iespГjams, ka nevГlaties startГt nevienu nevajadzНgu servisu. Atcerieties.\n"
+"ka daЧi servisi var bШt bНstami, ja darbojas serverН.\n"
+"Parasti izvГlieties tikai tos servisus, kas jums tieПБm nepiecieПami."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"JШs varat konfigurГt lokБlu printeri (kas pieslГgts jШsu datoram) vai\n"
+"attБlu printeri (pieejami Unix, Netware vai Microsoft Windows tНklБ)."
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
msgstr ""
-"Linux var izmantot daudzus printeru tipus. Katram printeru tipam\n"
-"nepiecieПami atПМirНgi parametri. TomГr Рemiet vГrБ, ka drukas spolГtБjs\n"
-"izmanto 'lp' kБ noklusГto printera nosaukumu, tБpГc ir jБbШt printerim\n"
-"ar ПБdu nosaukumu. TomГr printerim var pieПМirt vairБkus nosaukumus,\n"
-"atdalot tos ar simbolu '|'. TБdГjБdi, ja jШs gribat saprotamБku\n"
-"nosaukumu, lieciet to pirmo, piem., \"Mans printeris|lp\".\n"
-"Printeris, kura nosaukumБ ir \"lp\", bШs noklusГtais printeris.\n"
+"JШsu printeris nav atrasts. LШdzu ievadiet ierНces nosaukumu, kurai tas ir\n"
+"pieslГgts.\n"
"\n"
"\n"
-"Ja printeris ir tieПi pieslГgts jШsu datoram, izvГlieties\n"
-"\"LokБls printeris\". PГc tam jums bШs janorБda, kuram portam\n"
-"printeris ir pieslГgts, kБ arН jБizvГlas atbilstoПs filtrs.\n"
+"JШsu zinБПanai, vairums printeru ir pieslГgti pirmajam paralГlajam portam.\n"
+"пo portu GNU/Linux vidГ sauc par \"/dev/lp0\" bet Microsoft Windows vidГ\n"
+"par \"LPT1\"."
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "Tagad jums ir jБizvГlБs printeri no augstБk esoПБ saraksta."
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Ja vГlaties izmantot printeri, kas ir pieslГgts attБlam Unix serverim,\n"
-"jums ir jБizvГlas \"AttБls lpd\". Lai tas darbotos, nav nepiecieПams\n"
-"lietotaja vБrds un parole, taХu ir jБzina printera rindas nosaukums\n"
-"uz ПН servera.\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"LШdzu izvГlieties jШsu printerim atbilstoПas opcijas.\n"
+"Izlasiet dokumentБciju, ja nezinat, ko izvГlГties.\n"
"\n"
"\n"
-"Ja vГlaties izmantot SMB printeri (kas nozНmГ, ka printeris ir pieslГgts\n"
-"attБlam Windows 9x/NT datoram), jums bШs jБnorБda tБ SMB vБrds\n"
-"(kas var nesakrist ar datora TCP/IP vБrdu) un, iespГjams, IP adrese,\n"
-"kБ arН lietotБja vБrds, darbagrupa un parole, lai varГtu piekОШt Пim\n"
-"printerim, un, protams, printera nosaukums. Tas pats attiecas arН uz\n"
-"NetWare printeri, vienНgi nav nepiecieПama darbagrupas informБcija."
+"NБkamajБ solН jШs varГsit pБrbaudНt izvГlГto konfigurБciju un izmainНt to,\n"
+"ja printeris nedarbosies pareizi."
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Tagad varat ievadНt jШsu Linux-Mandrake sistГmas root paroli.\n"
"Parole ir jБievada divas reizes, lai pБrliecinБtos, ka abas kopijas\n"
@@ -1837,14 +2587,18 @@ msgstr ""
"\n"
"Root ir sistГmas administrators un vienНgais lietotБjs, kam ir atОauts\n"
"izmainНt sistГmas konfigurБciju. пН iemesla dГО rШpНgi izvГlieties Пo\n"
-"paroli! NeautorizГta root konta izmantoПana var bШt Оoti bНstama ne\n"
-"tikai jШs sistГmas integritБtei un datiem, bet arН citБm tai\n"
-"pieslГgtajБm sistГmБm. Parolei ir jБbШt vismaz 8 simbolus garai burtu\n"
-"un ciparu kombinБcijai. To NEKAD nevajag pierakstНt uz papНra.\n"
-"TomГr neizvГlieties pБrБk garu vai sareЧЛНtu paroli: jums to ir\n"
+"paroli! NeautorizГta root konta izmantoПana var bШt Оoti bНstama\n"
+"sistГmas integritБtei, tБs datiem un citБm tai pieslГgtajБm sistГmБm.\n"
+"\n"
+"\n"
+"Parolei ir jБbШt vismaz 8 simbolus garai burtu un ciparu kombinБcijai.\n"
+"To nekad nevajadzГtu pierakstНt uz papНra.\n"
+"\n"
+"\n"
+"NeizvГlieties pБrБk garu vai sareЧЛНtu paroli: jums to ir\n"
"jБspГj atcerГties bez pБrБk lielas piepШles."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1852,7 +2606,7 @@ msgstr ""
"Lai palielinБtu sistГmas droПНbu, izvГlieties \"Izmantot shadow failu\"\n"
"un \"Izmantot MD5 paroles\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1860,7 +2614,7 @@ msgstr ""
"Ja jШsu tНklБ lieto NIS, izvГlieties \"Izmantot NIS\". Ja jШs to nezinat\n"
"pajautБjiet savam tНkla administratoram."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1885,8 +2639,8 @@ msgid ""
msgstr ""
"Tagad jШs varat pievienot vienu vai vairБkus \"parastu\" lietotБju\n"
"kontus kБ pretstatu \"priviliЛГta\" lietotБja kontam root. Varat izveidot\n"
-"vienu vai vairБkus kontus katrai personai, kam vГlaties atОaut piekОШt\n"
-"jШsu datoram. Atcerieties, ka katram lietotБja kontam ir sava\n"
+"vienu vai vairБkus kontus katrai personai, kam bШs atОauts izmantot\n"
+"jШsu datoru. Atcerieties, ka katram lietotБja kontam ir sava\n"
"konfigurБcija (grafiskБ vide, programmu konfigurБcija un tml.) un savs\n"
"\"mБjas katalogs\", kurБ ПН konfigurБcija tiek glabБta.\n"
"\n"
@@ -1901,35 +2655,32 @@ msgstr ""
"ko jШs tШlНt izveidosit, un jБiereЛistrГjas kБ root tikai administrГПanas\n"
"un uzturГПanas uzdevumu veikПanai."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Ir Оoti ieteicams Пeit atbildГt \"JБ\". Ja jШs vГlБk instalГsit\n"
-"Microsoft Windows, tas pБrrakstНs diska sБknГПanas sektoru.\n"
-"Ja jШs nebШsit izveidojis piedБvБto sБknГПanas disketi, jШs vairs\n"
-"nevarГsit ielБdГt Linux."
+"Ir Оoti ieteicams izveidot sБknГПanas disketi. Ja jums neizdosies startГt\n"
+"savu datoru, tБ bШs vienНgais veids, kБ to izglБbt bez pБrinstalГПanas."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Jums ir jБnorБda, kur jШs vГlaties novietot\n"
-"Linux sБknГПanai nepiecieПamo informБciju.\n"
+"GNU/Linux sБknГПanai nepiecieПamo informБciju.\n"
"\n"
"\n"
"Ja vien jШs neesat absolШti pБrliecinБts par savu rНcНbu,\n"
"izvГlieties \"Diska pirmais sektors (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1938,10 +2689,10 @@ msgstr ""
"\"/dev/hda\" (primБrais galvenБ kanБla IDE) vai \"/dev/sda\" (pirmais\n"
"SCSI disks)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1951,7 +2702,7 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"LILO (the LInux LOader) un Grub ir sБknГtБji: tie spГj sБknГt Linux\n"
+"LILO (the LInux LOader) un Grub ir sБknГtБji: tie spГj sБknГt GNU/Linux\n"
"vai jebkuru citu operГtБjsistГmu, kas ir uzstБdНta jШsu datorБ.\n"
"Parasti citas operГtБjsistГmas tiek korekti noteiktas un instalГtas.\n"
"Ja tБ nenotiek, jШs ПajБ ekrБnБ varat ar roku pievienot ierakstu. Esiet\n"
@@ -1962,7 +2713,7 @@ msgstr ""
"un ПajБ gadНjumБ jШs varat izdzГst attiecНgos ierakstus. Bet ПajБ\n"
"gadНjumБ jums bШs nepiecieПama sБknГПanas diskete, lai tБs sБknГtu!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1979,7 +2730,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO un grub galvenБs opcijas ir:\n"
@@ -2000,10 +2753,60 @@ msgstr ""
" * normБls: izvГlas normБlu 80x25 teksta reЧНmu.\n"
" * <skaitlis>: izmanto atbilstoПu teksta reЧНmu."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO ir sБknГtБjs SPARC sistГmБm: tas spГj sБknГt GNU/Linux\n"
+"vai jebkuru citu operГtБjsistГmu, kas ir uzstБdНta jШsu datorБ.\n"
+"Parasti citas operГtБjsistГmas tiek korekti noteiktas un instalГtas.\n"
+"Ja tБ nenotiek, jШs ПajБ ekrБnБ varat ar roku pievienot ierakstu. Esiet\n"
+"uzmanНgs, izvГloties pareizus parametrus.\n"
+"\n"
+"\n"
+"JШs varbШt arН vГlaties neОaut nevienam piekОШt pБrГjБm operГtБjsistГmБm,\n"
+"un ПajБ gadНjumБ jШs varat izdzГst attiecНgos ierakstus. Bet ПajБ\n"
+"gadНjumБ jums bШs nepiecieПama sБknГПanas diskete, lai tБs sБknГtu!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"SILO galvenБs opcijas ir:\n"
+" - SБknГtБja instalГПana: NorБda, kur jШs vГlaties novietot informБciju,\n"
+"kas nepiecieПama GNU/Linux sБknГПanai. Ja vien neesat pБrliecinБts\n"
+"par ko citu, izvГlieties \"Diska pirmais sektors (MBR)\".\n"
+"\n"
+"\n"
+" - Pauze pirms noklusГtБ attГla sБknГПanas: NorБda laiku sekundes\n"
+"desmitdaОБs, ko sБknГtБjs gaida pirms pirmБ attГla ielБdes.\n"
+"Tas ir ieteicams sistГmБm, kas sБknГjas tieПi no cietБ diska tШlНt pГc\n"
+"tastatШras aktivizГПanas. SБknГПana sБkas bez pauzes, ja \"pauze\" nav\n"
+"norБdНta vai ir nulle."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2014,7 +2817,7 @@ msgid ""
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
-"Ir pienБcis laiks konfigurГt X Window System, kas ir Linux GUI\n"
+"Ir pienБcis laiks konfigurГt X Window System, kas ir GNU/Linux GUI\n"
"(grafiskБ lietotБja interfeisa) pamats. Lai to izdarНtu, jums ir\n"
"jБkonfigurГ video karte un monitors. TomГr vairums no Пiem soОiem ir\n"
"automatizГti, tБpГc jШsu uzdevums var bШt tikai pБrbaudНt izdarНto\n"
@@ -2026,7 +2829,7 @@ msgstr ""
"parametri jШs apmierina. Ja tie neder, jШs varat atgriezties un tos\n"
"nomainНt tik reizes, cik bШs nepiecieПams."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2034,7 +2837,7 @@ msgstr ""
"Ja ar X konfigurБciju kaut kas nav kБrtНbБ, izmantojiet ПНs opcijas,\n"
"lai pareizi konfigurГtu X Window System."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2042,77 +2845,85 @@ msgstr ""
"Ja dodat priekПroku darba uzsБkПanai grafiskБ reЧНmБ, izvГlietis \"JБ\",\n"
"citБdi izvГlieties \"NГ\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
-"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
-"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
-"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
-msgstr ""
-"Tagad jШs varat izvГlГties daЧБdas jШsu sistГmas opcijas.\n"
-"\n"
-" - Izmantot cietБ diska optimizБcijas: ПН opcija var uzlabot cietБ diska\n"
-" veiktspГju, taХu tБ ir paredzГta tikai pieredzГjuПiem lietotБjiem:\n"
-" daЧas kОШdainas mikroshГmas var iznНcinБt jШsu datus, tБpГc jШs esat\n"
-" brНdinБts. Atcerieties, ka kodolБ ir iebШvГts disku un mikroshГmu\n"
-" melnais saraksts, tomГr, ja vГlaties iztikt bez nepatНkamiem\n"
-" pБrsteigumiem, neizvГlieties Пo opciju.\n"
-"\n"
-" - IzvГlieties droПНbas lНmeni: jШs varat izvГlГties sistГmas droПНbas\n"
-" lНmeni. PilnНgu informБciju meklГjiet rokasgrБmatБ. нsumБ: ja jШs\n"
-" nezinat, izvГlieties \"VidГjs\"; ja vГlaties patieПБm droПu sistГmu,\n"
-" izvГlieties \"Paranoisks\", taХu Рemiet vГrБ: пAJб LнMENн ROOT\n"
-" IEREлISTRгпANбS NO KONSOLES NAV ATоAUTA! Ja jШs vГlaties bШt root,\n"
-" jums ir jБiereЛistrГjas kБ lietotБjam un tad jБizmanto \"su\". VБrdu\n"
-" sakot, neceriet, ka jШs varГsit izmantot savu sistГmu kam citam,\n"
-" atskaitot servera uzdevumus. JШs esat brНdinБts.\n"
-"\n"
-" - PrecНzs RAM apjoms, ja nepiecieПams: diemЧГl mШsdienu datoru\n"
-" pasaulГ nav vienotas metodes, kБ pajautБt BIOSam par jШsu datorБ\n"
-" uzstБdНtБs atmiРas apjomu. TБ rezultБtБ Linux var neizdoties pareizi\n"
-" noteiktu jШsu datora RAM apjomu. Ja tБ notiek, jШs Пeit varat\n"
-" norБdНt pareizu RAM apjomu. рemiet vГrБ, ka 2 vai 4 MB atПМirНba\n"
-" ir normБla.\n"
-"\n"
-" - NomainБmu datu nesГju automontГПana: ja nevГlaties katru reizi montГt\n"
-" nomainБmus datu nesГjus (CD-ROM, disketi, Zip), drukБjot \"mount\" un\n"
-" \"umount\", izvГlieties Пo opciju.\n"
-"\n"
-" - IeslГgt NumLock palaiПanas laikБ: ja vГlaties, lai pГc sБknГПanas\n"
-" bШtu ieslГgts NumLock, izvГlieties Пo opciju (PiezНme: var gadНties,\n"
-" ka NumLock tomГr nebШs ieslГgts X vidГ)."
-
-#: ../../help.pm_.c:428
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
+msgstr ""
+"Tagad varat izvГlГties daЧБdas sistГmas opcijas.\n"
+"\n"
+"* Izmantot cietБ diska optimizБcijas: ПН opcija var uzlabot cietБ diska "
+"veiktspГju, taХu tБ ir paredzГta tikai pieredzГjuПiem lietotБjiem:\n"
+" daЧas kОШdainas mikroshГmas var iznНcinБt jШsu datus, tБpГc jШs esat "
+"brНdinБts. Atcerieties, ka kodolБ ir iebШvГts disku un mikroshГmu\n"
+" melnais saraksts, tomГr, ja vГlaties iztikt bez nepatНkamiem\n"
+" pБrsteigumiem, neizvГlieties Пo opciju.\n"
+"\n"
+"\n"
+"* IzvГlieties droПНbas lНmeni: jШs varat izvГlГties sistГmas droПНbas\n"
+" lНmeni. PilnНgu informБciju meklГjiet rokasgrБmatБ. Parasti, ja\n"
+" nezinat, atstБjiet noklusГto vГrtНbu.\n"
+"\n"
+"\n"
+"* PrecНzs RAM apjoms, ja nepiecieПams: diemЧГl mШsdienu datoru\n"
+" pasaulГ nav vienotas metodes, kБ pajautБt BIOSam par jШsu datorБ\n"
+" uzstБdНtБs atmiРas apjomu. RezultБtБ Linux ne vienmГr pareizi\n"
+" nosaka jШsu datora RAM apjomu. Ja tБ notiek, jШs Пeit varat\n"
+" norБdНt pareizu RAM apjomu. рemiet vГrБ, ka 2 vai 4 MB atПМirНba\n"
+" ir normБla.\n"
+"\n"
+"* NomainБmu datu nesГju automontГПana: ja nevГlaties katru reizi montГt\n"
+" nomainБmus datu nesГjus (CD-ROM, disketi, Zip u.c.), drukБjot \"mount\" "
+"un \"umount\", izvГlieties Пo opciju.\n"
+"\n"
+"\n"
+"* IztНrНt \"/tmp\" katras sБknГПanas laikБ: ja jШs vГlaties sistГmas "
+"sБknГПanas laikБ izdzГst visus failus un\n"
+" katalogus, kas atrodas \"/tmp\", izvГlieties Пo opciju.\n"
+"\n"
+"\n"
+"* IeslГgt NumLock palaiПanas laikБ: ja vГlaties, lai pГc sБknГПanas bШtu "
+"ieslГgts NumLock, izvГlieties Пo\n"
+" opciju. рemiet vГrБ, ka to nevajadzГtu izvГlГties klГpjdatoriem, un ka "
+"NumLock var strБdБt vai nestrБdБt X vidГ."
+
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2126,96 +2937,118 @@ msgstr ""
"automБtiski. Ja vГlaties sБknГt kБdu citu jau uzstБdНtu operГtБjsistГmu,\n"
"lШdzu izlasiet papildus norБdНjumus."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Valodas izvГle"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "InstalГПanas klases izvГle"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "CietБ diska noteikПana"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Peles konfigurГПana"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "TastatШras izvГle"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "DaЧБdi"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Failu sistГmu uzstБdНПana"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Diska formatГПana"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
-msgstr "InstalГjamo paku izvГle"
+msgstr "InstalГjamo pakotРu izvГle"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "SistГmas instalГПana"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "TНkla konfigurГПana"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "KriptogrБfija"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
-msgstr "Laika joslas konfigurГПana"
+msgstr "Laika konfigurГПana"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Servisu konfigurГПana"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Printera konfigurГПana"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "root paroles izvГle"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
-msgstr "LietotБja pievienoПana"
+msgstr "LietotБju pievienoПana"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
-msgstr "SБknГПanas disketes radНПana"
+msgstr "SistГmdisketes radНПana"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "SБknГtБja instalГПana"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "X konfigurГПana"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Auto instalГПanas diskete"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "InstalГПanas beigas"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "KОШda nolasot failu $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "LШdzu notestГjiet peli"
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "Lai aktivizГtu peli,"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "PAKUSTINIET RITENI!"
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"DaЧu jШsu datorБ uzstБdНto ierНХu darbНbai nepiecieПami ``firmas'' "
+"draiveri.\n"
+"Papildus informБciju varat atrast Пeit: %s"
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2225,229 +3058,247 @@ msgstr ""
"пim nolШkam izveidojiet sadaОu (vai uzklikПМiniet uz jau esoПas).\n"
"Tad izvГlieties darbНbu ``MontГПanas punkts'' un norБdiet, ka tas ir `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Man neizdodas nolasНt sadaОu tabulu, priekП manis tБ ir pБrБk bojБta :(\n"
-"Es mГЛinБПu turpinБt, atslГdzot sliktБs sadaОas"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Jums ir nepiecieПama swap sadaОa"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake neizdevБs pareizi nolasНt sadaОu tabulu.\n"
-"Turpiniet, ja vГlaties riskГt!"
+"Jums nav swap sadaОas\n"
+"\n"
+"Vai tomГr turpinБt?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "MeklГju saknes sadaОu."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Izmantot brНvo vietu"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformБcija"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Nepietiek brНvas vietas, lai izvietotu jaunas sadaОas"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: пН nav saknes sadaОa, lШdzu izvГlieties citu."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Izmantot jau esoПu sadaОu"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Saknes sadaОa nav atrasta"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Nav nevienas sadaОas, ko varГtu izmantot"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nevar izmantot apraidi, ja nav norБdНts NIS domГns"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Izmantot Windows sadaОu priekП loopback"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "KОШda nolasot failu $f"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Kuru sadaОu vГlaties izmantot priekП Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"AtklБta kОШda, bet es nezinu, kБ ar to pareizi apieties.\n"
-"Turpiniet, ja vГlaties riskГt."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "IzvГlieties izmГrus"
-#: ../../install_steps.pm_.c:174
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "DublГts montГПanas punkts %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Saknes sadaОas izmГrs (MB): "
-#: ../../install_steps.pm_.c:321
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap sadaОas izmГrs (MB): "
-#: ../../install_steps.pm_.c:388
-#, c-format
-msgid "Welcome to %s"
-msgstr "JШs sveic %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Izmantot Windows sadaОas brНvo vietu"
-#: ../../install_steps.pm_.c:740
-msgid "No floppy drive available"
-msgstr "Nav nevienas diskeПu iekБrtas"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Kuras sadaОas izmГru vГlaties izmainНt?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "IzskaitОoju Windows failu sistГmas robeЧas"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "UzsБku soli `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"FAT izmГra mainНtБjs nespГj izmainНt jШsu sadaОu,\n"
+"atklБta sekojoПa kОШda: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Jums ir nepiecieПama swap sadaОa"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "Windows sadaОa ir pБrБk fragmentГta, vispirms palaidiet ``defrag''"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Jums nav swap sadaОas\n"
+"BRнDINбJUMS!\n"
"\n"
-"Vai tomГr turpinБt?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "IzvГlietis apjomu, ko vГlaties instalГt"
+"Tagad DrakX izmainНs Windows sadaОas izmГru. Esiet uzmanНgs: ПН darbНba\n"
+"ir bНstama. Ja jШs to vГl neesat izdarНjis, jums vispirms ir jБpБrtrauc\n"
+"instalГПana, no Windows jБpalaiЧ scandisk (ieteicams palaist arН defrag),\n"
+"tad atkБrtoti jБsБk instalГПana. VajadzГtu izveidot arН datu rezerves\n"
+"kopiju. Kad esat pБrliecinБts, spiediet Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "KopГjais apjoms: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "KБdu apjomu vГlaties atstБt priekП windows uz"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Versija: %s\n"
+msgid "partition %s"
+msgstr "sadaОa %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Apjoms: %d KB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT izmГra maiРa neizdevБs: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "IzvГlieties pakas, ko vГlaties instalГt"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Nav FAT sadaОu, lai izmainНto to izmГru vai izmantotu kБ loopback (vai "
+"nepietiek brНvas vietas)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "IzdzГst visu disku"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "InstalГt"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "NoРemt Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "InstalГju"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Jums ir vairБk nekБ viens cietais disks, uz kura jШs instalГjat linux?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "LШdzu uzgaidiet, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "VISAS diska %s sadaОas un tajБs esoПie dati tiks pazaudГti"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "AtlikuПais laiks"
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Eksperta reЧНms"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "KopГjais laiks"
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Imantot diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Sagatavoju instalГПanu"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Izmantot fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "InstalГju paku %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Tagad jШs varat sadalНt diska iekБrtu %s.\n"
+"Kad esat pabeiguПi, neaizmirstiet saglabБt, izmantojot `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "TomГr turpinБt?"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "JШsu Windows sadaОБ nav pietiekoПi daudz brНvas vietas"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Paku kБrtoПanas laikБ atklБta kОШda:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "Nevaru atrast vietu instalГПanai"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Vai izmantot jau esoПo X11 konfigurБciju?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "DrakX sadaОu veidoПanas meistars atrada sekojoПus risinБjumus:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "LШdzu izvГlieties vienu no sekojoПБm instalГПanas klasГm:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Diska sadalНПana neizdevБs: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Jums nav nevienas windows sadaОas!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Iedarbinu tНklu"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Jums nav pietiekoПi daudz vietas priekП Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "AtslГdzu tНklu"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"UZMANнBU!\n"
-"\n"
-"DrakX tagad ir jБizmaina Windows sadaОas izmГrs. Esiet uzmanНgs: ПН\n"
-"operБcija ir bНstama. Ja jШs to vГl neesat izdarНjis, vispirms no Windows\n"
-"Пo sadaОu pБrbaudiet ar scandisk (un papildus palaidiet arН defrag), tad\n"
-"atkБrtoti sБciet instalБciju. Bez tam ir jБizveido datu rezerves kopija.\n"
-"Ja esat pБrliecinБts, spiediet Ok."
+"AtklБta kОШda, bet es nezinu, kБ ar to pareizi apieties.\n"
+"Turpiniet, ja vГlaties riskГt."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "AutomБtiska izmГra maiРa neizdevБs"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "DublГts montГПanas punkts %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Kuru sadaОu vГlaties izmantot Linux4Win novietoПanai?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"DaЧas svarНgas pakotnes neizdevБs pareizi instalГt.\n"
+"Ir bojБta jШsu kompaktdisku iekБrta vai instalБcijas disks.\n"
+"Parbaudiet disku uz instalГta datora, izmantojot komandu \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "IzvГlieties izmГrus"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "JШs sveic %s"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Saknes sadaОas izmГrs (MB): "
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Nav nevienas diskeПu iekБrtas"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Swap sadaОas izmГrs (MB): "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "UzsБku soli `%s'\n"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"JШsu sistГmai trШkst resursu. Linux-Mandrake instalГПanas laikБ var\n"
+"rasties problГmas. Ja tБ notiek, varat pamГЛinБt teksta instalГПanu.\n"
+"Lai to izdarНtu, nospiediet`F1', ka notiek ielБde no CDROM, tad ievadiet\n"
+"`text'."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "LШdzu izvГlieties vienu no sekojoПБm instalГПanas klasГm:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "KopГjais jШsu izvГlГto grupu izmГrs ir aptuveni %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2456,12 +3307,12 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
"Ja jШs vГlaties instalГt mazБk nekБ Пo izmГru,\n"
-"procentuБli izvГlieties instalГjamo paku daudzumu.\n"
+"procentuБli izvГlieties instalГjamo pakotРu daudzumu.\n"
"\n"
-"Zems procentu lНmenis instalГs tikai vissvarНgБkБs pakas;\n"
-"100% lНmenН tiks instalГtas visas izvГlГtБs pakas."
+"Zems procentu lНmenis instalГs tikai vissvarНgБkБs pakotnes;\n"
+"100% lНmenН tiks instalГtas visas izvГlГtБs pakotnes."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2470,110 +3321,194 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-"Jums uz diska ir vieta tikai %d%% no ПНm pakБm.\n"
+"Jums uz diska ir vieta tikai %d%% no ПНm pakotnГm.\n"
"\n"
-"Ja vГlaties instalГt mazБk, procentuБli izvГlieties instalГjamo paku\n"
-"daudzumu. Zems procentu lНmenis instalГs tikai vissvarНgБkБs pakas;\n"
-"%d%% lНmenis instalГs tik daudz paku, cik ir iespГjams."
+"Ja vГlaties instalГt mazБk, procentuБli izvГlieties instalГjamo pakotРu\n"
+"daudzumu. Zems procentu lНmenis instalГs tikai vissvarНgБkБs pakotnes;\n"
+"%d%% lНmenis instalГs tik daudz pakotРu, cik ir iespГjams."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "NБkamajБ solН jШs varГsit izvГlГties daudz precНzБk."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
-msgstr "InstalГjamo paku procentuБlais daudzums"
+msgstr "InstalГjamo pakotРu procentuБlais daudzums"
+
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "IzvГlieties pakotnes, ko vГlaties instalГt"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "InstalГt"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "AutomБtiskas atkarНbas"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "IzvГrst koku"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "SakОaut koku"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "PБrslГgties starp nesakБrtotu un sakБrtotu pa grupБm"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
-msgstr "Slikta paka"
+msgstr "Slikta pakotne"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nosaukums: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versija: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Apjoms: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "SvarНgums: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "KopГjais izmГrs: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+"JШs nevarat izvГlГties Пo pakotni, jo nepietiek vietas tБs instalГПanai"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "Tiks instalГtas sekojoПas pakotnes"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "Tiks noРemtas sekojoПas pakotnes"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "JШs varat izvГlГties/atteikties no ПНs pakotnes"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
-msgstr "пН ir obligБta paka, no tБs nevar atteikties"
+msgstr "пН ir obligБta pakotne, no tБs nevar atteikties"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
-msgstr "JШs nevarat atteikties no ПНs pakas. TБ jau ir instalГta"
+msgstr "JШs nevarat atteikties no ПНs pakotnes. TБ jau ir instalГta"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-"пo paku ir nepiecieПams uzlabot\n"
+"пo pakotni ir nepiecieПams uzlabot\n"
"Vai tieПБm vГlaties atteikties no tБs?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
-msgstr "JШs nevarat atteikties no ПНs pakas. To ir nepiecieПams uzlabot"
-
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "JШs nevarat atteikties no ПНs pakas. TБ jau ir instalГta"
+msgstr "JШs nevarat atteikties no ПНs pakotnes. To ir nepiecieПams uzlabot"
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "Tiks instalГtas/noРemtas sekojoПas pakas"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "JШs varat izvГlГties/atteikties no ПНs pakas"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "InstalГju"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "AprГМinu"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "LШdzu uzgaidiet, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "AtlikuПais laiks"
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "KopГjais laiks"
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Atsaukt"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Sagatavoju instalГПanu"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
-msgstr "%d pakas"
+msgstr "%d pakotnes"
+
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "InstalГju pakotni %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "PieРemt"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2585,373 +3520,411 @@ msgstr ""
"Nomainiet Cd-Rom!\n"
"\n"
"LШdzu ielieciet iekБrtБ Cd-Rom \"%s\", kad tas ir izdarНts, nospiediet Ok\n"
-"Ja jums nav ПН diska, nospiediet Cancel, lai neinstalГtu no ПН Cd-Rom."
+"Ja jums nav ПН diska, nospiediet Atsaukt, lai neinstalГtu no ПН Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "NoraidНt"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "TomГr turpinБt?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "PakotРu kБrtoПanas laikБ atklБta kОШda:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
-msgstr "Paku instalГПanas laikБ atklБta kОШda:"
+msgstr "PakotРu instalГПanas laikБ atklБta kОШda:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "AtklБta kОШda"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "LШdzu izvГlieties izmantojamo valodu."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr "Licences lНgums"
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "TastatШra"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "LШdzu izvГlieties jШsu tastatШras izkБrtojumu."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "JШs varat izvГlГties citas valodas, kas bШs pieejamas pГc instalГПanas"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Saknes sadaОa"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Viss"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Kura ir jШsu sistГmas saknes sadaОa (/)?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "InstalГПanas klase"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Kuru instalГПanas klasi vГlaties?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "InstalГt/Uzlabot"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
+msgstr "InstalГt/AtjauninБt"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
-msgstr "пН ir instalГПana vai uzlaboПana?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
+msgstr "пН ir instalГПana vai atjauninБПana?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "AutomБtisks"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Ieteicama"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "PielБgota"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Eksperta"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-"Vai esam pБrliecinБts, ka esat eksperts? \n"
-"пeit jШs varГsit veikt bШtiskas, bet bНstamas lietas."
+"Vai esat pБrliecinБts, ka esat eksperts? \n"
+"пeit jШs varГsit veikt bШtiskas, bet bНstamas lietas.\n"
+"\n"
+"Jums tiks uzdoti ПБda rakstura jautБjumi: ``Vai parolГm izmantot shadow?'',\n"
+"vai esat gatavs atbildГt uz ПБdiem jautБjumiem?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "Uzlabot"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr "AtjauninБt"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "NormБls"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Darbastacija"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "IzstrБdei"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Serveris"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "KБds ir jШsu sistГmas pielietojums ?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Kam tiks izmantota jШsu sistГma?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "LШdzu izvГlieties jШsu peles tipu."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Peles ports"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "LШdzu izvГlieties, kuram seriБlajam portam ir pieslГgta pele."
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "KonfigurГju PCMCIA kartes..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "KonfigurГju IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nav pieejamu sadaОu"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "LШdzu izvГlieties sadaОu, ko izmantot kБ saknes sadaОu."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "PБrmeklГju sadaОas, lai atrastu montГПanas punktus"
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "IzvГlieties montГПanas punktus"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"NeizdevБs nolasНt diska sadaОu tabulu, jo tБ bija pБrБk stipri bojБta :(\n"
+"SistГma var mГЛinБt atslГgts sliktБs sadaОas (VISI DATI pazudНs!).\n"
+"Otrs risinБjums ir aizliegt DrakX izmainНt sadaОu tabulu.\n"
+"(kОШda ir %s)\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake neizdevБs pareizi nolasНt sadaОu tabulu.\n"
+"Turpiniet, ja vГlaties riskГt!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Saknes sadaОa"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Kura ir jШsu sistГmas saknes sadaОa (/)?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Lai sadaОu tabulas izmaiРas stБtos spГkБ, jums jБpБrstartГ dators"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "IzvГlieties sadaОas, ko vГlaties formatГt"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "PБrbaudНt sliktos blokus?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "FormatГju sadaОas"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Veidoju un formatГju failu %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "InstalГПanas pabeigПanai nepietiek swap, palieliniet swap"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
-msgstr "MeklГju pieejamБs pakas"
+msgstr "MeklГju pieejamБs pakotnes"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
-msgstr "MeklГju uzlabojamБs pakas"
+msgstr "MeklГju uzlabojamБs pakotnes"
+
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"JШsu sistГmБ vairs nav brНvas vietas instalГПanai vai uzlaboПanai (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Pilna (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "MinimБla (%dMB)"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "JШsu sistГmБ nav pietiekoПi daudz vietas instalГПanai vai uzlaboПanai"
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Ieteicama (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "PielБgota"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "IzvГlieties instalГПanas apjomu"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
-msgstr "Paku grupu izvГle"
+msgstr "PakotРu grupu izvГle"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
-msgstr "AtseviПМu paku izvГle"
+msgstr "AtseviПМu pakotРu izvГle"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
"Ja jums ir visi ПajБ sarakstБ norБdНtie CD, nospiediet Ok.\n"
-"Ja jums nav neviena no norБdНtajiem CD, nospiediet Cancel.\n"
+"Ja jums nav neviena no norБdНtajiem CD, nospiediet Atsaukt.\n"
"Ja trШkst tikai daЧu CD, sarakstБ atslГdziet tos un nospiediet Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ar nosaukumu \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"InstalГju paku %s\n"
+"InstalГju pakotni %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "PГcinstalГПanas konfigurГПana"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "AtstБt esoПo IP konfigurБciju"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "TШlНt pБrkonfigurГt tНklu"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "NeuzstБdНt tНklu"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "TНkla konfigurБcija"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "LokБlais tНkls jau konfigurГts. Vai vГlaties:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Vai vГlaties konfigurГt lokБlo tНklu priekП jШsu sistГmas?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "tНkla karte nav atrasta"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "ModГma konfigurГПana"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"Vai vГlaties konfigurГt iezvanНПanas tНklu un modГmu priekП jШsu sistГmas?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "KonfigurГju tНkla iekБrtu %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"LШdzu ievadiet ПН datora IP konfigurБciju.\n"
-"Visi dati jБievada kБ IP adreses ar punktiem atdalНtu decimБlu\n"
-"skaitОu veidБ (piemГram, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "AutomБtisks IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP adrese:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "TНkla maska:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "IP adreses formБtam jБbШt 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "KonfigurГju tНklu"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"LШdzu ievadiet datora vБrdu.\n"
-"Datora vБrdam ir jБbШt pilnНgi kvalificГtam datora vБrdam,\n"
-"piemГram ``mybox.mylab.myco.com''.\n"
-"JШs varat ievadНt arН vБrtejas IP adresi, ja tБda ir"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS serveris:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "VБrtejas iekБrta:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "VБrteja:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Datora vБrds:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Vai mГЛinБt atrast modГmu?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "LШdzu izvГlieties, kuram seriБlajam portam ir pieslГgts modГms."
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "IezvanНПanБs opcijas"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "PieslГguma nosaukums"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefona numurs"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "LietotБja ID"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AutentifikБcija"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Izmantojot skriptu"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Izmantojot terminБli"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "DomГna vБrds"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Pirmais DNS serveris"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Otrais DNS serveris"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3018,88 +3991,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
-msgstr "IzvГlieties spoguОserveri, no kura Рemt pakas"
+msgstr "IzvГlieties spoguОserveri, no kura Рemt pakotnes"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
-msgstr "PieslГdzos spoguОserverim, lai saРemtu pieejamo paku sarakstu"
+msgstr "PieslГdzos spoguОserverim, lai saРemtu pieejamo pakotРu sarakstu"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
-msgstr "LШdzu izvГlieties pakas, ko vГlaties instalГt"
+msgstr "LШdzu izvГlieties pakotnes, ko vГlaties instalГt"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "KБda ir jШsu laika josla?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Vai datora pulkstenis rБda GMT laiku?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Kuru drukБПanas sistГmu vГlaties izmantot?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Bez paroles"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Izmantot shadow failu"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Izmantot MD5 paroles"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Izmantot NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "dzeltenБs lapas"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "пН parole ir pБrБk vienkБrПa (jБbШt vismaz %d simbolus garai)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "AutentifikБcijas NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS domГns"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "ApstiprinБt lietotБju"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Pievienot lietotБju"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(jau pievienots %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3109,60 +4086,87 @@ msgstr ""
"Ievadiet lietotБju\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "VБrds un uzvБrds"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "LietotБja vБrds"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "хaula"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikona"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "пН parole ir pБrБk vienkБrПa"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "LШdzu ievadiet lietotБja vБrdu"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "LietotБja vБrdБ var bШt tikai mazie angОu burti, cipari, `-' un `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "пБds lietotБja vБrds jau ir pievienots"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"PielБgotБ sБknГПanas diskete piedБvБ veidu, kБ sБknГt jШsu Linux sistГmu\n"
+"neatkarНgi no parastБ sБknГtБja. Tas ir noderНgi, ja jШs nevГlaties savБ\n"
+"sistГmБ uzstБdНt SILO, vai kБda cita operГtБjsistГma izdzГП SILO,\n"
+"vai arН SILO nedarbojas ar jШsu dzelЧu konfigurБciju. PielБgoto\n"
+"sБknГПanas disketi var izmantot arН kopБ ar Mandrake glabПanas attГlu,\n"
+"atvieglojot atjaunoПanu pГc smagiem sistГmas bojБjumiem.\n"
+"\n"
+"Ja vГlaties izveidot jШsu sistГmai pielБgotu sБknГПanas disketi,\n"
+"ielieciet sisketi pirmajБ iekБrtБ un nospiediet \"Ok\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "PirmБ diskeПu iekБrta"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "OtrБ diskeПu iekБrta"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Izlaist"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3183,64 +4187,32 @@ msgstr ""
"atvieglojot atjaunoПanu pГc smagiem sistГmas bojБjumiem. Vai vГlaties\n"
"izveidot jШsu sistГmai pielБgotu sБknГПanas disketi?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "DiemЧГl nav pieejama neviena diskeПu iekБrta"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "NorБdiet diskeПu iekБrtu, ko izmanto distetes veidoПanai"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Ielieciet disketi iekБrtБ %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Gatavoju sБknГПanas disketi"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO instalГПana neizdevБs. AtklБta ПБda kОШda:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Vai vГlaties izmantot SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO galvenБs opcijas"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Ir izveidoti sekojoПi SILO ieraksti.\n"
-"JШs varat pievienot jaunus vai izmainНt esoПos."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "SadaОa"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "пis nosaukums jau ir izmantots"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "SILO instalГПana neizdevБs. AtklБta ПБda kОШda:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Sagatavoju sБknГtБju"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Vai vГlaties izmantot aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3248,136 +4220,127 @@ msgstr ""
"KОШda, instalГjot aboot, \n"
"vai instalГt piespiedu kБrtБ pat tad, ja tiks iznНcinБta pirmБ sadaОa?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy serveru konfigurБcija"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy bШtu jБbШt http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy bШtu jБbШt ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "SБknГtБja instalГПana neizdevБs. AtklБta ПБda kОШda:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Sveiciens hakeriem"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "VБjП"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Zems"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "VidГjs"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Augsts"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoisks"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "DaЧБdi jautБjumi"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(var izraisНt datu bojБjumus)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Izmantot cietБ diska optimizБcijas?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "IzvГlieties droПНbas lНmeni?"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ja nepiecieПams, precizГjiet RAM apjomu (atrasti %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "NomainБmu datu nesГju automontГПana"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "IztНrНt /tmp katras sБknГПanas laikБ"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "AtОaut multi profilus"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "IeslГgt num lock palaiПanas laikБ"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "NorБdiet atmiРas apjomu Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Nevar izmantot supermount augstБ droПНbas lНmenН"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX ЛenerГs konfigurБcijas failus gan priekП XFree 3.3, gan priekП\n"
-"XFree 4.0. NoklusГti tiek izmantots 3.3 serveris, jo tas darbojas ar\n"
-"vairБk grafiskajБm kartГm.\n"
-"\n"
-"Vai vГlaties pamГЛinБt XFree 4.0?"
+"Рemiet vГrБ: PIE пн DROпнBAS LнMEрA ROOT SESIJAS ATVгRпANA NO KONSOLES\n"
+"NAV ATоAUTA! Ja vГlaties bШt root, jums vispirms ir jБatver parasta\n"
+"lietotБja sesija un tad jБizmanto \"su\". VispБrНgi runБjot, neceriet\n"
+"izmantot savu datoru kam citam kБ vien servera uzdevumiem.\n"
+"JШs esat brНdinБts."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Esiet uzmanНgs, numlock ieslГgПana liek daudziem taustiРiem parasto\n"
+"burtu vietБ rБdНt ciparus (piemГram, `p' nospieПana dod `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Vai mГЛinБt atrast PCI ierНces?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Vai izmantot jau esoПo X11 konfigurБciju?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
-msgstr ""
+msgstr "Vai vГlaties izveidot auto instalГПanas disketi linux replikБcijai?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ielieciet tukПu disketi iekБrtБ %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Sagatavoju auto instalГПanas disketi"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"DaЧi soОi vГl nav izpildНti.\n"
-"\n"
-"Vai tieПБm tagad vГlaties iziet?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3389,162 +4352,19 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Apsveicam, instalГПana ir pabeigta.\n"
-"IzРemiet instalГПanas disku un nospiediet ievadu, lai pБrstartГtu.\n"
-"\n"
-"Lai uzzinБtu par kОШdu labojumiem, kas pieejami Пai Linux-Mandrake\n"
-"versijai, paРemiet Errata failu no http://www.linux-mandrake.com/.\n"
-"\n"
-"InformБciju par jШsu sistГmas konfigurГПanu var atrast OficiБlБs\n"
-"Linux-Mandrake LietotБja RokasgrБmatas pГcinstalГПanas jautБjumiem\n"
-"veltНtajБ nodaОБ."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "SistГma tiek aizvГrta"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "InstalГju draiveri %s kartei %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modulis %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Kuru %s draiveri man izmГЛinБt?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"DaЧos gadНjumos %s draiverim ir jБnorБda papildus informБcija, lai tas\n"
-"darbotos pareizi, kaut gan parasti bez tБ var iztikt. Vai jШs vГlaties\n"
-"norБdНt papildus opcijas, vai arН Оausiet draiverim aptaujБt jШsu datoru,\n"
-"lai sameklГtu nepiecieПamo informБciju? DaЧos gadНjumos aptaujБПana var\n"
-"uzkБrt jШsu datoru, bet nekad nevar to sabojБt."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "AutomБtiska aptaujБПana"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "NorБdНt opcijas"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "JШs varat norБdНt opcijas modulim %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Tagad jШs varat norБdНt modulim %s nepiecieПamБs opcijas.\n"
-"Opciju formБts ir ``nosaukums=vГrtНba nosaukums2=vГrtНba2 ...''.\n"
-"PiemГram, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "ModuОa opcijas:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"ModuОa %s ielБde neizdevБs.\n"
-"Vai vГlaties mГЛinБt vГlreiz ar citiem parametriem?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Vai mГЛinБt atrast PCMCIA kartes?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "KonfigurГju PCMCIA kartes..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Vai mГЛinБt atrast %s ierНces?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Atradu %s %s interfeisus"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Vai datorБ ir vГl kБds?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Vai datorБ ir kБds %s interfeiss?"
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "NГ"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "JБ"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "ApskatНt dzelЧu informБciju"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "PieslГdzu tНklu"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "AtslГdzu tНklu"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake instalГПana %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr " <Tab>/<Alt-Tab> pБriet | <Space> izvГlГties | <F12> uz nБkamo ekrБnu"
-
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
msgstr ""
-"Tagad jШs varat sadalНt diska iekБrtu %s\n"
-"Kad esat pabeiguПi, neaizmirstiet saglabБt, izmantojot `w'"
+" <Tab>/<Alt-Tab> pБriet | <Space> izvГlГties | <F12> uz nБkamo ekrБnu"
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "LШdzu uzgaidiet"
@@ -3554,7 +4374,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "NenoteiktНba (%s), esiet precНzБks\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Slikta izvГle, pamГЛiniet vГlreiz\n"
@@ -3568,451 +4388,940 @@ msgstr " ? (noklusГti %s) "
msgid "Your choice? (default %s) "
msgstr "JШsu izvГle? (noklusГti %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "JШsu izvГle? (noklusГti %s ievadiet `none', ja nav) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "хehijas"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "VБcijas"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvoraka"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "SpБnijas"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Somijas"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Francijas"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "NorvГЛijas"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polijas"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Krievijas"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "ApvienotБs Karalistes"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "ASV tastatШra"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "ArmГnijas (vecБ)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "ArmГnijas (rakstБmmaПНna)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "ArmГnijas (fonГtiskБ)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "AzerbaidЧБnas (latНРu)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "AzerbaidЧБnas (kirilica)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "BeОЛijas"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BulgБrijas"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "BrazНlijas (ABNT-2)"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "BulgБrijas"
+msgstr "Baltkrievijas"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "пveices (vБcu izvietojums)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "пveices (franХu izvietojums)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "VБcijas (bez mГmajiem taustiРiem)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DБnijas"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvoraka (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvoraka (NorvГЛijas)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Igaunijas"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijas (\"krievu\" izvietojums)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijas (\"latНРu\" izvietojums)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "GrieМijas"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "UngБrijas"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "HorvБtijas"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "IzraГlas"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "IzraГlas (fonГtiskБ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IrБnas"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandes"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "ItБlijas"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "JapБnas 106 taistiРi"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "LatНРamerikas"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "DБnijas"
-#: ../../keyboard.pm_.c:140
-#, fuzzy
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
-msgstr "Lietuvas AZERTY"
+msgstr "Lietuvas AZERTY (vecБ)"
-#: ../../keyboard.pm_.c:142
-#, fuzzy
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
-msgstr "Lietuvas AZERTY"
+msgstr "Lietuvas AZERTY (jaunБ)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuvas \"numuru rinda\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuvas \"fonГtiskБ\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polijas (qwerty izvietojums)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polijas (qwertz izvietojums)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortugБles"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "KanБdas (Kvebeka)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Krievijas (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Zviedrijas"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "SlovГnijas"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "SlovБkijas"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Tai tastatШra"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turcijas (tradicionБlais \"F\" modelis)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turcijas (modernais \"Q\" modelis)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrainas"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "ASV tastatШra (starptautiskБ)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vjetnamas \"numuru rinda\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "DienvidslБvijas (latНРu izvietojums)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - pele"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Standarta"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "VispБrГja"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Ritenis"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seriБla"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Parasta 2 pogu pele"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Parasta 3 pogu pele"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (seriБla, vecs C7 tips)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "busmouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 pogas"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 pogas"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "neviens"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Nav peles"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "TБlБk ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Vai tas ir pareizi?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Interneta konfigurБcija"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Vai vГlaties mГЛinБt pieslГgties internetam tШlНt?"
+
+#: ../../netconnect.pm_.c:101
+msgid "Testing your connection..."
+msgstr "IzmГЛinu pieslГgumu..."
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "PaПlaik jШs neesat pieslГdzies Internetam."
+
+#: ../../netconnect.pm_.c:107
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
+"пМiet, ja jШsu sistГmu nav pieslГgta Internetam.\n"
+"MГЛiniet pБrkonfigurГt pieslГgumu."
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN konfigurБcija"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"IzvГlieties pakalpojumu sniedzГju.\n"
+" Ja tas nav ПajБ sarakstБ, izvГlietis Nav sarakstБ"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Savienojuma konfigurГПana"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "LШdzu aizpieldiet vai izvГlietis lauku"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "Kartes IRQ"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Kartes mem (DMA)"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "Kartes IO"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "Kartes IO_0"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "Kartes IO_1"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "JШsu privБtais telefona numurs"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Pakalpojumu sniedzГja nosaukums (piem., provider.net)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Pakalpojumu sniedzГja telefona numurs"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "Pakalpojumu sniedzГja dns 1"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "Pakalpojumu sniedzГja dns 2"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "ZvanНПanas reЧНms"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Konta nosaukums (lietotБja vБrds)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Konta parole"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "ApstiprinБt paroli"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Eiropa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Eiropa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Citur pasaulГ"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Citur pasaulГ - nav D-Channel (izdalНtas lНnijas)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "KБdu protokolu vГlaties izmantot?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Nezinu"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "KБds ir jШsu kartes tips?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "TurpinБt"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "PБrtraukt"
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"Juus sveic LILO, opereetaajsisteemu izveeles programma!\n"
"\n"
-"Lai redzeetu visas iespeejamaas izveeles, nospiediet <TAB>.\n"
+"Ja jums ir ISA karte, vГrtНbБm nБkamajБ ekrБnБ jБbШt pareizБm.\n"
"\n"
-"Lai ielaadeetu vienu no taam, ierakstiet nosaukumu un nospiediet <ENTER> vai "
-"gaidiet %d sekundes, liidz saaksies nokluseetaa ielaade.\n"
+"Ja jums ir PCMCIA karte, jums ir jБzina kartes irq un io.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Kura ir jШsu ISDN karte ?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Ir atrasta ISDN karte:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Ir atklБta ISDN PCI karte, bet nav zinБms kartes tips. LШdzu izvГlieties "
+"kБdu no nБkamajБ ekrБnБ uzskaitНtajБm PCI kartГm."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Nav atrasta neviena ISDN PCI karte. LШdzu izvГlieties kБdu no saraksta."
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"JШsu sistГmБ nav atrasts neviens ethernet tНkla adapteris.\n"
+"Nevaru uzstБdНt Пo pieslГguma veidu."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "IzvГlieties tНkla interfeisu"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"LШdzu norБdiet, kuru tНkla adapteri vГlaties izmantot Interneta pieslГgumam."
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "TНkla interfeiss"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
+#: ../../netconnect.pm_.c:352
+msgid "I'm about to restart the network device:\n"
+msgstr "Gatavojos pБrstartГt tНkla ierНci:\n"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Izmantojiet taustiРus %c un %c, lai izvГlГtos vajadzНgo ierakstu."
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL konfigurБcija"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Nospiediet ievadu, lai sБknГtu izvГlГto OS, 'e', lai rediЛГtu"
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Vai vГlaties startГt pieslГgumu palaiПanas laikБ?"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "komandas pirms sБknГПanas, vai 'c', lai izsauktu komandrindu."
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "MГЛinБt atrast modГmu?"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "IzdalНtais ieraksts tiks sБknГts pГc %d sekundГm."
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "LШdzu norБdiet, kuram seriБlajam portam ir pieslГgts modГms."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Iezvanpieejas opcijas"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Savienojuma nosaukums"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefona numurs"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "LietotБja ID"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AutentifikБcija"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Ar skriptu"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Izmantojot terminБli"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "DomГna nosaukums"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Pirmais DNS serveris"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Otrais DNS serveris"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Varat pieslГgties Internetam vai pБrkonfigurГts pieslГgumu."
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Darba virsma"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"Varat pБrkonfigurГt pieslГgumu."
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start Menu"
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "PaПlaik jШs neesat pieslГdzies Internetam."
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - pele"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Varat atslГgties vai pБrkonfigurГt pieslГgumu."
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB pele"
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "PaПlaik jШs esat pieslГdzies Internetam."
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB pele (2 pogas)"
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "PieslГgties Internetam"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB pele (3+ pogas)"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "AtslГgties no Interneta"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB pele"
+#: ../../netconnect.pm_.c:594
+msgid "Configure network connection (LAN or Internet)"
+msgstr "KonfigurГt tНkla pieslГgumu (LAN vai Interneta)"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB pele (2 pogas)"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Interneta pieslГgums un konfigurБcija"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB pele (3+ pogas)"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Gatavojos pБrstartГt tНkla ierНci $netc->{NET_DEVICE}. Vai piekrНtat?"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Parasta pele (PS/2)"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
+msgstr "KonfigurГt parasta modГma pieslГgumu"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
+msgstr "KonfigurГt ISDN pieslГgumu"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Parasta 3 pogu pele (PS/2)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "IekПГja ISDN karte"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "бrГjs ISDN modГms"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "PieslГgties Internetam"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "KБds ir jШsu ISDN pieslГguma veids?"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "KonfigurГt DSL (vai ADSL) pieslГgumu"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Francija"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Citas valstis"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "KurБ valstН jШs atrodaties ?"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modГms"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus pele"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modГms"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus pele"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Ja jums ir Alcatel adsl modГms, izvГlieties Alcate. CitБdi - ECI."
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus pele"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "izmantot pppoe"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB pele"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "neizmantot pppoe"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB pele (3 vai vairБkas pogas)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"ParastБkais veids, kБ pieslГgties ar adsl, ir dhcp + pppoe.\n"
+"TomГr daЧi pieslГgumi izmanto tikai dhcp.\n"
+"Ja jШs nezinat, izvГlieties 'izmantot pppoe'"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Nav peles"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
+msgstr "KonfigurГt kabeОa pieslГgumu"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A vai jaunБka (seriБla)"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Kuru dhcp klientu vГlaties izmantot?\n"
+"NoklusГti ir dhcpd"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (seriБla)"
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "AtslГgt Interneta pieslГgumu"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seriБla)"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "KonfigurГt lokБlo tНklu"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seriБla)"
+#: ../../netconnect.pm_.c:815
+msgid "Network configuration"
+msgstr "TНkla konfigurБcija"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seriБla)"
+#: ../../netconnect.pm_.c:816
+msgid "Do you want to restart the network"
+msgstr "Vai vГlaties pБrstartГt tНklu"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seriБla)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "AtslГgt tНklu"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (seriБla)"
+#: ../../netconnect.pm_.c:834
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "KonfigurГt Interneta pieslГgumu / KonfigurГt lokБlo tНklu"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seriБla)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"LokБlais tНkls jau ir konfigurГts.\n"
+"Vai jШs vГlaties:"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (seriБla, vecs C7 tips)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "KБ jШs vГlaties pieslГgties Internetam?"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seriБla)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "TНkla konfigurБcija"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Parasta pele (seriБla)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Tagad, kad ir konfigurГts jШsu Interneta pieslГgums,\n"
+"datoru var konfigurГt tБ, lai kopНgi izmantotu Interneta pieslГgumu.\n"
+"PiezНme: jums ir nepiecieПams atseviПМs tНkla adapteris, lai uzstБdНti "
+"lokБlo datortНklu (LAN).\n"
+"\n"
+"Vai vГlaties uzstБdНt Interneta pieslГguma koplietoПanu?\n"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft savietojama (seriБla)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "tНkla karte nav atrasta"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Parasta 3 pogu pele (seriБla)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "KonfigurГju tНklu"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seriБla)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"LШdzu ievadiet jШsu resursa vБrdu, ja to zinat.\n"
+"DaЧu DHCP serveru darbНbai ir nepiecieПams resursa vБrds.\n"
+"Resursa vБrdam ir jБbШt pilnam kvalificГtam resursa vБrdam,\n"
+"piemГram, ``mybox.mylab.myco.com''."
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Vai tas ir pareizi?"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Resursa vБrds:"
-#: ../../partition_table.pm_.c:527
-msgid "Extended partition not supported on this platform"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"BRнDINбJUMS: пН ierНce agrБk bija konfigurГta, lai pieslГgtos Internetam.\n"
+"VienkБrПi nospiediet Ok, ja vГlaties atstБt ierНces konfigurБciju.\n"
+"TБlБko lauku izmainНПana pБrrakstНs Пo konfigurБciju."
+
+#: ../../network.pm_.c:302
+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 ""
+"LШdzu ievadiet ПН datora IP konfigurБciju.\n"
+"Visi dati jБievada kБ IP adreses ar punktiem atdalНtu decimБlu\n"
+"skaitОu veidБ (piemГram, 1.2.3.4)."
+
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "KonfigurГju tНkla iekБrtu %s"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "AutomБtisks IP"
+
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP adrese"
+
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "TНkla maska"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "IP adreses formБtam jБbШt 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"LШdzu ievadiet resursa vБrdu.\n"
+"Resursa vБrdam ir jБbШt pilnam kvalificГtam resursa vБrdam,\n"
+"piemГram, ``mybox.mylab.myco.com''.\n"
+"JШs varat ievadНt arН vБrtejas IP adresi, ja tБda ir"
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS serveris"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "VБrteja"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "VБrtejas ierНce"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Proxy serveru konfigurБcija"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
-#: ../../partition_table.pm_.c:545
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy bШtu jБbШt http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy bШtu jБbШt ftp://..."
+
+#: ../../partition_table.pm_.c:540
+msgid "Extended partition not supported on this platform"
+msgstr "пai platformai paplaПinБtБ sadaОa nav pieejama"
+
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4022,21 +5331,21 @@ msgstr ""
"VienНgais risinБjums ir pБrvietot primБras sadaОas tБ, lai caurums atrastos "
"blakus paplaПinБtajБm sadaОБm"
-#: ../../partition_table.pm_.c:634
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "KОШda, nolasot failu %s"
-#: ../../partition_table.pm_.c:641
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "AtjaunoПana no faila %s neizdevБs: %s"
-#: ../../partition_table.pm_.c:643
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Slikts rezerves kopijas fails"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "KОШda, ierakstot failБ %s"
@@ -4070,42 +5379,51 @@ msgstr "interesanta"
msgid "maybe"
msgstr "varbШt"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (svarНga)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (Оoti derНga)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (derНga)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "RБdНt mazБk"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "RБdНt vairБk"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "LokБls printeris"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "AttБls lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "AttБls printeris"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "AttБls CUPS serveris"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "AttБls lpd serveris"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "TНkla printeris (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Printera ierНces URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Noskaidroju ierНces..."
@@ -4119,11 +5437,11 @@ msgstr "PБrbaudНt portus"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Printeris, modelis \"%s\", atrasts pie "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "LokБlБ printera ierНce"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4131,37 +5449,37 @@ msgstr ""
"Kurai ierНcei ir pieslГgts printeris\n"
"(atcerieties, ka /dev/lp0 atbilst LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Printera ierНce"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "AttБla lpd printera opcijas"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
"Lai izmantotu attБlu lpd drukas rindu, jums jБnorБda\n"
-"printera servera vБrds un tБs servera rindas nosaukums,\n"
-"kurai jБadresГ drukas uzdevumi."
+"printera servera resursa vБrds un tБs servera rindas\n"
+"nosaukums, kurai jБadresГ drukas uzdevumi."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
-msgstr "AttБlБ datora vБrds"
+msgstr "AttБlБ resursa vБrds"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "AttБlБ rinda"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printera opcijas"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4169,33 +5487,33 @@ msgid ""
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
-"Lai drukБtu ar SMB printeri, jums jБnorБda SMB servera vБrds\n"
+"Lai drukБtu ar SMB printeri, jums jБnorБda SMB resursa vБrds\n"
"(PiezНme! Tas var atПМirties no datora TCP/IP vБrda!)\n"
"un, iespГjams, ПН servera IP adrese, kБ arН jШs interesГjoПБ printera\n"
"koplietojuma vБrds un atbilstoПs lietotБja vБrds, parole un\n"
"darba grupas informБcija."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
-msgstr "SMB servera vБrds"
+msgstr "SMB servera resurss"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB servera IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Koplietojuma vБrds"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Darba grupa"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare printera opcijas"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4204,134 +5522,158 @@ msgid ""
msgstr ""
"Lai drukБtu ar NetWare printeri, jums jБnorБda NetWare\n"
"printera servera vБrds (PiezНme! tas var atПМirties no servera\n"
-"TCP/IP vБrda!), kБ arН jШsu izvГlГtБ printera rindas nosaukums un\n"
-"jebkurП atbilstoПs lietotБja vБrds un parole."
+"TCP/IP resursa vБrda!), kБ arН jШsu izvГlГtБ printera rindas\n"
+"nosaukums un jebkurП atbilstoПs lietotБja vБrds un parole."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Printera serveris"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Printera rindas nosaukums"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Socket printera opcijas"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Lai drukБtu ar socket printeri, jums ir jБnorБda printera\n"
+"resursa vБrds tНklБ un papildus arН porta numurs."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Printera resursa vБrds"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Ports"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "JШs varat tieПi norБdНt URI, lai piekОШtu printerim ar CUPS."
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "KБds ir jШsu printera tips?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Vai vГlaties izmГЛinБt printeri?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Tiek drukБta(s) izmГЛinБjuma lapa(s)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"IzmГЛinБjuma lapa(s) ir nosШtНta(s) printera demonam.\n"
+"This may take a little time before printer start.\n"
+"Var paiet zinБms laiks, pirms printeris sБk drukБt.\n"
+"Izdrukas stБvoklis:\n"
+"%s\n"
+"\n"
+"Vai tas darbojas pareizi?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"IzmГЛinБjuma lapa(s) ir nosШtНta(s) printera demonam.\n"
+"Var paiet zinБms laiks, pirms printeris sБk drukБt.\n"
+"Vai tas darbojas pareizi?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "JБ, izdrukБt ASCII izmГЛinБjuma lapu"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "JБ, izdrukБt PostScript izmГЛinБjuma lapu"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "JБ, izdrukБt abas izmГЛinБjuma lapas"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "KonfigurГt printeri"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "KБds ir jШsu printera tips?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Printera opcijas"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "PapНra izmГrs"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Vai izmest lapu pГc izdrukas?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint draivera opcijas"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "KrБsu dziОuma opcijas"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "DrukБt tekstu kБ PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "AХgБrna lappuПu secНba"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Vai labot teksta kБpРveida izdruku?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "LappuПu skaits vienБ izdrukas lapБ"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "LabБ/KreisБ mala punktos (1/72 collas daОБs)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "AugПГjБ/ApakПГjБ mala punktos (1/72 collas daОБs)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Papildus GhostScript opcijas"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Papildus teksta opcijas"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Vai vГlaties izmГЛinБt printeri?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Tiek drukБta(s) izmГЛinБjuma lapa(s)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"IzmГЛinБjuma lapa(s) ir nosШtНta(s) printera demonam.\n"
-"This may take a little time before printer start.\n"
-"Var paiet zinБms laiks, pirms printeris sБk drukБt.\n"
-"Izdrukas stБvoklis:\n"
-"%s\n"
-"\n"
-"Vai tas darbojas pareizi?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"IzmГЛinБjuma lapa(s) ir nosШtНta(s) printera demonam.\n"
-"Var paiet zinБms laiks, pirms printeris sБk drukБt.\n"
-"Vai tas darbojas pareizi?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printeris"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Vai vГlaties konfigurГt printeri?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4339,19 +5681,66 @@ msgstr ""
"EksistГ sekojoПas drukas rindas.\n"
"JШs varat pievienot jaunass vai izmainНt esoПБs."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "CUPS startГПana"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "Nolasu CUPS draiveru datubБzi..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "IzvГlieties printera pieslГgumu"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "KБ Пis printeris ir pieslГgts?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "IzvГlieties attБla printera pieslГgumu"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Izmantojot attБlu CUPS serveri, Пeit jums nav nepiecieПams\n"
+"konfigurГt printeri; printeri tiks atrasti automБtiski.\n"
+"Ja jШs Пaubaties, izvГlieties \"AttБls CUPS serveris\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "IzdzГst rindu"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Katram printerim ir nepiecieПams nosaukums (piemГram, lp).\n"
+"Var norБdНt arН citus parametrus, piemГram, printera aprakstu vai tБ\n"
+"atraПanБs vietu. KБdu nosaukumu pieПМirt Пim printerim, un kБdБ veidБ\n"
+"printeris ir pieslГgts?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Printera nosaukums"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Apraksts"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "AtraПanБs vieta"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4363,55 +5752,53 @@ msgstr ""
"nosaukums (bieЧi lp) un tai piesaistНts spolГПanas katalogs. KБdu nosaukumu\n"
"un katalogu izmantot Пai rindai un kБ ir pieslГgts printeris?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Rindas nosaukums"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "SpolГПanas katalogs"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Printera pieslГgums"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nevar pievienot sadaОu _formatГtam_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Neizdodas ierakstНt failu $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid neizdevБs"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neizdevБs (varbШt nav uzstБdНti raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nepietiek diska sadaОu RAID lНmenim %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron ir periodisku komandu plБnotБjs."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"apmd tiek izmantots baterijas stБvokОa novГrtГПanai un grБmatoПanai,\n"
-"izmantojor syslog.\n"
-" To var arН izmanto datora aizvГrПanai, kad\n"
-"baterija ir izlБdГta."
+"apmd paredzГts baterijas stБvokОa novГroПanai un grБmatoПanai ar syslog.\n"
+"To var izmantot arН datora izslГgПanai, kad baterija ir izlБdГta."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4420,7 +5807,7 @@ msgstr ""
"kБ arН palaiЧ komadu paketes, kad vidГjБ sistГmas noslodze ir pietiekoПi\n"
"zema."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4432,7 +5819,7 @@ msgstr ""
"iespГju salНdzinot ar UNIX cron, tajБ skaitБ arН labБku droПНbu un daudz\n"
"izvГrtstБkas konfigurГПanas iespГjas."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4444,7 +5831,7 @@ msgstr ""
"izgriezt-un-iespraust operБcijas, kБ arН piedБvБ izlecoПo izvГlРu\n"
"atbalstu konsolei."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4452,7 +5839,7 @@ msgstr ""
"Apache ir Vispasaules tНmekОa (WWW) serveris. Tas tiek izmantots HTML\n"
"failu un CGI izplatНПanai."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4466,17 +5853,17 @@ msgstr ""
"startГПanu, tajБ skaitБ telnet, ftp, rsh un rlogin. inetd atslГgПana\n"
"atslГdz arН visus servisus, par kuriem tas atbild."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-"пН paka ielБdГ izvГlГto tastatШras karti, kas norБdНta failБ\n"
+"пН pakotne ielБdГ izvГlГto tastatШras karti, kas norБdНta failБ\n"
"/etc/sysconfig/keyboard. To var izvГlГties, izmantojot programmu kbdconfig.\n"
-"VairumБ gadНjumu Пo paku ir jБatstБj izvГlГtu."
+"VairumБ gadНjumu Пo pakotni ir jБatstБj izvГlГtu."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4484,15 +5871,15 @@ msgstr ""
"lpd ir drukas demons, kas ir nepiecieПams lpr pareizai darbНbai. Tas ir\n"
"serveris, kas nosШta drukas uzdevumus printeri(e)m."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-"named (BIND) ir domГnu vБrdu serveris (DNS), kas tiek izmantots datoru\n"
+"named (BIND) ir domГnu vБrdu serveris (DNS), kas tiek izmantots resursu\n"
"vБrdiem atbilstoПo IP adreПu noskaidroПanai."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4500,7 +5887,7 @@ msgstr ""
"Mounts un unmounts ir TНkla Failu sistГmas (NFS), SMB (Lan\n"
"Manager/Windows) un NCP (NetWare) montГПanas punkti."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4508,7 +5895,7 @@ msgstr ""
"AktivizГ/DeaktivizГ visus tНkla interfeisus, kas ir konfigurГti\n"
"startГПanai sistГmas sБknГПanas laikБ."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4518,7 +5905,7 @@ msgstr ""
"пis serviss nodroПina NFS servera funkcionalitБti, un to var konfigurГt\n"
"ar faila /etc/exports palНdzНbu."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4526,7 +5913,7 @@ msgstr ""
"NFS ir populБrs protokols failu koplietoПanai TCP/IP tНklos.\n"
"пis serviss nodroПina NFS failu aizslГgПanas funkcionalitБti."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4537,7 +5924,7 @@ msgstr ""
"uzturГПanai pБrnГsБjamos datoros. Tas netiks startГts, ja nav konfigurГts,\n"
"tБpГc ir droПi to instalГt datoros, kam tas nav nepiecieПams."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4548,7 +5935,7 @@ msgstr ""
"piemГram, NFS un NIS. portmap serveri ir jБizmanto datoros, kas\n"
"darbojas kБ RPC protokolus izmantojoПu protokolu serveri."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4556,7 +5943,7 @@ msgstr ""
"Postfix ir Pasta Transporta AЛents, un tБ ir programma, kas pБrvieto\n"
"pastu no viena datora uz citu."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4564,7 +5951,7 @@ msgstr ""
"SaglabБ un atjauno sistГmas entropijas krБtuvi, lai ЛenerГtu\n"
"kvalitatНvБkus gadНjumskaitОus."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4575,7 +5962,7 @@ msgstr ""
"tНklos, sareЧЛНtБkiem tНkliem ir nepiecieПami sareЧЛНtБki marПrutizГПanas\n"
"protokoli."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4583,23 +5970,23 @@ msgstr ""
"rstat protokols Оauj tНkla lietotБjiem saРemt veiktspГjas\n"
"informБciju par jebkuru ПН tНkla datoru."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-"rusers protokols Оauj tНkla lietotБjiem noteik, kuri lietotБji ir\n"
-"iereЛistrГjies citos atbilstoПos datoros."
+"Protokols rusers tНkla lietotБjiem Оauj noskaidrot, kuru lietotБju\n"
+"sesijas ir atvГrtas citos atbildoПajos datoros."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"rwho protokols Оauj attБliem lietotБjiem saРemt visu iereЛistrГto\n"
-"lietotБju sarakstu, ja Пis dators izmanto rwho demonu (lНdzНgu finger)."
+"Protokols rwho attБliem lietotБjiem Оauj saРemt visu atvГrto lietotБju\n"
+"sesiju sarakstu no datora, kurБ darbojas rwho demons (lНdzНgi finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4607,59 +5994,222 @@ msgstr ""
"Syslog ir mehБnisms, ko daudzi demoni izmanto ziРojumu grБmatoПanai\n"
"daudzos sistГmas ЧurnБlu failos. Ir gudra doma vienmГr darbinБt syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "пis startГПanas skripts mГЛina ielБdГt moduОus jШsu usb pelei."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "StartГ un aptura X Fontu Serveri sБknГПanas un aizvГrПanas laikБ."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "IzvГlГties, kurus servisus vajag automБtiski startГt ielБdes laikБ"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Jus sveicina SILO, operetajsistemu parsledzejs!\n"
-"\n"
-"Lai redzetu visas iespejamas izveles, nospiediet <TAB>.\n"
-"\n"
-"Lai ieladetu vienu no tam, ierakstiet nosaukumu un nospiediet <ENTER> vai "
-"gaidiet %d sekundes, lidz saksies nokluseta ielade.\n"
-"\n"
+"Man neizdodas nolasНt sadaОu tabulu, priekП manis tБ ir pБrБk bojБta :(\n"
+"Es mГЛinБПu turpinБt, atslГdzot sliktБs sadaОas"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "LILO/GRUB konfigurГПana"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "SБknГПanas disketes radНПana"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Disketes formatГПana"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "IzvГle"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO instalГПana neizdevБs. AtklБta ПБda kОШda:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Interneta pieslГguma koplietoПana paПlaik ir ieslГgta"
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Interneta pieslГguma koplietoПana jau ir uzstБdНta.\n"
+"PaПlaik tБ ir ieslГgta.\n"
+"\n"
+"Ko jШs vГlaties darНt?"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr "atslГgt"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+msgid "reconfigure"
+msgstr "pБrkonfigurГt"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Interneta pieslГguma koplietoПana paПlaik ir atslГgta"
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Interneta pieslГguma koplietoПana jau ir uzstБdНta.\n"
+"PaПlaik tБ ir atslГgta.\n"
+"\n"
+"Ko jШs vГlaties darНt?"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr "ieslГgt"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "KonfigurБcijas faila saturu neizdodas saprast."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Interneta pieslГguma koplietoПana"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Tagad, kad ir konfigurГts jШsu Interneta pieslГgums,\n"
+"datoru var konfigurГt tБ, lai kopНgi izmantotu Interneta pieslГgumu.\n"
+"PiezНme: jums ir nepiecieПams atseviПМs tНkla adapteris, lai uzstБdНti "
+"lokБlo datortНklu (LAN).\n"
+"\n"
+"Vai vГlaties uzstБdНt Interneta pieslГguma koplietoПanu?\n"
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr "izmantojot moduli"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "JШsu sistГmБ nav tНkla adaptera!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"JШsu sistГmБ nav atrasts neviens ethernet tНkla adapteris. LШdzu izmantojiet "
+"aparatШras konfigurГПanas rНku."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"JШsu sistГmБ ir tikai viens konfigurГts tНkla adapteris:\n"
+"\n"
+"$interface\n"
+"\n"
+"Vai vГlaties uzstБdНt jШsu lokБlo datortНklu ar Пo adapteri?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"LШdzu izvГlieties, kurП tНkla adapteris bШs pieslГgts jШsu lokБlajam "
+"datortНklam."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"BrНdinБjums, tНkla adapteris jau ir konfigurГts.\n"
+"Vai vГlaties to konfigurГt atkБrtoti?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr "PotenciБls LAN adreПu konflikts atklБts ПajБ $_! konfigurБcijБ!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "AtklБta ugunsmШra konfigurБcija!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"BrНdinБjums! Ir atklБta eksistГjoПa ugunsmШra konfigurБcija. PГc "
+"instalГПanas jums varbШt vajadzГs patstБvНgi pielabot konfigurБciju. "
+"TurpinБt?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Tiek konfigurГti skripti, instalГtas programmas, startГti serveri..."
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring..."
+msgstr "KonfigurГju..."
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Nevar instalГt ipchains RPM ar urpmi."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Nevar instalГt dhcp RPM ar urpmi."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Nevar instalГt linuxconf RPM ar urpmi."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Nevar instalГt bind RPM ar urpmi."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Nevar instalГt caching-nameserver RPM ar urpmi."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Apsveicam!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4721,23 +6271,31 @@ msgstr "UzstБdu droПНbas lНmeni"
msgid "Choose the tool you want to use"
msgstr "IzvГlities izmantojamo rНku"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "KБds ir jШsu tastatШras izkБrtojums?"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "NomainНt Cd-Rom"
+
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"LШdzu ielieciet instalБcijas Cd-Rom un nospiediet Ok, kad tas izdarНts.\n"
+"Ja jums nav ПН diska, nospiediet Atsaukt, lai neuzsБktu uzlaboПanu no tНkla."
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "KБds ir jШsu peles tips?"
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Neizdodas uzsБkt uzlaboПanu no tНkla !!!\n"
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "nav atrasta seriБla_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Vai emulГt treПo pogu?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Kuram seriБlajam portam ir pieslГgta pele?"
@@ -4757,7 +6315,7 @@ msgstr "MeklГt"
#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
-msgstr "Paka"
+msgstr "Pakotne"
#: ../../standalone/rpmdrake_.c:51
msgid "Text"
@@ -4781,11 +6339,11 @@ msgstr "SkatНt"
#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
-msgstr "InstalГtБs pakas"
+msgstr "InstalГtБs pakotnes"
#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
-msgstr "PieejamБs pakas"
+msgstr "PieejamБs pakotnes"
#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
@@ -4805,7 +6363,7 @@ msgstr "KonfigurБcija"
#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr "Pievienot paku atraПanБs vietu"
+msgstr "Pievienot pakotРu atraПanБs vietu"
#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
@@ -4817,15 +6375,15 @@ msgstr "IzdzГst"
#: ../../standalone/rpmdrake_.c:100
msgid "Configuration: Add Location"
-msgstr "KonfigurБciju: pievienot vietu"
+msgstr "KonfigurБcija: pievienot vietu"
#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
-msgstr "SameklГt paku"
+msgstr "SameklГt pakotni"
#: ../../standalone/rpmdrake_.c:104
msgid "Find Package containing file"
-msgstr "SameklГt paku, kurБ ir fails"
+msgstr "SameklГt pakotni, kurБ ir fails"
#: ../../standalone/rpmdrake_.c:105
msgid "Toggle between Installed and Available"
@@ -4841,7 +6399,7 @@ msgstr "NoinstalГt"
#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
-msgstr "IzvГlieties instalГjamo paku"
+msgstr "IzvГlieties instalГjamo pakotni"
#: ../../standalone/rpmdrake_.c:190
msgid "Checking dependencies"
@@ -4853,7 +6411,7 @@ msgstr "Gaidiet"
#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
-msgstr "Tiks noinstalГtas sekojoПas pakas"
+msgstr "Tiks noinstalГtas sekojoПas pakotnes"
#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
@@ -4865,7 +6423,7 @@ msgstr "Regexp"
#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
-msgstr "Kuru paku meklГjat"
+msgstr "Kuru pakotni meklГjat"
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
@@ -4950,15 +6508,168 @@ msgstr "MeklГju lapas"
msgid "Finding leaves takes some time"
msgstr "Lapu sameklГПana aizРem zinБmu laiku"
-#~ msgid "useless"
-#~ msgstr "nederНga"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr "RНki CD disku radНПanai un ierakstНПanai"
+
+#
+msgid "Internet Tools"
+msgstr "Interneta rНki"
+
+#
+msgid "Internet"
+msgstr "Internets"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr "PersonНgБs finanses"
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm u.c."
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr "GrafiskБs programmas, piemГram, The Gimp"
+
+msgid "Office"
+msgstr "Birojs"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr "DatubБzu klienti un serveri (mysql un postgresql)"
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "RНki darbam ar jШsu Palm Pilot vai Visor"
+
+#
+msgid "Multimedia - Graphics"
+msgstr "MultimГdija - Grafika"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr "Video atskaРotБji un redaktori"
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Audio rНki: mp3 un midi atskaРotБji, mikПeri u.c."
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "GrБmatas un Howto faili par Linux un BrНvo programmatШru"
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm u.c."
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "RНku komplets pastam, jaunumiem, tНmeklim, failu saРГmПanai un Хatam"
+
+#
+msgid "Multimedia - Video"
+msgstr "MultimГdija - Video"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr "SkaРas un video atskaРoПanas/rediЛГПanas programmas"
+
+msgid "Multimedia"
+msgstr "MultimГdija"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#
+msgid "Multimedia - Sound"
+msgstr "MultimГdija - SkaРa"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "DokumentБcija"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programmas jШsu finanПu pБrvaldНПanai, piemГram, gnucach"
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr "Grafikas apstrБde"
+
+#
+msgid "Games"
+msgstr "SpГles"
+
+#
+msgid "Multimedia - CD Burning"
+msgstr "MultimГdija - CD ierakstНПana"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr "KomunikБciju rНki"
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr "DatubБzes"
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "IzvГlietis apjomu, ko vГlaties instalГt"
-#~ msgid "garbage"
-#~ msgstr "atkritumi"
+#~ msgid "Total size: "
+#~ msgstr "KopГjais apjoms: "
#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under Linux."
+#~ "The system is now connected to Internet! Congratulation.\n"
+#~ "Feel free to launch draknet at any time to setup your connection.\n"
#~ msgstr ""
-#~ "JШsu datorБ ir atrasti daЧi windows true type fonti. Vai vГlaties tos\n"
-#~ "izmantot? PБrliecinieties, vai jums ir tiesНbas tos izmantot Linux vidГ."
+#~ "SistГma paПlaik ir pieslГgta Internetam! Apsveicam.\n"
+#~ "JШs varat palaist draknet jebkurБ laikБ, lai konfigurГtu pieslГgumu.\n"
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index c9881c174..428152038 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -2,55 +2,116 @@
# Copyright (C) 1999-2000 Mandrakesoft
# Jo <rainbow@linuxfan.com>, 1999
# Tom Laermans <sidewinder@linuxfreak.com>, 2000
+# Niels Gras <niels.gras@wanadoo.nl>, 2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-08-25 11:07+0200\n"
-"Last-Translator: Tom Laermans <sidewinder@linuxfreak.com>\n"
+"Last-Translator: Niels Gras <niels.gras@wanadoo.nl>\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Algemeen"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Grafische kaart"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Selecteer een grafische kaart"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Selecteer een X-server"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X-Server"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Welke configuratie van XFree wilt u hebben?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Uw kaart kan 3D acceleratie ondersteuning krijgen, maar alleen met XFree "
+"%s.\n"
+"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
+"kunnen hebben in 2D."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D hardware acceleratie"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Uw kaart kan 3D hardware acceleratie ondersteuning hebben, maar alleen met \n"
+"XFree %s, LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER "
+"\n"
+"KAN LATEN VASTHANGEN.\n"
+"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
+"kunnen hebben in 2D."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Uw kaart kan 3D acceleratie ondersteuning krijgen met XFree %s.\n"
+"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN LATEN "
+"\n"
+"VASTHANGEN."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s met EXPERIMENTELE 3D hardware acceleratie"
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "XFree configuratie"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Selecteer hoeveel geheugen uw grafische kaart heeft"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Selecteer de opties voor de X-server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Selecteer een monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -75,39 +136,41 @@ msgstr ""
"beschadigen.\n"
"Bij twijfel, maakt u best een conservatieve keuze."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Horizontale verversingsratio"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Verticale verversingsratio"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor niet geconfigureerd"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Grafische kaart nog niet geconfigureerd"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Resoluties nog niet gekozen"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Wenst u de configuraties te testen?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "Waarschuwing: testen is gevaarlijk op deze grafische kaart"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr ""
+"Waarschuwing: door deze grafische kaart te testen, kan uw computer vast "
+"blijven hangen"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Configuratie Testen"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -115,184 +178,171 @@ msgstr ""
"\n"
"probeer een aantal parameters aan te passen"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Er is een fout opgetreden:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Verdwijnt binnen %d seconden"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "Is dit de juiste instelling?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Er is een fout opgetreden, probeer een aantal parameters aan te passen"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automatische resoluties"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Om de beschikbare resoluties te detecteren, zal ik er een paar uitproberen.\n"
-"Uw scherm zal flikkeren...\n"
-"U kan het uitschakelen als u wenst, u zal een geluid horen als het voorbij is"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Resolutie"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Kies resolutie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Grafische kaart: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86-server: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Toon alles"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Resoluties"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Ik kan proberen om de beschikbare resoluties te detecteren.\n"
-"Het kan zijn dat hierdoor uw computer hangt.\n"
-"Wenst u dit te proberen?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Geen geldige modi gevonden\n"
-"Probeer met een andere grafische kaart of monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Toetsenbord instelling: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistype: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muis: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horizontale Sync: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor Verticale Verversing: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafische kaart: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Videogeheugen: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Kleurdiepte: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Resolutie: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "XFree86 driver: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Bezig met het voorbereiden van de configuratie van X-Windows"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Verander Monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Verander grafische kaart"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Verander Server-opties"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Resolutie wijzigen"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Resoluties automatisch zoeken"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Informatie tonen"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Opnieuw testen"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "BeКindig"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Wat wenst u te doen?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Veranderingen vergeten?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Veranderingen bewaren?De huidige configuratie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Gelieve uit te loggen en daarna Ctrl-Alt-Backspace te gebruiken"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X bij opstarten"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -300,227 +350,223 @@ msgstr ""
"Ik kan uw computer instellen om automatisch X te starten bij opstarten.\n"
"Wenst u X te starten bij het opstarten?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Automatisch inloggen"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Ik kan uw computer instellen om automatisch bij een bepaalde gebruiker in te "
+"loggen.\n"
+"Als u deze optie niet wilt gebruiken, klikt u op de knop annuleren."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Kies de standaard gebruiker:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Selecteer de 'window manager' die u wilt gebruiken:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 kleuren (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32,000 kleuren (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65,000 kleuren (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 miljoen kleuren (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miljard kleuren (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB of meer"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standaard VGA, 640x480 aan 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 aan 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Compatibel, 1024x768 aan 87 Hz interlaced (geen 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 aan 87 Hz interlaced, 800x600 aan 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 aan 60 Hz, 640x480 aan 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 aan 60 Hz, 800x600 aan 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA, 1024x768 aan 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency in staat om 1280x1024 aan 60 Hz weer te geven"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency in staat om 1280x1024 aan 74 Hz weer te geven"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency in staat om 1280x1024 aan 76 Hz weer te geven"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Multi-frequency in staat om 1600x1200 aan 70 Hz weer te geven"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Multi-frequency in staat om 1600x1200 aan 76 Hz weer te geven"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "Krullend"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "Standaard"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "das"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunette"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "meisje"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondje"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "Automagisch"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Eerste sector van boot-partitie"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Eerste sector van station (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "LILO/grub-installatie"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "SILO Installatie"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Waar wenst u de bootloader te installeren?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "LILO/grub-installatie"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Geen"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Welke bootloader wenst u te gebruiken?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Bootloader installatie"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Boot-apparaat"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werkt niet met oude BIOS'en)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Pauze voor het booten van standaard-image"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Video-modus"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Pauze voor het booten van standaard-image"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Wachtwoord"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Wachtwoord (nogmaals)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Commandoregel-opties beperken"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "beperken"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "Bootloader algemene opties"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"De optie ``Commandoregel-opties beperken'' heeft geen nut zonder wachtwoord"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Gelieve opnieuw te proberen"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "De wachtwoorden kloppen niet"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -528,167 +574,340 @@ msgstr ""
"Hier zijn de ingangen voor LILO.\n"
"U kan er bijvoegen of de bestaande wijzigen."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Toevoegen"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Welk type ingang wenst u toe te voegen?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Ander OS (SunOs...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Ander OS (Windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Welk type ingang wenst u toe te voegen?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Toevoegen"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Lezen/schrijven"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Naam"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Standaard"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Ingang verwijderen"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Lege naam is niet toegelaten"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Deze naam wordt al gebruikt"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "%s %s interfaces gevonden"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Heeft u er nog ИИn?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Heeft u een %s interface?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nee"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Zie hardware-info"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Bezig met installeren van stuurprogramma voor %s kaart %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(module %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Welk %s stuurprogramma moet ik proberen?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"In sommige gevallen heeft het stuurprogramma van %s extra informatie nodig\n"
+"om juist te werken, alhoewel het meestal ook zonder goed werkt. Wil u\n"
+"extra opties invoeren of laat u liever het stuurprogramma zijn informatie\n"
+"zelf zoeken? Soms zal de automatische detectie de computer laten hangen,\n"
+"maar het zou geen schade mogen veroorzaken."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Automatisch Detecteren"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Geef opties"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "U mag nu de opties ingeven voor module %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"U mag nu de opties voor module %s ingeven.\n"
+"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bijvoorbeeld, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Module-opties:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Het laden van module %s is niet gelukt.\n"
+"Wenst u opnieuw te proberen met andere parameters?"
+
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Welkom bij %s - Kies uw besturingssysteem!\n"
+"\n"
+"Om de mogelijke keuzes te tonen, druk <TAB>.\n"
+"\n"
+"Om een keuze te laden, voer de naam in en druk <ENTER>\n"
+"of wacht %d seconden voor de standaard-bootkeuze.\n"
+
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Welkom bij GRUB - Kies uw besturingssysteem!"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Gebruik de %c en %c-toetsen om te aangeduide ingang te selecteren."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Druk Enter om het geselecteerde besturingssysteem te booten, druk 'e'"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr " om de ingang eerst te bewerken, of 'c' voor een command-line."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+"De aangeduide ingang zal automatisch gestart worden binnen %d seconden."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "niet genoeg ruimte in /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Start Menu"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minuten"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minuut"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d seconden"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "CreКer"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Ontkoppelen"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Verwijderen"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatteren"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Grootte aanpassen"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Type"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Koppelpunt"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "/etc/fstab schrijven"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Normaal > Expert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Expert > Normaal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Herstellen vanuit bestand"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Schrijven naar bestand"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Wizard"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Herstellen van floppy"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Schrijven naar floppy"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Opnieuw beginnen"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Alles formatteren"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Automatisch toewijzen"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Alle primaire partities zijn al toegewezen"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Ik kan geen partitie meer toevoegen"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -696,59 +915,63 @@ msgstr ""
"Om meer partities te kunnen maken, zal u er een moeten verwijderen. Dan kan\n"
"er een uitgebreide (extended) partitie worden bijgemaakt"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Partitietabel redden"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Ongedaan maken"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Partitietabel schrijven"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Herladen"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Leeg"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Ander type"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Leeg"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Ander type"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Bestandssysteem types:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Details"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -760,17 +983,17 @@ msgstr ""
"Ik stel voor dat u eerst die partitie verkleint\n"
"(klik erop, en klik daarna op \"Grootte Aanpassen\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Gelieve eerst een veiligheidskopie van uw gegevens te maken"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Lees aandachtig!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -780,77 +1003,77 @@ msgstr ""
"(2048 sectoren is genoeg)\n"
"aan het begin van de schijf"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Voorzichtig: deze operatie is gevaarlijk."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Fout"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Koppelpunt: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Apparaat: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS schijfletter: %s (dit is slechts een gok)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Grootte: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sectoren"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cylinder %d tot cylinder %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Geformatteerd\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Niet geformatteerd\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Gekoppeld\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback-bestand(en): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -858,79 +1081,79 @@ msgstr ""
"Bij verstek te starten partitie\n"
" (om MS-DOS te booten, niet voor lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk-grootte %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-schijven %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bestandsnaam: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Gelieve op een nieuwe partitie te klikken"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Grootte: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylinders, %s koppen, %s sectoren\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitietabel-type: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Koppeling"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Actief"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Toevoegen aan RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Verwijderen uit RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "RAID aanpassen"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Voor Loopback gebruiken"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Kies een actie"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -938,13 +1161,13 @@ msgid ""
"need /boot"
msgstr ""
"Sorry, het is zinloos om /boot zo ver achteraan de schijf te plaatsen (op "
-"een \n"
+"een\n"
"cylinder > 1024).\n"
"Ofwel gebruikt u LILO en zal het niet werken, of u gebruikt LILO niet en u "
"heeft\n"
"/boot niet nodig."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -958,26 +1181,26 @@ msgstr ""
"een\n"
"/boot partitie toevoegt aan het begin van de schijf"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"U heeft een software RAID partitie als root (/) geselecteerd.\n"
"Geen bootloader kan dit aan zonder een /boot partitie, dus wees er zeker\n"
-"van ook een /boot-partitie toe te voegen als u lilo of grub gebruikt."
+"van ook een /boot-partitie toe te voegen."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' in de plaats"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Gebruik eerst ``Ontkoppelen''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -985,41 +1208,41 @@ msgstr ""
"Na het veranderen van het type van partiei %s, zullen alle gegevens op deze "
"partitie verloren gaan"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Toch doorgaan?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Verlaten zonder opslaan"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Verlaten zonder de partitietabel op te slaan?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Verander partitietype"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Welk partitietype wenst u?"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "Welk bestandssysteem wenst u?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr ""
+msgstr "U kan ReiserFS niet gebruiken op een partitie kleiner dan 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wenst u dit loopback-apparaat %s aan te koppelen?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waaraan wenst u dit apparaat %s te koppelen?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1027,144 +1250,148 @@ msgstr ""
"Kan een aankoppelpunt niet verzetten omdat deze partitie gebruikt wordt als\n"
"loopback. Verwijder de loopback eerst."
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Na het formatteren van partiei %s, zullen alle gegevens op deze partitie "
"verloren gaan"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Bezig met formatteren"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Bezig met formatteren van loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Bezig met formatteren van partitie %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Nadat alle partities geformatteerd zijn,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "zullen alle gegevens op deze partities verloren zijn gegaan."
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Verplaatsen"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Naar welke schijf wenst u te verplaatsen?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Naar welke sector wenst u te verplaatsen?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Aan het verplaatsen"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Partitie aan het verplaatsen..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitietabel van schijf %s wordt weggeschreven!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "U zal moeten herstarten voordat de aanpassing van kracht wordt"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Bezig met berekenen van FAT bestandssysteemgrenzen"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Bezig met de grootte aan te passen"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "Deze partitie is niet in grootte aanpasbaar"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr ""
"Er zou een reservekopie moeten gemaakt worden van alle gegevens op deze "
"partitie."
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Na het veranderen van de grootte van partitie %s, zullen alle gegevens op "
"deze partitie verloren gaan"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Kies de nieuwe grootte"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Nieuwe partitie creКren"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Start sector: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Bestandssysteem-type: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Voorkeur: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Deze partitie kan niet gebruikt worden voor loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Loopback-bestandsnaam: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Loopback-bestand is al in gebruik, gelieve een ander te kiezen"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Het bestand bestaat al. Wenst u het te gebruiken?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Selecteer bestand"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1172,11 +1399,11 @@ msgstr ""
"De backup partitietabel heeft niet dezelfde grootte\n"
"Toch verdergaan?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Waarschuwing"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1184,77 +1411,78 @@ msgstr ""
"Plaats een floppy in het station.\n"
"Alle gegevens op deze floppy zullen verloren gaan"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Proberen om partitietabel veilig te stellen"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "Apparaat"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "niveau"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "chunk-grootte"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Kies een bestaande RAID om aan toe te voegen"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nieuw"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatteren van %s mislukt"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ik weet niet hoe %s in type %s te formatteren"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "NFS koppeling mislukt"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "koppeling mislukt: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout bij ontkoppelen %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Koppelpunten moeten beginnen met een /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Er is al een partitie met als aankoppelpunt %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Circulaire mounts: %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Deze map zou binnen het root bestandssysteem moeten blijven"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
+"U heeft een goed bestandssysteem (ext2, reiserfs) voor dit mount punt\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fout bij het openen van %s voor schrijfbewerking: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1264,75 +1492,110 @@ msgstr ""
"nieuwe bestandssystemen konden worden gecreКerd. Gelieve uw hardware na te\n"
"kijken voor de oorzaak van dit probleem."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "U heeft helemaal geen partities!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "Kies de gewenste taal voor installatie en systeemgebruik."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "Kies uw gewenste taal voor installatie en systeemgebruik."
+
+# ############
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Kies uw toetsenbordlayout uit de bovenstaande lijst"
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"Als u andere talen (dan degene die u kiest bij het begin\n"
+"van de installatie) beschikbaar wilt hebben na de installatie, kiest u deze\n"
+"a.u.b. in bovenstaande lijst. Als u alle talen wilt selecteren, kiest u \n"
+"gewoon \"Alles\"."
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
"Kies \"Installeren\" als er geen vorige versies van Linux geОnstalleerd\n"
"zijn, of als u meerdere distributies of versies wenst te gebruiken.\n"
"\n"
-"Kies \"Upgrade\" als u een vorige versie van Mandrake Linux wenst te\n"
-"upgraden: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 of 7.0 (Air).\n"
+"\n"
+"Kies \"Upgrade\" als u een vorige versie van Mandrake Linux wenst te "
+"upgraden\n"
+"\n"
"\n"
"Selecteer:\n"
"\n"
-" - Automatisch (aanbevolen): Als u Linux nog nooit geОnstalleerd hebt.\n"
-" NOOT: het netwerk zal niet geconfigureerd worden tijdens de "
-"installatie,\n"
-" gebruik hiervoor \"LinuxConf\" wanneer de installatie afgelopen is.\n"
+" - Aanbevolen: Als u Linux nog nooit geОnstalleerd hebt.\n"
+"\n"
+"\n"
+" - Aangepast: Als u bekend bent met Linux. U zal voor het gebruik van het\n"
+"systeem kunnen kiezen tussen normaal, ontwikkeling of server. Kies\n"
+"\"Normaal\" voor een algemene installatie van uw computer. U kan\n"
+"\"Ontwikkeling\" kiezen als u de computer voornamelijk zal gebruiken voor\n"
+"software-ontwikkeling, of \"Server\" als u een server wenst te installeren\n"
+"(voor post, afdrukken...).\n"
"\n"
-" - Aangepast: Als u bekend bent met GNU/Linux. U zal het gebruik van het\n"
-" systeem kunnen kiezen. Zie lager voor details.\n"
"\n"
" - Expert: Als u zich vlot een weg baant in GNU/Linux en een volledig aan\n"
-" uw wensen aangepase installatie, is deze installatieklasse iets voor u.\n"
-" Het zal volledig mogelijk zijn het gebruik van uw systeem te "
-"installeren,\n"
-" zoals bij \"Aangepast\".\n"
-" Maar let op, alsjeblief, KIES DIT NIET TENZIJ U COMPLEET WEET WAT U "
-"DOET!\n"
+"uw wensen aangepase installatie, is deze installatieklasse iets voor u.\n"
+"Het zal volledig mogelijk zijn het gebruik van uw systeem te installeren,\n"
+"zoals bij \"Aangepast\"."
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1340,51 +1603,49 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Selecteer:\n"
"\n"
" - Aangepast: Als u bekend bent met Linux. U zal het gebruik van het\n"
"systeem kunnen kiezen. Zie lager voor details.\n"
"\n"
+"\n"
" - Expert: Als u zich vlot een weg baant in GNU/Linux en een volledig aan\n"
" uw wensen aangepase installatie, is deze installatieklasse iets voor u.\n"
" Het zal volledig mogelijk zijn het gebruik van uw systeem te "
"installeren,\n"
" zoals bij \"Aangepast\".\n"
-" Maar let op, alsjeblief, KIES DIT NIET TENZIJ U COMPLEET WEET WAT U "
-"DOET!\n"
+" Maar let op, alsjeblief, KIES DIT NIET TENZIJ U COMPLEET WEET WAT U DOET!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"De verschillende keuzes voor het gebruik van uw machine (tenminste, wanneer "
"u\n"
@@ -1392,185 +1653,370 @@ msgstr ""
"volgende:\n"
"\n"
" - Normaal: kies dit als u uw machine hoofdzakelijk zal gebruiken voor\n"
-" dagelijke gebruik (kantoorwerk, beeldbewerking, enz). Er zal geen "
-"enkele\n"
-" compiler, ontwikkelings-tool, etc. geinstalleerd worden.\n"
-"\n"
-" - Ontwikkeling: zoals de naam zelf het zegt. Kies dit als u uw machine "
-"voor\n"
-" software-ontwikkeling wenst te gebruiken. U zal dan een complete "
-"collectie\n"
-" software geinstalleerd hebben om de compilen, te debuggen, broncode op "
-"te\n"
-" maken, of softwarepakketten aan te maken.\n"
+" dagelijke gebruik (kantoorwerk, beeldbewerking, enz). Er zal geen\n"
+" enkele compiler, ontwikkelings-tool, etc. geinstalleerd worden.\n"
+"\n"
+" - Ontwikkeling: zoals de naam zelf het zegt. Kies dit als u uw machine\n"
+" voor software-ontwikkeling wenst te gebruiken. U zal dan een complete\n"
+" collectie software geinstalleerd hebben om de compilen, te debuggen,\n"
+" broncode op te maken, of softwarepakketten aan te maken.\n"
"\n"
" - Server: kies dit als deze machine gebruikt zal worden als server (ofwel\n"
" een bestandsserver (NFS of SMB), een print server (Unix' lp (Line "
"Printer)\n"
" protocol, of Windows-style SMB-printers, een authenticatieserver (NIS),\n"
" een database server, enzovoorts...\n"
-" Hier zal dan ook geen enkele gimmick (KDE, GNOME, ...) geinstalleerd "
-"worden.\n"
+" Hier zal dan ook geen enkele gimmick (KDE, GNOME, ...) geinstalleerd\n"
+" worden."
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX zal eerst proberen ИИn of meerdere PCI SCSI adapters\n"
-"te vinden. Als er een gevonden wordt en er stuurprogramma's beschikbaar "
-"zijn,zullen deze automatisch gebruikt worden.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Als uw SCSI adapter een ISA-kaart is, of een PCI-kaart die DrakX niet\n"
-"kent of geen stuurprogramma's voor heeft, of als u helemaal geen SCSI-\n"
-"adapter heeft, zal u gevraagd worden of u er ИИn heeft of niet. Als u er\n"
-"geen heeft, antwoord dan \"Nee\". Als u er wel ИИn (of meer) heeft,\n"
-"antwoord dan \"Ja\". Een lijst van stuurprogramma's zal dan verschijnen,\n"
-"waaruit u er een zal moeten kiezen.\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"Nadat u het stuurprogramma heeft geselecteerd, zal DrakX u vragen of u\n"
-"er opties voor wenst op te geven. Laat de driver eerst de hardware zelf\n"
-"zoeken, dit werkt meestal perfect.\n"
"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
"\n"
-"Als dit niet het geval is, vergeet dan de informatie niet die u uit de\n"
-"documentatie kan halen of uit Windows (als u dit op uw systeem heeft ge-\n"
-"installeerd heeft), zoals voorgesteld in de installatiehandleiding. Dit\n"
-"zijn de opties die u aan het stuurprogramma moet meegeven."
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Nu kunt u kiezen welke partitie(s) gebruikt moeten worden om uw Linux-\n"
-"Mandrake-systeem te installeren, als ze reeds gedefinieerd zijn (van een\n"
-"vorige Linux-installatie of een ander partitie-gereedschap). In andere\n"
-"gevallen, moeten harde schijf-partities gedefinieerd worden. Deze operatie\n"
-"bestaat uit het verdelen van de harde schijf in aparte delen.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
"\n"
-"Als u nieuwe partities moet creКren, gebruik \"Automatisch toewijzen\" om "
-"automatisch partities voor Linux aan te maken. U kan de schijf voor "
-"partitieselecteren door op \"hda\" te klikken voor de eerste IDE-schijf,\n"
-"\"hdb\" voor de tweede, of \"sda\" voor de eerste SCSI-schijf en zo voort.\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
"\n"
"\n"
-"Twee veel voorkomende partities zijn: de root-partitie (/), die het start-\n"
-"punt is van het bestandssysteem en de directory-hiКrarchie, en /boot, dit\n"
-"bevat de bestanden die nodig zijn om het besturingssysteem te starten als\n"
-"de computer aangezet wordt.\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Omdat de effecten van dit proces meestal onomkeerbaar zijn, kan partities\n"
-"aanleggen indrukwekkend en ontmoedigend zijn voor de onervaren gebruiker.\n"
-"DiskDrake maakt dit proces simpeler zodat dit niet nodig is. Consulteer de\n"
-"documentatie en neem uw tijd voor u doorgaat.\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"U kan elke optie ook gebruiken via het toetsenbord: navigeer door de "
-"partities\n"
-"door middel van Tab en de boven- en beneden-pijltjes. Wanneer een partitie "
-"is\n"
-"geselecteerd, kan u het volgende gebruiken\n"
"\n"
-"- Ctrl-c om een nieuwe partitie te maken (wanneer een lege partitie is "
-"geselecteerd)\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
+"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-d om een partitie te verwijderen\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
-"- Ctrl-m om het aankoppelpunt in te stellen\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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Alle nieuw-gedefiniКerde partities moeten geformatteerd worden voor ze\n"
-"kunnen gebruikt worden (formatteren betekent een bestandssysteem aanmaken.\n"
-"Op dit moment wil u misschien enkele bestaande partities herformatteren om\n"
-"de gegevens die erop staan te wissen. Noot: het is niet nodig om bestaande\n"
-"partities te herformatteren, zeker niet als ze bestanden bevatten of\n"
-"gegevens die u wenst te behouden.\n"
-"Meestal bijgehouden zijn /home en /usr/local."
+"Kies de harde schijf die u wilt wissen om uw nieuwe\n"
+"Linux-Mandrake partitie op te installeren. Ben voorzichtig, alle data die\n"
+"op deze schijf staat zal verloren gaan, en niet terug te halen zijn."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr "Even geduld a.u.b. Deze operatie kan enkele minuten duren."
+
+#: ../../help.pm_.c:303
+msgid ""
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
+
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"U kan nu de groepen pakketten selecteren die u wenst te installeren of\n"
"te upgraden.\n"
"\n"
+"\n"
"DrakX zal dan controleren of u genoeg ruimte heeft om ze allemaal te "
"installeren.\n"
"Als dit niet zo is, zal u een waarschuwing krijgen. Als u toch wil "
@@ -1580,140 +2026,169 @@ msgstr ""
"Onderaan de lijst kan u de optie \"Individuele pakketselectie\" selecteren,\n"
"dan moet u door meer dan 1000 pakketten navigeren..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Als u alle CDs in de lijst hierboven heeft, klik dan Ok.\n"
-"Als u geen enkele van die CDs heeft, klik dan Annuleren.\n"
-"Als maar enkele CDs zoek zijn, deselecteer ze dan, en klik Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:358
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"De geselecteerde pakketten worden nu geОnstalleerd. Dit zal enkele\n"
-"minuten duren, tenzij u een upgrade van een bestaand systeem heeft\n"
-"gekozen. In dat geval kan het nog meer tijd nemen voordat de upgrade\n"
-"van start gaat."
+"Als u alle CDs in de lijst hierboven heeft, klik dan Ok. Als u geen\n"
+"enkele van die CDs heeft, klik dan Annuleren. Als maar enkele CDs zoek\n"
+"zijn, deselecteer ze dan, en klik Ok."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:363
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"Please be patient."
msgstr ""
-"Als DrakX uw muis niet kan vinden, of als u wil controleren\n"
-"wat DrakX gedaan heeft, zal bovenstaande lijst met muizen getoond worden.\n"
-"\n"
-"\n"
-"Als u het eens bent met de instellingen van DrakX, spring dan gewoon\n"
-"naar de sectie die u wenst door erop te klikken in het linkermenu.\n"
-"Anders kiest u in het menu een muistype dat het dichtst bij uw muis\n"
-"ligt.\n"
+"Uw nieuwe Linux-Mandrake OS wordt nu geОnstalleerd. Deze\n"
+"operatie zou enkele minuten in beslag moeten nemen (afhankelijk van de "
+"grootte\n"
+"van de installatie en de snelheid van uw computer).\n"
"\n"
"\n"
-"In het geval van een seriКle muis, zal u DrakX ook moeten vertellen\n"
-"met welke seriКle poort de muis verbonden is."
+"Even geduld a.u.b."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:371
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"Gelieve de correcte poort te kiezen. COM1 under MS Windows wordt "
+"U kunt nu uw muis testen. Gebruik de knoppen en het wiel om\n"
+"te controleren of de instellingen correct zijn. Als dit niet zo is, kunt u\n"
+"op \"Annuleren\" klikken om een andere driver te kiezen."
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Gelieve de correcte poort te kiezen. COM1 onder MS Windows wordt "
"bijvoorbeeld\n"
"ttyS0 genoemd under Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Deze sectie helpt u bij het configureren van een lokaal netwerk (LAN) of\n"
-"een modem\n"
-"\n"
-"Kies \"Lokaal LAN\" en DrakX zal proberen een Ethernet adapter te vinden\n"
-"op uw machine. PCI zou moeten gevonden en automatisch geinitialiseerd "
-"worden.\n"
-"Maar, als u een ISA-kaart gebruikt, zal de automatische detectie niet "
-"werken,\n"
-"en zal u een stuurprogramma uit de lijst moeten kiezen.\n"
-"\n"
-"\n"
-"Voor SCSI-adapters, kan u het stuurprogramma laten testen om de adapter te\n"
-"vinden, anders zal u zelf de opties voor het stuurprogramma moeten ingeven\n"
-"die u dan uit de documentatie van de hardware heeft gehaald.\n"
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
"\n"
-"Als u een Linux-Mandrake-Systeem installeert op een machine die reeds deel\n"
-"uitmaakt van een bestaand netwerk, zal de netwerkbeheerder u reeds alle\n"
-"nodige informatie (IP-adres, netwerk-submasker of afgekort netmasker, en\n"
-"hostnaam) gegeven hebben. Als u een privaat netwerk opstelt, zal u de\n"
-"adressen zelf kunnen kiezen.\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"Er is geen modem gevonden. Kiest u a.u.b. de serieКle poort waarop het "
+"modem/naangesloten is.\n"
"\n"
"\n"
-"Kies \"Inbellen met modem\" en de internetverbinding zal voor het gebruik\n"
-"van een modem geconfigureerd worden. DrakX zal proberen uw modem te vinden.\n"
-"Als dit niet lukt, kan u de juiste seriКle poort aanduiden waarmee uw\n"
-"modem verbonden is."
+"Ter informatie: de eerste serieКle poort (genaamd \"COM1\" onder MS "
+"Windows)\n"
+"heet \"ttysS0\" onder Linux."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:400
msgid ""
-"Enter:\n"
-"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
-"\n"
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+"Als uw modem een extern modem is, zet deze dan u aan om DrakX deze "
+"automatischte laten detecteren."
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "Zet a.u.b. uw modem aan en kies de juiste."
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"U kan nu de inbel-opties ingeven. Als u niet zeker bent wat u hier moet\n"
+"invoeren, kan u de correcte informatie aanvragen bij uw ISP."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Hier dient u het volgende in te voeren:\n"
"\n"
@@ -1726,10 +2201,27 @@ msgstr ""
"\n"
" - Automatisch IP: Als uw netwerk BootP of DHCP gebruikt, selecteer\n"
"dan deze optie. Als dit geselecteerd is, is er geen invoer nodig in het\n"
-"veld \"IP-adres\". Als u niet zeker bent, vraag het aan uw "
-"netwerkbeheerder.\n"
+"veld \"IP-adres\". Als u niet zeker bent, vraag het aan uw netwerkbeheerder."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Als uw netwerk NIS gebruikt, selecteer dan \"NIS Gebruiken\". Als u het "
+"niet\n"
+"zeker weet, vraag het dan aan uw netwerkbeheerder."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"U kunt nu uw host naam ingeven. Als u deze niet kent,\n"
+"of als u niet weet wat u moet invoeren, laat u dit\n"
+"veld leeg"
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1737,7 +2229,7 @@ msgstr ""
"U kan nu de inbel-opties ingeven. Als u niet zeker bent wat u hier moet\n"
"invoeren, kan u de correcte informatie aanvragen bij uw ISP."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1746,13 +2238,14 @@ msgstr ""
"u proxies zal gebruiken, kan u dit best vragen aan uw netwerkbeheerder of "
"aan uw ISP."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1760,118 +2253,237 @@ msgstr ""
"correct ingesteld is. Eerst kiest u een \"mirror\" waar u de pakketten\n"
"wenst te downloaden en daarna selecteert u de pakketten om te installeren.\n"
"\n"
-"Noot: U moet de \"mirror\" en de pakketten selecteren naargelang uw\n"
+"Opmerking: U moet de \"mirror\" en de pakketten selecteren naargelang uw\n"
"plaatselijke wetgeving."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "U kunt nu uw tijdzone selecteren van de plaats waar u woont."
+
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"U kan nu uw tijdszone selecteren, afhankelijk van waar u woont.\n"
-"\n"
-"\n"
"Linux beheert de tijd in GMT of \"Greenwich Mean Time\" en vertaalt deze "
"dan\n"
-"in locale tijd, afhankelijk van de tijdszone die u geselecteerd hebt."
+"in locale tijd, afhankelijk van de tijdszone die u geselecteerd hebt.\n"
+"Als u Microsoft Windows op uw computer gebruikt, kiest u \"Nee\"."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"U kan nu kiezen welke diensten u wil gestart hebben bij het opstarten.\n"
"Wanneer u uw muis over een item navigeert, zal een klein ballonhulpje\n"
"tevoorschijn komen dat de rol van de dienst beschrijft.\n"
"\n"
+"\n"
"Wees vooral voorzichtig in deze stap als u uw machine als een server wil\n"
-"gebriuken: u zal waarschijnlijk de diensten die u niet nodig heeft niet "
+"gebruiken: u zal waarschijnlijk de diensten die u niet nodig heeft niet "
"willen\n"
"starten."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"U kunt een locale printer (aangesloten op uw computer) of een netwerk\n"
+"printer (aan te sturen via een Unix, Netware of MS Windows netwerk)\n"
+"configureren."
+
+#: ../../help.pm_.c:490
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux kan overweg met vele typen printers. Elke van deze printers\n"
-"heeft een aparte configuratie nodig. Merk welk op dat de printspooler\n"
-"'lp' gebruikt als standaardprinternaam; u moet dus een printer met die\n"
-"naam; maar u kan een printer meerdere namen geven, gescheiden door '|' "
-"tekens.\n"
-"Dus, als u liever een meer betekenisvolle naam geeft, zet hem dan eerst\n"
-"bijvoorbeeld: \"Mijn Printer|lp\".\n"
-"De printer die \"lp\" in zijn naam (namen) heeft zal de standaardprinter "
-"zijn.\n"
+"Als u in staat wilt zijn te kunnen printen, kiest u a.u.b. een printsysteem\n"
+"tussen CUPS en LPR.\n"
+"\n"
+"\n"
+"CUPS is een nieuw, krachtig en flexibel printsysteem voor Unix systemen "
+"(CUPS\n"
+"betekent \"Common Unix Printing System\"). Het is het standaard printsysteem "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is het oude printsysteem dat gebruikt wordt in vroegere Linux-Mandrake "
+"distributies.\n"
+"\n"
+"\n"
+"Als u geen printer heeft, klikt u op \"Geen\"."
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Als uw printer rechtstreeks verbonden is met uw computer, kies dan\n"
-"\"Lokale Printer\". U zal dan moeten invoeren met welke poort uw\n"
-"printer verbonden is, en de gepaste filter selecteren.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"Uw printer werd niet gedetecteerd. Voer a.u.b. de naam in van het apparaat\n"
+"waar het op is aangesloten.\n"
+"\n"
+"\n"
+"Ter informatie, de meeste printers zijn op de eerste paralelle poort\n"
+"aangesloten.\n"
+"Deze heet onder Linux \"/ev/lp0\" en \"LPT1\" onder MS Windows."
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "U moet nu uw printer in bovenstaande lijst selecteren."
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Als u een printer wil gebruiken bij een Unix-machine op afstand,\n"
-"zal u \"lpd op afstand\" moeten selecteren. Om dit te laten werken\n"
-"is er geen gebruikersnaam of wachtwoord nodig, maar u zal wel de naam\n"
-"van de printerwachtrij op de server moeten kennen.\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"Selecteer a.u.b. de juiste opties die overeenkomen met uw printer.\n"
+"Kijkt u a.u.b. in de documentatie als u niet weet wat u hier moet kiezen.\n"
"\n"
"\n"
-"Als u een SMB-printer wil gebruiken (een printer op een Windows 9x/NT "
-"machine op afstand), zal u de SMB-naam nodig hebben (niet de TCP/IP-naam)\n"
-"en mogelijk het IP-adres van de server, alsook de gebruikersnaam,\n"
-"werkgroep, en wachtwoord om toegang tot de printer te verkrijgen.\n"
-"Hetzelfde geldt voor een NetWare printer, behalve dat u geen werkgroep-\n"
-"informatie nodig heeft."
+"U zult in de volgende stap de configuratie kunnen testen en deze aanpassen\n"
+"als het niet werkt zoals u dit wilt."
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:585
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"U kan nu het root-wachtwoord ingeven voor uw Linux-Mandrake-systeem.\n"
"Het wachtwoord moet twee maal ingevoerd worden om te verifiКren dat\n"
@@ -1887,7 +2499,7 @@ msgstr ""
"Het mag *nooit* neergeschreven worden. Maak het wachtwoord echter ook niet\n"
"te moeilijk, u moet het kunnen onthouden zonder veel moeite."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1895,7 +2507,7 @@ msgstr ""
"Om een veiliger systeem in te stellen, selecteert u best \"Schaduw-bestand "
"gebruiken\" en \"MD5-wachtwoorden gebruiken\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1904,7 +2516,7 @@ msgstr ""
"niet\n"
"zeker weet, vraag het dan aan uw netwerkbeheerder."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1944,22 +2556,20 @@ msgstr ""
"Daarom moet u steeds verbinden met de gebruikersaccount die u hier hebt\n"
"aangemaakt, en enkel als root inloggen voor administratie en onderhoud."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Het is sterk aanbevolen dat u hier \"Ja\" antwoordt. Als u Microsoft\n"
-"Windows later installeert zal het de bootsector overschrijven.\n"
-"Tenzij u een bootdiskette heeft aangemaakt zoals voorgesteld, zal u het\n"
-"Linux-systeem niet meer kunnen opstarten."
+"Een opstart diskette wordt sterkt aanbevolen. Als u uw\n"
+"computer niet kunt opstarten, is dit de enige manier om de computer te\n"
+"`redden' zonder Linux opnieuw te hoeven installeren."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1972,7 +2582,7 @@ msgstr ""
"Tenzij u precies weet wat u wenst te doen, kiest u \"Eerste sector van\n"
"station (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1981,10 +2591,10 @@ msgstr ""
"(de master-drive op het eerste IDE-kanaal) of \"/dev/sda\" (eerste SCSI "
"schijf)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -2006,7 +2616,7 @@ msgstr ""
"dan kan u de overeenkomstige ingangen verwijderen. Maar, in dit geval,\n"
"zal u wel een bootdisk nodig hebben om ze nog te kunnen opstarten!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2023,7 +2633,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"LILO en grub hoofdopties zijn:\n"
@@ -2045,10 +2657,68 @@ msgstr ""
" * normal: selecteerd normale 80x25 tekstmodus\n"
" * <nummer>: gebruikt de overeenkomstige tekstmodus."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"LILO (de LInux LOader) en Grub zijn bootloaders: ze kunnen Linux of eender\n"
+"welk ander besturingssysteem opstarten op uw computer.\n"
+"Normaalgezien worden deze besturingssystemen correct gedetecteerd en\n"
+"geinstalleerd. Als dit niet het geval is, kan u handmatig een ingang "
+"toevoegen\n"
+"op dit scherm. Wees voorzichtig bij het kiezen van de juiste opties.\n"
+"\n"
+"\n"
+"U wil ook misschien niet iedereen toegang geven tot die besturingssystemen,\n"
+"dan kan u de overeenkomstige ingangen verwijderen. Maar, in dit geval,\n"
+"zal u wel een bootdisk nodig hebben om ze nog te kunnen opstarten!"
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"LILO en grub hoofdopties zijn:\n"
+" - Boot device: Selecteert de naam van het apparaat (= harde schijf-\n"
+"partitie) die de bootsector bevat. Tenzij u specifiek iets anders nodig\n"
+"heeft, kies \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Wachttijd voor het booten van standaard-image: Geeft het nummer in \n"
+"tienden van een seconde voor de bootloader het standaard-image opstart.\n"
+"Dit is handig op systemsn die rechtstreeks van de harde schijf starten \n"
+"na het inschakelen van het keyboard. De bootloader wacht niet als \"delay\"\n"
+"niet aanwezig is of op 0 gezet is.\n"
+"\n"
+"\n"
+" - Videomodus: Dit geeft de VGA tekstmodus aan die geselecteerd moet "
+"worden\n"
+"bij het booten. De volgende waarden zijn mogelijk:\n"
+" * normal: selecteerd normale 80x25 tekstmodus\n"
+" * <nummer>: gebruikt de overeenkomstige tekstmodus."
+
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2072,7 +2742,7 @@ msgstr ""
"u het ermee eens bent. Als dit niet het geval is, kan u altijd terugkomen\n"
"om deze instellingen aan te passen, zoveel keer als u wenst."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2080,7 +2750,7 @@ msgstr ""
"Als er iets verkeerd zit in de X-configuratie, gebruik dan deze opties om\n"
"het X-Window Systeem correct te configureren."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2088,42 +2758,46 @@ msgstr ""
"Als u liefst een grafische inlogprocedure heeft, kies dan \"Ja\". Anders\n"
"kiest u \"Nee\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"U kan nu enkele andere opties voor uw systeem kiezen.\n"
"\n"
@@ -2173,7 +2847,7 @@ msgstr ""
" na het opstarten, kies dan deze optie (Noot: Num Lock zal misschien nog\n"
" steeds niet werken onder X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2187,96 +2861,115 @@ msgstr ""
"Als u wil starten met een ander bestaand besturingssysteem, gelieve dan de\n"
"bijkomende instructies te lezen."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Kies uw taal"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Installatieklasse selecteren"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Harde schijf-detectie"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Muis configureren"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Toetsenbord kiezen"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Overige"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Bestandssystemen instellen"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Partities formatteren"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Te installeren pakketten kiezen"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Systeem installeren"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Netwerk-configuratie"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Cryptografie"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Tijdszone configureren"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Diensten configureren"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Printer configureren"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Root-wachtwoord instellen"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Gebruiker toevoegen"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Boot-diskette aanmaken"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Boot-loader installeren"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "X Configureren"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Auto-installatiediskette"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Installatie afsluiten"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Fout bij het lezen van bestand $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Test uw muis a.u.b."
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "Welk type muis heeft u?"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "BEWEEG UW WIELTJE"
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
@@ -2286,230 +2979,251 @@ msgstr ""
"Hiervoor dient u een partitie aan te maken (of op een bestaande partitie "
"teklikken). Daarna kiest u de actie ``Koppelpunt'' en stelt u dit i nop `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
-"Ik zal proberen door te gaan en de slechte partities te verwijderen"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "U moet een swap-partitie hebben"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake kon de partitietabel niet correct inlezen.\n"
-"Als u verdergaat, is dit op eigen risico!"
+"U heeft geen swap-partitie!\n"
+"\n"
+"Toch verdergaan?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Bezig met zoeken naar 'root'-partitie..."
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Gebruik vrije ruimte"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informatie"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Niet genoeg vrije ruimte om nieuwe partities te maken"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Dit is geen root-partitie, gelieve er een andere te kiezen."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Gebruik een bestaande partitie"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Geen root-partitie gevonden"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Er is geen bestaande partitie om te gebruiken"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Kan `broadcast' niet gebruiken zonder NIS-domein"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Gebruik de Windows partitie voor loopback "
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Fout bij het lezen van bestand $f"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Welke partitie wenst u te gebruiken voor Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Er is een fout opgetreden, maar ik weet niet hoe deze te behandelen.\n"
-"Als u verdergaat, is dit op eigen risico."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Kies de grootte"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Dubbel koppelpunt %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Root-partitie-grootte in MB:"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Swap-partitie-grootte in MB: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Welkom bij %s!"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Gebruik de vrije ruimte op de Windows partitie"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Geen diskettestation beschikbaar"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "Van welke partitie wilt u de grootte veranderen?"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Bezig met berekenen van Windows bestandssysteemgrenzen"
+
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Overgang naar stap `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"De FAT grootte-aanpasser was niet instaat met uw partitie om te gaan, \n"
+"dit is fout gegaan: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "U moet een swap-partitie hebben"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
+"Uw Windows partitie is te gefragmenteerd, start a.u.b. eerst ``defrag'' eerst"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"U heeft geen swap-partitie!\n"
+"WAARSCHUWING!\n"
"\n"
-"Toch verdergaan?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Selecteer de grootte die u wenst te installeren"
+"DrakX moet nu de grootte van uw Windows-partitie aanpassen. Wees "
+"voorzichtig:\n"
+"deze operatie is gevaarlijk. Als u dit niet reeds gedaan heeft, draait u\n"
+"best eerst scandisk (en eventueel defrag) op deze partitie en maakt u ook\n"
+"best een veiligheidskopie.\n"
+"Als u zeker bent, klik Ok."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Totale grootte: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Welke grootte wilt u gebruiken om windows op?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Versie: %s\n"
+msgid "partition %s"
+msgstr "Partitie %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Grootte: %d kB\n"
+msgid "FAT resizing failed: %s"
+msgstr "FAT grootte-aanpassing mislukt: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Kies de pakketten die u wenst te installeren"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Er is geen FAT partitie om de grootte van aan te passen of om als \n"
+"loopback te gebruiken (of er is te weinig ruimte over)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Volledige harde schijf wissen"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Installeren"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "Verwijder Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Bezig met installeren"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "U heeft meer dan een harde schijf, op welke wilt u Linux installeren?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Even geduld, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"ALLE bestaande partities en de data die ze bevatten, zal worden gewist van "
+"schijf %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Tijd over "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Expert mode"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Totale tijd "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "Gebruik diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Bezig met voorbereiden van installatie"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "Gebruik fdisk"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Bezig met installeren van pakket %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"U kan nu uw schijf %s partitioneren.\n"
+"Vergeet niet op te slaan met `w' wanneer u klaar bent."
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Toch verdergaan?"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "U heeft niet genoeg vrije ruimte op uw Windows partitie"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Er was een fout bij het sorteren van de pakketten:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "Ik kan geen partitie meer toevoegen"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Bestaande configuratie gebruiken voor X11?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "De DrakX partitie wizard heeft de volgende oplossingen gevonden:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partitionering mislukt: %s"
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "U heeft geen windows partities!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Bezig met opstarten van het netwerk"
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "U heeft niet genoeg plaats voor Lnx4win"
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Bezig met stoppen van het netwerk"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"WAARSCHUWING!\n"
-"\n"
-"DrakX moet nu de grootte van uw Windows-partitie aanpassen. Wees "
-"voorzichtig:\n"
-"deze operatie is gevaarlijk. Als u dit niet reeds gedaan heeft, draait u\n"
-"best eerst scandisk (en eventueel defrag) op deze partitie en maakt u ook\n"
-"best een veiligheidskopie.\n"
-"Als u zeker bent, klik Ok."
+"Er is een fout opgetreden, maar ik weet niet hoe deze te behandelen.\n"
+"Als u verdergaat, is dit op eigen risico."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automatische grootte-aanpassing is niet gelukt"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Dubbel koppelpunt %s"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Welke partitie wenst u te gebruiken om Linux4Win op te zetten?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Sommige belangrijke pakketen werden niet juist\n"
+"geОnstalleerd. Of uw cdrom drive of uw cdrom is defect.\n"
+"Controleer de cdrom op een geОnstalleerde computer met\n"
+"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Kies de grootte"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Welkom bij %s!"
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Root-partitie-grootte in MB:"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Geen diskettestation beschikbaar"
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Swap-partitie-grootte in MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Overgang naar stap `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"Uw systeem heeft weinig bronnen beschikbaar. U zou problemen kunnen\n"
+"ondervinden bij het installeren van Linux-Mandrake. Als dit gebeurt,\n"
+"kunt u een text installatie proberen. Om dit te doen, drukt u op `F1'\n"
+"terwijl de CDROM opstart, en dan voert u `text' in."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "De totale grootte voor de geselecteerde groepen is ongeveer %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2523,7 +3237,7 @@ msgstr ""
"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
"een percentage van 100% zal alle geselecteerde pakketten installeren."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2539,62 +3253,102 @@ msgstr ""
"Een laag percentage zal enkel de belangrijkste pakketten installeren;\n"
"een percentage van 100% zal alle geselecteerde pakketten installeren."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Het is mogelijk preciezer te kiezen in de volgende stap."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Percentage pakketten om te installeren"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Kies de pakketten die u wenst te installeren"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Installeren"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Automatische afhankelijkheden"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr ""
"Boom\n"
"Uitbreiden"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr ""
"Boom\n"
"Inklappen"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Slecht pakket"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versie: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Grootte: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrijkheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "U kan dit pakket niet selecteren omdat er te weinig vrije ruimte is"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "De volgende pakketten zullen geОnstalleerd worden"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "De volgende pakketten zullen gedeОnstalleerd worden"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "U kan dit pakket niet (de)selecteren"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "U kan dit pakket niet deselecteren. Het is al geinstalleerd."
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2602,45 +3356,88 @@ msgstr ""
"Dit pakket moet geupgrade worden\n"
"Bent u zeker dat u het wenst te deselecteren?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan dit pakket niet deselecteren. Het moet geupgrade worden."
-#: ../../install_steps_gtk.pm_.c:493
-#, fuzzy
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "U kan dit pakket niet deselecteren. Het is al geinstalleerd."
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "De volgende pakketten zullen ge(de)Оnstalleerd worden"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "U kan dit pakket niet (de)selecteren"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Bezig met installeren"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Bezig met schatten"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Even geduld, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tijd over "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Totale tijd "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Annuleren"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Bezig met voorbereiden van installatie"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakketten"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Bezig met installeren van pakket %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Accepteren"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2657,182 +3454,388 @@ msgstr ""
"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
"deze CD te vermijden."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "Niet Accepteren"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Toch verdergaan?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Er was een fout bij het sorteren van de pakketten:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Er was een fout bij het installeren van de pakketten:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Er is een fout opgetreden"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Gelieve een taal te kiezen."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr "Licentie overeenkomst"
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Toetsenbord"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Wat is uw toetsenbord-layout?"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "U kan andere talen kiezen die verkrijgbaar zullen zijn na installatie"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Root-partitie"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Alles"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Wat is de root-partitie (/) van uw systeem?"
-
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Installatie-klasse"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Welke installatie-klasse wenst u?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
-msgstr "Installatie/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
+msgstr "Installatie/Update"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
msgstr "Is dit een installatie of een upgrade?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatisch"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Aanbevolen"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Aangepast"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Bent u zeker dat u een expert bent?\n"
-"U zal krachtigere dingen kunnen doen, maar ook gevaarlijkere!"
+"U zal krachtigere dingen kunnen doen, maar ook gevaarlijkere!\n"
+"U zult vragen gesteld krijgen als: ``Schaduw bestand gebruiken voor "
+"wachtwoorden?'',\n"
+"bent u er klaar voor zulke vragen te beantwoorden?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
-msgstr "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
+msgstr "Update"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normaal"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Werkstation"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Ontwikkeling"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "Waarvoor gebruikt u uw systeem voornamelijk?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Waar wordt uw systeem voor gebruikt?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Welk type muis heeft u?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Met welke seriКle poort is uw muis verbonden?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Bezig met configureren van PCMCIA-kaarten..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE-Configuratie"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "Geen beschikbare partities"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "Welke partitie wenst u te gebruiken als root-partitie?"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "Bezig met scannen van partities om mount punten te vinden"
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Selecteer de koppelpunten"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
+"Ik kan proberen door te gaan en de slechte partities verwijderen\n"
+"(ALLE DATA zal worden gewist!).\n"
+"De andere oplossing is om DrakX de de partitie tabel niet te laten "
+"aanpassen.\n"
+"(de fout is %s)\n"
+"\n"
+"Gaat u ermee akkoord alle partities te verliezen?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake kon de partitietabel niet correct inlezen.\n"
+"Als u verdergaat, is dit op eigen risico!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Root-partitie"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Wat is de root-partitie (/) van uw systeem?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"U dient te herstarten om de wijzigingen in de partitietabel te activeren."
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Kies de partities die u wenst te formatteren"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Slechte blocks checken?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Bezig met formatteren van partities"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Bezig met aanmaken en formatteren van bestand %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Niet genoeg swap voor de installatie, voeg er wat toe"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Bezig met zoeken naar beschikbare pakketten"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Bezig met zoeken naar pakketten om te upgraden"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "Uw systeem heeft niet genoeg ruimte over voor installatie of upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr ""
+"Uw systeem heeft niet genoeg ruimte over voor installatie of upgrade (%d > "
+"%d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "Volledig (%dMB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimaal (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Aanbevolen (%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "Aangepast"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Selecteer de grootte die u wenst te installeren"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
-msgstr "Pakket-groep-selectie"
+msgstr "Pakket-groep Selectie"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Individuele pakketselectie"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2842,12 +3845,12 @@ msgstr ""
"Als u geen enkele van die CDs heeft, klik dan Annuleren.\n"
"Als maar enkele CDs zoek zijn, deselecteer ze dan, en klik Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-Rom genaamd \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2855,173 +3858,11 @@ msgstr ""
"Bezig met installeren van pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Installatie na configuratie"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Huidige IP-configuratie behouden"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Netwerk nu herconfigureren"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Netwerk niet instellen"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Netwerk-configuratie"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "Het locale netwerk is reeds geconfigureerd. Wil u:"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Wenst u uw systeem te configureren voor gebruik met een netwerk?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "Geen netwerkkaart gevonden"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Modemconfiguratie"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr ""
-"Wenst u uw systeem te configureren voor gebruik met een inbelverbinding?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Bezig met configureren van netwerk-apparaat %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Gelieve de IP-configuratie voor deze machine in te geven.\n"
-"Elke ingang moet ingegeven worden als een IP adres in `dotted-decimal'-\n"
-"vorm (bijvoorbeeld 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatisch IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "IP-adres:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmasker:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(BootP/DHCP)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Het IP-adres moet het formaat 1.2.3.4 hebben"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Bezig met configureren van netwerk"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Gelieve uw hostnaam in te voeren.\n"
-"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
-"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "DNS-server:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Gateway-apparaat:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Host-naam:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Proberen een modem te vinden?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Met welke seriКle poort is uw modem verbonden?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Inbel-opties"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Verbindingsnaam"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Telefoonnummer"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "Aanmeldingsnaam"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Authenticatie"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Gebaseerd op een script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Gebaseerd op een terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domeinnaam"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Eerste DNS-server"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Tweede DNS-server"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3060,90 +3901,94 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Kies een `mirror' om de pakketten van af te halen"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
"Bezig met de `mirror' te contacteren om de lijst met beschikbarepakketten te "
"verkrijgen"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Kies de pakketten die u wenst te installeren."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
-msgstr "Wat is uw tijdszone?"
+msgstr "Wat is uw tijdzone?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Is uw hardware-klok ingesteld op GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "Welk printer systeem wilt u gebruiken?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Geen wachtwoord"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Schaduw-bestand gebruiken"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "schaduw"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "MD5-wachtwoorden gebruiken"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "NIS gebruiken"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "Gouden Gids"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Dit wachtwoord is te makkelijk (moet tenminste %d tekens lang zijn)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Authenticatie NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Gebruiker aanvaarden"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Gebruiker toevoegen"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s reeds toegevoegd)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3153,37 +3998,37 @@ msgstr ""
"Geef een gebruiker in\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Echte naam"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Gebruikersnaam"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Pictogram"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Dit wachtwoord is te simpel"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Geef een gebruikersnaam in"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -3191,24 +4036,51 @@ msgstr ""
"De gebruikersnaam mag slechts kleine (lowercase) letters, cijfers, `-' en`_' "
"bevatten"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Deze gebruikersnaam werd reeds toegevoegd"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Een bootdiskette zorgt ervoor dat u nog in uw Linux-systeem kan zonder\n"
+"afhankelijk te zijn van de normale bootloader. Dit is handig als u LILO\n"
+"(of grub) niet wil installeren op uw systeem, of als een ander "
+"besturingssysteem\n"
+"LILO verwijdert, of LILO werkt niet met uw hardware-configuratie.\n"
+"Een bootdiskette kan ook gebruikt worden met het Mandrake-reddings-image,\n"
+"waardoor het veel makkelijker wordt om te herstellen van grote systeem-\n"
+"fouten. Wil u nu een bootdiskette aanmaken voor uw systeem?\n"
+"Stop dan een diskette in het station en druk op \"OK\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Eerste diskettestation"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Tweede diskettestation"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Overslaan"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3230,66 +4102,32 @@ msgstr ""
"waardoor het veel makkelijker wordt om te herstellen van grote systeem-\n"
"fouten. Wil u nu een bootdiskette aanmaken voor uw systeem?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Sorry, geen diskettestation beschikbaar"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies het diskettestation waarmee u de boot-diskette wenst te maken"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Plaats een floppy in station %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Bezig met het aanmaken van de boot-diskette"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr ""
-"De installatie van LILO is niet gelukt. De volgende fout werd gevonden:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Wenst u SILO te gebruiken?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "SILO-opties"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Hier zijn de ingangen voor SILO.\n"
-"U kan er bijvoegen of de bestaande wijzigen."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partitie"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Deze naam wordt al gebruikt"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr ""
-"De installatie van SILO is niet gelukt. De volgende fout werd gevonden:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Bezig met klaarmaken van bootloader"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Wenst u aboot te gebruiken?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3297,136 +4135,128 @@ msgstr ""
"Fout bij het installeren van aboot,\n"
"toch proberen te installeren, zelfs als dat de eerste partitie vernietigt?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Proxy-configuratie"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP-proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP-proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy moet http://... zijn"
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy moet ftp://... zijn"
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"De installatie van de bootloader is mislukt. De volgende fout werd gevonden:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Welkom, krakers!"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Zeer laag"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Laag"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Medium"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Hoog"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanoОde"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Overige vragen"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(kan gegevenscorruptie veroorzaken)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Harde schijf-optimalisatie gebruiken?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Kies een veiligheids-niveau"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Juiste RAM-grootte (indien nodig) (%d MB gevonden)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automatische koppeling van verwijderbare media"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "/tmp opruimen bij elke boot"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "Meerdere profielen inschakelen"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Numlock inschakelen bij het opstarten"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Geef de RAM-grootte in MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Kan supermount niet gebruiken in hoog veiligheidsniveau"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX zal configuratiebestanden genereren voor XFree 3.3 en XFree 4.0.\n"
-"Standaard zal de 3.3 server gebruikt worden omdat deze op meer grafische\n"
-"kaarten werkt.\n"
-"\n"
-"Wenst u XFree 4.0 te proberen?"
+"let goed op: OP DIT LEVEL VAN VEILIGHEID, IS ROOT LOGIN OP HET CONSOLE\n"
+"NIET TOEGESTAAN! Als u root wilt zijn, moet u als een gebruiker inloggen,\n"
+"en dan \"su\" gebruiken. Algemener, verwacht niet uw computer voor iets\n"
+"anders te gebruiken dan als server.\n"
+"U bent gewaarschuwd."
+
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+"Let op, als u numlock aan heeft, worden veel toetsaanhalen als\n"
+"cijfers in plaats van normale letters weergegeven (bijv: `p' => `6')"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Proberen PCI-apparaten te vinden?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Bestaande configuratie gebruiken voor X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
-msgstr ""
+msgstr "Wilt u een auto installatie diskette voor Linux replicatie?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Plaats een lege floppy in station %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Bezig met aanmaken van auto-installatiediskette"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Sommige stappen zijn nog niet afgewerkt.\n"
-"\n"
-"Wil u nu echt afsluiten?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3438,165 +4268,20 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Gefeliciteerd, de installatie is compleet.\n"
-"Verwijder de opstartmedia en druk enter om te herstarten.\n"
-"\n"
-"Voor informatie over fixes die verkrijgbaar zijn voor deze release van\n"
-"Linux-Mandrake, consulteer de Errata die u kan vinden op\n"
-"http://www.linux-mandrake.com/.\n"
-"\n"
-"Informatie over de configuratie van uw systeem is verkrijgbaar in het\n"
-"\"Post install\" hoofdstuk in de officiele Linux-Mandrake gebruikers-\n"
-"handleiding."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Bezig met afsluiten"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Bezig met installeren van stuurprogramma voor %s kaart %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(module %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Welk %s stuurprogramma moet ik proberen?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"In sommige gevallen heeft het stuurprogramma van %s extra informatie nodig\n"
-"om juist te werken, alhoewel het meestal ook zonder goed werkt. Wil u\n"
-"extra opties invoeren of laat u liever het stuurprogramma zijn informatie\n"
-"zelf zoeken? Soms zal de automatische detectie de computer laten hangen,\n"
-"maar het zou geen schade mogen veroorzaken."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Automatisch Detecteren"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Geef opties"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "U mag nu de opties ingeven voor module %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U mag nu de opties voor module %s ingeven.\n"
-"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bijvoorbeeld, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Module-opties:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Het laden van module %s is niet gelukt.\n"
-"Wenst u opnieuw te proberen met andere parameters?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Proberen PCMCIA-kaarten te vinden?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Bezig met configureren van PCMCIA-kaarten..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Proberen %s-apparaten te vinden?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "%s %s interfaces gevonden"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Heeft u er nog ИИn?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Heeft u een %s interface?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nee"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Zie hardware-info"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Bezig met opstarten van het netwerk"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Bezig met stoppen van het netwerk"
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Installatie %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> tussen elementen | <Spatie> selecteert | <F12> volgend "
"scherm "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"U kan nu uw %s harde schijf partitioneren.\n"
-"Vergeet niet op te slaan met `w' wanneer u klaar bent."
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Even geduld"
@@ -3606,7 +4291,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Verwarring (%s), wees meer precies\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Slechte keuze, probeer nog eens\n"
@@ -3620,449 +4305,958 @@ msgstr " ? (standaard %s) "
msgid "Your choice? (default %s) "
msgstr "Uw keuze? (standaard %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Uw keuze? (standaard %s, geef `geen' voor geen)"
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tsjechisch"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Fins"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Noors"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Russisch"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "UK toetsenbord"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "US toetsenbord"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armeens (oud)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armeens (typmachine)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armeens (fonetisch)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "Azerbeidzjan (latin)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "Azerbeidzjan (cyrillisch"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgisch"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Braziliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:115
-#, fuzzy
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
-msgstr "Bulgaars"
+msgstr "Belarusiaans"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "Zwitsers (Duitse layout)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "Zwitsers (Franse layout)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Duits (geen dode toetsen)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvorak (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (Noorwegen)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Ests"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisch (\"Russische\" layout)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisch (\"Latin\" layout)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Kroatisch"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israelisch"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israelisch (Fonetisch)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "Iraans"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IJslands"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "Japans 106 toetsen"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latijns-Amerikaans"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuaans AZERTY (oud)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuaans AZERTY (nieuw)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuaans \"nummer-rij\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuaans \"fonetisch\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Pools (qwerty layout)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Pools (qwertz layout)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadees (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Russisch (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Zweeds"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovaaks"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Thai-toetsenbord"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (traditioneel \"F\"-model)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (modern \"Q\"-model)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "OekraОens"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "US toetsenbord (internationaal)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Vietnamese \"nummer-rij\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Yoegoslaafs (latin layout)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Sun - muis"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Standaard"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Algemeen"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "Wiel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "seriКel"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Algemene 2-knopsmuis"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Algemene 3-knopsmuis"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech-muis (seriКel, oud C7-type)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "bus muis"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2 knoppen"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3 knoppen"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "geen"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Geen muis"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "Volgende ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Is dit correct?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internet configuratie"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Wenst u nu te proberen een connectie te maken met Internet?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr ""
+"\n"
+"U kunt uw connectie herconfigureren"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "U bent op dit moment niet aangesloten op het Internet."
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
"\n"
-"To list the possible choices, press <TAB>.\n"
+"U kunt verbinding maken met het Internet of uw connectie herconfigureren"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "ISDN Configuratie"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Selecteer uw provider.\n"
+" Als uw provider niet in de lijst staat, kiest u Unlisted"
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Connectie configuratie"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "Selecteer of vul onderstaand veld a.u.b. in"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ van de kaart"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "Mem (DMA) van de kaart"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO van de kaart"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 van de kaart"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 van de kaart"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Uw persoonlijke telefoonnummer"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Naam van uw provider (bijv. provider.nl)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Telefoonnummer van uw provider"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "DNS 1 van uw provider"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "DNS 2 van uw provider"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "Inbel mode"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Account Login (gebruikers-naam)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "Wachtwoord"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Bevestig Wachtwoord"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "De rest van de wereld"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "De rest van de wereld - geen D-Channel (geleasde lijnen)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Welk protocol wenst u te gebruiken?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Ik weet het niet"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Welk type kaart heeft u?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Verder"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Annuleren"
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"Welkom bij LILO - Kies uw besturingssysteem!\n"
"\n"
-"Om de mogelijke keuzes te tonen, druk <TAB>.\n"
+"Als u een ISA kaart bezit, zouden de waardes op het volgende scherm moeten "
+"kloppen.\n"
"\n"
-"Om een keuze te laden, voer de naam in en druk <ENTER>\n"
-"of wacht %d seconden voor de standaard-bootkeuze.\n"
+"Als u een PCMCIA kaart bezit, moet u het irq en io van uw kaart weten.\n"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Welkom bij GRUB - Kies uw besturingssysteem!"
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Welke is uw ISDN kaart?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Gebruik de %c en %c-toetsen om te aangeduide ingang te selecteren."
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Ik heb een ISDN kaart gevonden:\n"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Druk Enter om het geselecteerde besturingssysteem te booten, druk 'e'"
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Ik heb een ISDN PCI kaart gevonden, maar ik ken het merk niet. Selecteer "
+"a.u.b. een PCI kaart op het volgende scherm."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr " om de ingang eerst te bewerken, of 'c' voor een command-line."
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Geen ISDN PCI kaart gevonden. Selecteer a.u.b. uw kaart op het volgende "
+"scherm."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-"De aangeduide ingang zal automatisch gestart worden binnen %d seconden."
+"Er is geen ethernet netwerk adapter op uw systeem gevonden.\n"
+"Ik kan dit type connectie niet opzetten."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Kies de netwerk interface"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Kies a.u.b. met welke netwerkkaart u met het Internet wilt verbinden"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "Netwerk Interface"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr ""
+"Ik sta op het punt het netwerk apparaat $device te herstarten. Is dit OK?"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Start Menu"
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "ADSL Configuratie"
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Sun - muis"
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Wenst u bij aboot uw connectie te starten?"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Apple ADB-muis"
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Proberen een modem te vinden?"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Apple ADB-muis (2 knoppen)"
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Met welke seriКle poort is uw modem verbonden?"
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Apple ADB-muis (3 knoppen of meer)"
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Inbel-opties"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Apple USB-muis"
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Verbindingsnaam"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Apple USB-muis (2 knoppen)"
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Telefoonnummer"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Apple USB-muis (3 knoppen of meer)"
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Aanmeldingsnaam"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Algemene muis (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Authenticatie"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Algemene 3-knopsmuis (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Gebaseerd op een script"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Gebaseerd op een terminal"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domeinnaam"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Eerste DNS-server"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Tweede DNS-server"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:582
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr ""
+"\n"
+"U kunt verbinding maken met het Internet of uw connectie herconfigureren"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr ""
+"\n"
+"U kunt uw connectie herconfigureren"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "U bent op dit moment niet aangesloten op het Internet."
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"U kunt nu de verbrinding verbreken of uw connectie herconfigureren."
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Busmuis"
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "U bent op dit moment aangesloten op het Internet."
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Busmuis"
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "Verbind met het Internet"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Busmuis"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "Verbreek verbinding met het Internet"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "USB-muis"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Configureer uw Internet connectie"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "USB-muis (3 knoppen of meer)"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internet verbinding & configuratie"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Geen muis"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+"Ik ga het netwerk apparaat $netc->{NET_DEVICE} herstarten. Is dit goed?"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A of hoger (seriКel)"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Configureer uw Internet connectie"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (seriКel)"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Configureer uw Internet connectie"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (seriКel)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "Interne ISDN kaart"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (seriКel)"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "Extern ISDN modem"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (seriКel)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "Verbinden met het Internet"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (seriКel)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Wat voor een ISDN connectie heeft u?"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (seriКel)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Configureer uw Internet connectie"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (seriКel)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Frankrijk"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech-muis (seriКel, oud C7-type)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Andere landen"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (seriКel)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "In welk land bent u nu?"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Algemene Muis (seriКel)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Alcatel modem"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Microsoft-compatibel (seriКel)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "ECI modem"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Algemene 3-knopsmuis (seriКeel)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Als uw adsl modem een Alcatel is, kiest u Alcatel. Anders kiest u ECI."
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (seriКel)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "gebruik pppoe"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Is dit correct?"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "gebruik geen pppoe"
-#: ../../partition_table.pm_.c:528
-msgid "Extended partition not supported on this platform"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"De meest gebruikte manier om te verbinden met adsl is met\n"
+"dhcp + pppoe. Niettemin, het komt voor dat een verbinding\n"
+"alleen dhcp gebruiken.\n"
+"Als u het niet weet, kiest u 'gebruik pppoe'"
+
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Configureer uw Internet connectie"
+
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"Welke dhcp client wenst u te gebruiken?\n"
+"Standaard is dit dhcpd"
+
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "Netwerk-configuratie"
+
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Configureer locaal netwerk"
+
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "Netwerk-configuratie"
+
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Wenst u de configuraties te testen?"
+
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "Networking uitschakelen"
+
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Verbinding maken met het Internet / Configureer locaal netwerk"
+
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"Het locale netwerk is reeds geconfigureerd.\n"
+"Wilt u:"
+
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Hoe wenst u verbindingte maken met het Internet?"
+
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Netwerk-configuratie"
+
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Nu uw Internet connectie geconfigureerd is,\n"
+"kan uw computer geconfigureerd worden om zijn Internet connectie\n"
+"te delen. Opmerking: u heeft een Netwerk Adapter nodig om een Local Area\n"
+"op te zetten.\n"
+"\n"
+"Wilt u Internet Connectie Delen nu instellen?\n"
+
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "Geen netwerkkaart gevonden"
+
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Bezig met configureren van netwerk"
+
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Gelieve uw hostnaam in te voeren als u deze kent.\n"
+"Sommige DHCP servers hebben de hostnaam nodig om te werken.\n"
+"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
+"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
+
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Host naam:"
+
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"WAARSCHUWING: Dit apparaat is al geconfigureerd om verbinding te maken met "
+"Internet.\n"
+"Druk gewoon op OK om deze configuratie te behouden.\n"
+"Als u de onderstaande velden aanpast, wordt het apparaat opnieuw "
+"geconfigureerd"
+
+#: ../../network.pm_.c:302
+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 ""
+"Gelieve de IP-configuratie voor deze machine in te geven.\n"
+"Elke ingang moet ingegeven worden als een IP adres in `dotted-decimal'-\n"
+"vorm (bijvoorbeeld 1.2.3.4)."
+
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Bezig met configureren van netwerk-apparaat %s"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatisch IP"
+
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "IP adres"
+
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Netmasker"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(BootP/DHCP)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Het IP-adres moet het formaat 1.2.3.4 hebben"
+
+#: ../../network.pm_.c:341
+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 ""
+"Gelieve uw hostnaam in te voeren.\n"
+"Het moet een volledige hostnaam zijn, zoals ``mybox.mylab.myco.com''.\n"
+"U mag ook het IP-adres van de gateway invoeren als u er een heeft."
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "DNS server"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Gateway apparaat"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Configuratie van proxie(s)"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP-proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP-proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy moet http://... zijn"
-#: ../../partition_table.pm_.c:546
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy moet ftp://... zijn"
+
+#: ../../partition_table.pm_.c:540
+msgid "Extended partition not supported on this platform"
+msgstr "Extended partitie niet ondersteund op dit platform"
+
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4072,21 +5266,21 @@ msgstr ""
"De enige oplossing is om uw primaire partitie te verplaatsen zodat het gat "
"naast de extended partitie komt te liggen"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Fout bij het lezen van bestand %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Het herstellen van bestand %s is niet gelukt: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Slechte reservekopie"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Fout bij het schrijven naar bestand %s"
@@ -4120,42 +5314,51 @@ msgstr "interessant"
msgid "maybe"
msgstr "misschien"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (belangrijk)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (heel leuk)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (leuk)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Minder tonen"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Meer tonen"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Lokale printer"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "lpd op afstand"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Netwerk printer"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Netwerk CUPS server"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Lpd server op netwerk"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Netwerk printer (socket)"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Printerapparaat URI"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Bezig met het detecteren van apparaten..."
@@ -4169,11 +5372,11 @@ msgstr "Poorten testen"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Een printer, model \"%s\", werd gedetecteerd op"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Lokale Printer"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4181,15 +5384,15 @@ msgstr ""
"Met welke poort is uw printer verbonden \n"
"(/dev/lp0 is equivalent met LPT1:) ?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Printerapparaat:"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "lpd op afstand - Printer-opties"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4199,19 +5402,19 @@ msgstr ""
"hostnaam van de printerserver en de wachtrij-naam op die\n"
"server invoeren."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Hostnaam op afstand:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Wachtrij op afstand:"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Printer-opties"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4224,27 +5427,27 @@ msgstr ""
"en mogelijk het IP-adres van de server, alsook de sharenaam van de\n"
"printer en indien nodig een gebruikersnaam, wachtwoord en werkgroep."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB-server host"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB-server IP"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Share-naam"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Werkgroep"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare Printer-Opties"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4255,130 +5458,154 @@ msgstr ""
"servernaam opgeven (Deze kan verschillen van de TCP/IP hostnaam!) en ook\n"
"de printerwachtrij en indien nodig een gebruikersnaam en wachtwoord."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Naam van de printerwachtrij"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Socket Printer opties"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"Om naar een socket printer te printen, moet u de host- \n"
+"naam van de printer en optioneel het poortnummer geven."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Printer Hostnaam"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Poort"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "U kunt de URI invoeren om de printer met CUPS te benaderen"
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Welk type printer heeft u?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Wenst u de printer-configuratie te testen?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Bezig met afdrukken van testpagina(s)..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Testpagina(s) werd(en) naar de printer-daemon gestuurd.\n"
+"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
+"Print-status:\n"
+"%s\n"
+"\n"
+"Werkt het afdrukken naar behoren?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Testpagina's) werd(en) naar de printer-daemon gestuurd.\n"
+"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
+"Werkt het afdrukken naar behoren?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Ja, print een ASCII testpagina"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Ja, print een PostScript testpagina"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Ja, print beide testpagina's"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Printer configureren"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Welk type printer heeft u?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Printer-opties"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Papiergrootte"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Pagina uitwerpen na job?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint stuurprogramma-opties"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Kleurdiepte-opties"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Text afdrukken als PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Pagina-volgorde omdraaien"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Getrapte tekst repareren?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Aantal pagina's per uitvoerpagina's"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Linker/Rechtermarges in punten (1/72 inch)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Boven/Ondermarges in punten (1/72 inch)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Extra GhostScript opties"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Extra tekst-opties"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Wenst u de printer-configuratie te testen?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Bezig met afdrukken van testpagina(s)..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Testpagina(s) werd(en) naar de printer-daemon gestuurd.\n"
-"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-"Print-status:\n"
-"%s\n"
-"\n"
-"Werkt het afdrukken naar behoren?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Testpagina's) werd(en) naar de printer-daemon gestuurd.\n"
-"Het kan even duren voordat het eigenlijke afdrukken begint.\n"
-"Werkt het afdrukken naar behoren?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Wenst u een printer in te stellen?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4386,19 +5613,66 @@ msgstr ""
"Hier zijn de printerwachtrijen.\n"
"U kan er bijvoegen of de bestaande wijzigen."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "Bezig met starten van CUPS"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "Bezig met lezen van CUPS drivers database..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Selecteer Printer-verbinding"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Hoe is de printer verbonden?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Selecteer Netwerk Printerverbinding"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Met een netwerk CUPS server, hoeft u hier een printer te\n"
+"configureren; printers zullen automatisch gedetecteerd worden.\n"
+"Als u twijfelt, selecteert u \"Remote CUPS server\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Wachtrij verwijderen:"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Elke printer heeft een naam nodig (bijv. lp).\n"
+"Andere parameters zoals de beschrijving van de printer en zijn locatie\n"
+"kunnen aangegeven worden. Welke naam moet voor deze printer gebruikt worden\n"
+"en hoe is de printer aangesloten?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Naam van de printer"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Beschrijving"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Locatie"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4410,45 +5684,45 @@ msgstr ""
"directory moeten gebruikt worden voor deze wachtrij, en hoe is de printer "
"verbonden?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Naam van de wachtrij:"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Spool-directory:"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "Selecteer Printer-verbinding"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan geen partitie toevoegen aan een _geformatteerde_ RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Kan niet schrijven naar bestand $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid-fout!"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid-fout! (misschien ontbreken de raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Niet genoeg partities voor RAID-niveau %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, een periodieke commando-planner."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4458,7 +5732,7 @@ msgstr ""
"Het kan ook gebruikt worden om de machine uit te schakelen als het "
"spanningsniveau van de batterij laag is."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4467,7 +5741,7 @@ msgstr ""
"werd opgegeven als at werd gestart, en draait batch-commando's wanneer het "
"load-average laag genoeg is."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4480,7 +5754,7 @@ msgstr ""
"aande basis UNIX-cron,\n"
"waaronder betere veiligheid en krachtigere configuratieopties."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4492,7 +5766,7 @@ msgstr ""
"toe,\n"
"en biedt ook ondersteuning voor pop-up menu's op de console."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4500,7 +5774,7 @@ msgstr ""
"Apache is een World Wide Web-server. Het wordt gebruikt om HTML files\n"
"aan te bieden, en CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4515,7 +5789,7 @@ msgstr ""
"uitschakelt,\n"
"schakelt u alle diensten uit waar de daemon verantwoordelijk voor is."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4526,7 +5800,7 @@ msgstr ""
"utility.\n"
"U laat dit best aanstaan voor de meeste machines."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4534,7 +5808,7 @@ msgstr ""
"lpd is de print-daemon, die nodig is om lpr goed te laten werken. Het is\n"
"voornamelijk een server die print-jobs naar printers stuurt en regelt."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4542,7 +5816,7 @@ msgstr ""
"named (BIND) is een Domain Name Server (DNS) die is gebruikt om hostnamen\n"
"naar IP-adressen om te zetten."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4550,7 +5824,7 @@ msgstr ""
"(Ont)koppelt alle Network File System (NFS), SMB (Lan Manager/Windows)\n"
"en NCP (NetWare) koppelpunten."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4558,7 +5832,7 @@ msgstr ""
"Activeert/Deactiveert alle netwerk-interfaces die geconfigureerd zijn\n"
"om bij het opstarten ingeschakeld te worden."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4569,7 +5843,7 @@ msgstr ""
"het\n"
"bestand /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4577,7 +5851,7 @@ msgstr ""
"NFS is een populair protocol voor bestandsdeling over TCP/IP-netwerken.\n"
"Deze dienst geeft u NFS-bestands'locking'-functionaliteit."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4590,7 +5864,7 @@ msgstr ""
"is\n"
"veilig om het geinstalleerd te hebben op machines die het niet nodig hebben."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4601,7 +5875,7 @@ msgstr ""
"zoals NFS en NIS. De portmap-server moet draaien op machines die fungeren\n"
"als servers voor protocols die het RPC-mechanisme gebruiken."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4609,7 +5883,7 @@ msgstr ""
"Postfix is een Mail Transport Agent, een programma dat post verplaatst\n"
"van de ene machine naar de andere."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4617,7 +5891,7 @@ msgstr ""
"Bewaart en herstelt de systeem-entropy pool voor betere generatie\n"
"van willekeurige cijfers."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4627,7 +5901,7 @@ msgstr ""
"protocol. RIP is vooral gebruikt op kleine netwerken, complexere routing-\n"
"protocols zijn nodig voor complexere netwerken."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4635,7 +5909,7 @@ msgstr ""
"Het rstat-protocol laat gebruikers op een netwerk de prestatie-cijfers\n"
"voor elke machine op dat netwerk op te vragen."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4643,7 +5917,7 @@ msgstr ""
"Het rusers-protocol laat gebruikers op een netwerk toe om de kijken wie er\n"
"ingelogd is op de andere machines op dat netwerk."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4652,7 +5926,7 @@ msgstr ""
"gebruikers die op een machine ingelogd zijn die de rwho daemon draait.\n"
"(vergelijkbaar met finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4662,59 +5936,221 @@ msgstr ""
"verscheidene systeem-logbestanden. Het is een goed idee syslog altijd te "
"draaien."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr "Dit opstartscript probeert modules te laden voor uw USB-muis."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr "Start en stopt de X Font Server bij opstarten en afsluiten."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Selecteer welke diensten automatisch gestart moeten worden bij het opstarten"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Welkom bij SILO - Kies uw besturingssysteem!\n"
-"\n"
-"Om de mogelijke keuzes te tonen, druk <TAB>.\n"
-"\n"
-"Om een keuze te laden, voer de naam in en druk <ENTER>\n"
-"of wacht %d seconden voor de standaard-bootkeuze.\n"
+"Ik kan uw partitietabel niet lezen, ze is te corrupt voor mij :-(\n"
+"Ik zal proberen door te gaan en de slechte partities te verwijderen"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "LILO/GRUB Configureren"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Boot-diskette aanmaken"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Diskette formatteren"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Keuze"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr ""
+"De installatie van LILO is niet gelukt. De volgende fout werd gevonden:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "Internet Connectie Delen staat aan"
+
+#: ../../standalone/drakgw_.c:104
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "De setup van Internet Connectie Delen is al uitgevoerd.\n"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "X Configureren"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "Internet Connectie Delen staat niet aan"
+
+#: ../../standalone/drakgw_.c:123
+#, fuzzy
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr "De setup van Internet Connectie Delen is al uitgevoerd.\n"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "De inhoud v/h Config bestand kon niet worden geОnterpreteerd."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "Internetverbinding delen"
+
+#: ../../standalone/drakgw_.c:152
+#, fuzzy
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Nu uw Internet connectie geconfigureerd is,\n"
+"kan uw computer geconfigureerd worden om zijn Internet connectie\n"
+"te delen. Opmerking: u heeft een Netwerk Adapter nodig om een Local Area\n"
+"op te zetten.\n"
+"\n"
+"Wilt u Internet Connectie Delen nu instellen?\n"
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Inbel mode"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Geen netwerk adapter op uw systeem!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Er is geen ethernet netwerk adapter op uw systeem gevonden. Start a.u.b het "
+"hardware configuratie programma."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Kies a.u.b. welke netwerkadapter verbinding zal maken met uw Local Area "
+"Network."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Waarschuwing, de netwerkadapter is al geconfigureerd.\n"
+"Wilt u deze herconfigureren?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+"Potentieel LAN adres conflict gevonden in de huidige config van\n"
+"$_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Firewall configuratie gedetecteerd!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Waarschuwing! Een bestaande firewall configuratie is gevonden. U kunt "
+"misschien na de installatie een handmatige aanpassing nodig hebben. Doorgaan?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Bezig met het configurenen v/d scripts, installeren v/d software, starten "
+"v/d servers..."
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "IDE-Configuratie"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Kon ipchains RPM niet met urpmi installeren."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Kon dhcp RPM niet met urpmi installeren."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Kon Linuxconf RPM niet met urpmi installeren"
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Kon bind RPM niet met urpmi installeren."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr "Kon caching-nameserver RPM niet met urpmi installeren."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Gefeliciteerd!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4779,23 +6215,31 @@ msgstr "Selecteer een veiligheids-niveau"
msgid "Choose the tool you want to use"
msgstr "Selecteer het programma dat u wenst te gebruiken"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Wat is uw toetsenbord-layout?"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "Verander Cd-Rom"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Welk type muis heeft u?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"Stop a.u.b. de Installatie Cd-Rom in uw Cd-Rom drive en druk daarna op OK.\n"
+"Als u deze niet heeft, drukt u op Annuleren om live upgrade te vermijden."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Niet in staat live upgrade te starten !!!\n"
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "Geen seriele USB gevonden\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Derde knop emuleren?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Met welke seriКle poort is uw muis verbonden?"
@@ -5008,1047 +6452,199 @@ msgstr "Bezig met zoeken naar leaves"
msgid "Finding leaves takes some time"
msgstr "Leaves zoeken vraagt wat tijd"
-#~ msgid "useless"
-#~ msgstr "zinloos"
-
-#~ msgid "garbage"
-#~ msgstr "prullen"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under Linux."
-#~ msgstr ""
-#~ "Sommige truetype-lettertypen van Windows zijn gevonden op uw computer.\n"
-#~ "Wenst u deze te gebruiken? Zorg ervoor dat u het recht hebt ze te gebruiken "
-#~ "onder Linux."
-
-#~ msgid "Recommended"
-#~ msgstr "Aanbevolen"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Kies \"Installeren\" als er geen vorige versies van Linux geОnstalleerd\n"
-#~ "zijn, of als u meerdere distributies of versies wenst te gebruiken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Upgrade\" als u een vorige versie van Mandrake Linux wenst te\n"
-#~ "upgraden: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 of 7.0 (Air)."
-
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Wenst u LILO te gebruiken?"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "U kan nu de pakketten selecteren die u wenst te installeren.\n"
-#~ "\n"
-#~ "\n"
-#~ "Eerst kan u groepen pakketten kiezen die u wens te installeren of te \n"
-#~ "upgraden. Daarna kan u meer pakketten kiezen naargelang de totale grootte\n"
-#~ "die u wenst te installeren.\n"
-#~ "\n"
-#~ "\n"
-#~ "Als u zich in expert-mode bevindt, kan u de pakketten individueel "
-#~ "selecteren.\n"
-#~ "Onthoud dat sommige pakketten andere pakketen nodig hebben om te werken.\n"
-#~ "Dit worden pakket-afhankelijkheden genoemd. De pakketten die u selecteert,\n"
-#~ "en de pakketten die ervoor nodig zijn zullen automatisch geselecteerd "
-#~ "worden.\n"
-#~ "Het is onmogelijk een pakket te installeren zonder alle afhankelijkheden\n"
-#~ "te installeren."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "LILO (de LInux LOader) kan Linux en ook andere besturingssystemen "
-#~ "opstarten.\n"
-#~ "Normaalgezien worden deze correct gedetecteerd gedurende de installatie.\n"
-#~ "Als u die van u niet ziet, kan u deze nu toevoegen.\n"
-#~ "\n"
-#~ "\n"
-#~ "Als u niet wil dat iedereen toegang heeft tot al deze systemen, kan u "
-#~ "debetreffende ingangen nu verwijderen. (een boot-diskette zal nodig zijn om "
-#~ "dit systeem alsnog op te starten)."
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Nu u de gewenste groepen heeft aangeduid, kiest u hoeveel \n"
-#~ "pakketten u wenst, gaande van minimaal tot volledige \n"
-#~ "installatie van elke geselecteerde groep."
-
-#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
-#~ msgstr ""
-#~ "U heeft %dMB nodig voor een volledige installatie van de geselecteerde "
-#~ "groepen.\n"
-#~ "U kan toch doorgaan, maar u zal niet alle pakketten kunnen verkrijgen"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Selecteer een andere CD voor installatie"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You will\n"
-#~ "be able to select the usage of your installed system as for \"Customized\"."
-#~ msgstr ""
-#~ "Selecteer:\n"
-#~ "\n"
-#~ " - Aanbevolen: Als u Linux nog nooit geОnstalleerd hebt.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Aangepast: Als u bekend bent met Linux. U zal voor het gebruik van het\n"
-#~ "systeem kunnen kiezen tussen normaal, ontwikkeling of server. Kies\n"
-#~ "\"Normaal\" voor een algemene installatie van uw computer. U kan\n"
-#~ "\"Ontwikkeling\" kiezen als u de computer voornamelijk zal gebruiken voor\n"
-#~ "software-ontwikkeling, of \"Server\" als u een server wenst te installeren\n"
-#~ "(voor post, afdrukken...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: Als u zich vlot een weg baant in GNU/Linux en een volledig aan\n"
-#~ "uw wensen aangepase installatie, is deze installatieklasse iets voor u.\n"
-#~ "Het zal volledig mogelijk zijn het gebruik van uw systeem te installeren,\n"
-#~ "zoals bij \"Aangepast\"."
-
-#~ msgid "Help"
-#~ msgstr "Hulp"
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Bezig met downloaden van cryptogragische pakketten"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "SCSI instellen"
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Welke taal wenst u?"
-
-#~ msgid "Which packages do you want to install"
-#~ msgstr "Welke pakketten wenst u te installeren?"
-
-#~ msgid "Local LAN"
-#~ msgstr "Lokaal LAN"
-
-#~ msgid "Dialup with modem"
-#~ msgstr "Inbellen met modem"
-
-#~ msgid "Local Printer Options"
-#~ msgstr "Lokale Printer-opties"
-
-#~ msgid "server"
-#~ msgstr "server"
-
-#~ msgid "expert"
-#~ msgstr "expert"
-
-#~ msgid "developer"
-#~ msgstr "ontwikkelaar"
-
-#~ msgid "beginner"
-#~ msgstr "beginner"
-
-#~ msgid "KB"
-#~ msgstr "KB"
-
-#~ msgid "Sig"
-#~ msgstr "Code"
-
-#~ msgid "error"
-#~ msgstr "fout"
-
-#~ msgid "couldn't open file"
-#~ msgstr "kan bestand niet openen"
-
-#~ msgid "could not read lead bytes"
-#~ msgstr "kan eerste bytes niet lezen"
-
-#~ msgid "file version doesn't support signatures"
-#~ msgstr "Bestandsversie ondersteunt geen handtekeningen"
-
-#~ msgid "could not read signature block"
-#~ msgstr "kan inhoud handtekening-blok niet lezen"
-
-#~ msgid "no signatures"
-#~ msgstr "geen handtekeningen"
-
-#~ msgid "error reading file"
-#~ msgstr "fout bij lezen bestand"
-
-#~ msgid "error writing temp file"
-#~ msgstr "fout bij schrijven van tijdelijk bestand"
-
-#~ msgid "size"
-#~ msgstr "grootte"
-
-#~ msgid "size does not match signature"
-#~ msgstr "grootte past niet bij handtekening"
-
-#~ msgid "md5"
-#~ msgstr "md5"
-
-#~ msgid "md5 sum does not match signature"
-#~ msgstr "som van md5 past niet bij handtekening"
-
-#~ msgid "pgp"
-#~ msgstr "pgp"
-
-#~ msgid "unknown"
-#~ msgstr "onbekend"
-
-#~ msgid "unknown signature test failed"
-#~ msgstr "testen van onbekende handtekening mislukt"
-
-#~ msgid "OK"
-#~ msgstr "OK"
-
-#~ msgid "Bad FTP server response"
-#~ msgstr "Slechte respons van FTP server"
-
-#~ msgid "FTP IO error"
-#~ msgstr "FTP IO fout"
-
-#~ msgid "FTP server timeout"
-#~ msgstr "FTP server timeout"
-
-#~ msgid "Unable to lookup FTP server host address"
-#~ msgstr "Kan host adres van FTP server niet vinden"
-
-#~ msgid "Unable to lookup FTP server host name"
-#~ msgstr "Kan host naam van FTP server niet vinden"
-
-#~ msgid "Failed to connect to FTP server"
-#~ msgstr "Kan geen verbinding maken met FTP server"
-
-#~ msgid "Failed to establish data connection to FTP server"
-#~ msgstr "Kan geen data verbinding met FTP server maken"
-
-#~ msgid "IO error to local file"
-#~ msgstr "IO fout bij lokaal bestand"
-
-#~ msgid "Error setting remote server to passive mode"
-#~ msgstr "Fout bij het in passive mode zetten van externe server"
-
-#~ msgid "File not found on server"
-#~ msgstr "Bestand niet gevonden op server"
-
-#~ msgid "FTP Unknown or unexpected error"
-#~ msgstr "FTP onbekend of onverwachte fout"
-
-#~ msgid "Unknown"
-#~ msgstr "Onbekend"
-
-#~ msgid "unknown/group"
-#~ msgstr "onbekende/groep"
-
-#~ msgid "no summary"
-#~ msgstr "geen samenvatting"
-
-#~ msgid "No description !"
-#~ msgstr "Geen beschrijving !"
-
-#~ msgid "unknown.host"
-#~ msgstr "onbekende.host"
-
-#~ msgid "geometry of main window"
-#~ msgstr "geometrie van hoofdvenster"
-
-#~ msgid "wxh+x+y"
-#~ msgstr "bxh+x+y"
-
-#~ msgid "ROOT"
-#~ msgstr "ROOT"
-
-#~ msgid "the file system root"
-#~ msgstr "de root van het bestandssysteem"
-
-#~ msgid "query packages"
-#~ msgstr "pakketinformatie bekijken"
-
-#~ msgid "packages are in files (rather than db)"
-#~ msgstr "pakketten zitten in bestanden (in plaats van de db)"
-
-#~ msgid "upgrade packages"
-#~ msgstr "pakketten opwaarderen"
-
-#~ msgid "verify packages"
-#~ msgstr "pakketten controleren"
-
-#~ msgid "check signatures"
-#~ msgstr "controleer handtekeningen"
-
-#~ msgid "Couldn't install %s"
-#~ msgstr "Kan %s niet installeren"
-
-#~ msgid "Couldn't upgrade %s"
-#~ msgstr "Kan %s niet opwaarderen"
-
-#~ msgid "You must give a package name to query"
-#~ msgstr "Geef een pakketnaam."
-
-#~ msgid "%s of %d packages failed."
-#~ msgstr "%s van de %d pakketten is/zijn mislukt."
-
-#~ msgid "Upgrading"
-#~ msgstr "Aan het opwaarderen"
-
-#~ msgid "error: cannot open file %s"
-#~ msgstr "fout: kan bestand %s niet openen"
-
-#~ msgid " requires "
-#~ msgstr " vereist "
-
-#~ msgid " conflicts with "
-#~ msgstr " botst met "
-
-#~ msgid "Dependency Problems"
-#~ msgstr "Afhankelijkheidsproblemen"
-
-#~ msgid "The following dependency problems occured:"
-#~ msgstr "De volgende afhankelijkheidsproblemen deden zich voor:"
-
-#~ msgid ""
-#~ "Do you want to ignore these problems?\n"
-#~ "(saying yes may make your system unstable)"
-#~ msgstr ""
-#~ "Wilt u deze problemen negeren?\n"
-#~ "(bevestigen kan uw systeem instabiel maken)"
-
-#~ msgid "Installation Problems"
-#~ msgstr "Installatie Problemen"
-
-#~ msgid "The following installation problems occured:"
-#~ msgstr "De volgende installatie problemen deden zich voor:"
-
-#~ msgid "Dependency check failed."
-#~ msgstr "Controle afhankelijkheid mislukt"
-
-#~ msgid "Continue Removal"
-#~ msgstr "Doorgaan met verwijderen"
-
-#~ msgid "Remove the following packages?"
-#~ msgstr "De volgende pakketten verwijderen?"
-
-#~ msgid "Gnome RPM"
-#~ msgstr "Gnome RPM"
-
-#~ msgid "Packages Selected: 0"
-#~ msgstr "Geselecteerde pakketten: 0"
-
-#~ msgid "Packages selected: %d"
-#~ msgstr "Geselecteerde pakketten: %d"
-
-#~ msgid "_Query..."
-#~ msgstr "_Informatie..."
-
-#~ msgid "Get information about the selected packages"
-#~ msgstr "Informatie over de geselecteerde pakketten"
-
-#~ msgid "_Uninstall"
-#~ msgstr "_Deinstalleren"
-
-#~ msgid "Uninstall the selected packages"
-#~ msgstr "DeОnstalleer de geselecteerde pakketten"
-
-#~ msgid "_Verify"
-#~ msgstr "_Controleren"
-
-#~ msgid "Verify the selected packages"
-#~ msgstr "Controleer de geselecteerde pakketten"
-
-#~ msgid "_Create desktop entry..."
-#~ msgstr "_Maak een snelkoppeling op het bureaublad..."
-
-#~ msgid "Create desktop entries (for panel) for the selected packages"
-#~ msgstr "Maak snelkoppeling in de taakbalk voor de geselecteerde pakketten"
-
-#~ msgid "Quit GnoRPM"
-#~ msgstr "Verlaat GnoRPM"
-
-#~ msgid "_Quit"
-#~ msgstr "_Afsluiten"
-
-#~ msgid "_Find..."
-#~ msgstr "_Zoek..."
-
-#~ msgid "Search RPM database for packages"
-#~ msgstr "Zoek in RPM database naar pakketten"
-
-#~ msgid "Web find..."
-#~ msgstr "Zoek op het web..."
-
-#~ msgid "Find packages on the web with rpmfind"
-#~ msgstr "Zoek pakketten op het web met rpmfind"
-
-#~ msgid "_Install..."
-#~ msgstr "_Installeren..."
-
-#~ msgid "Install some new packages"
-#~ msgstr "Installeer enkele nieuwe pakketten"
-
-#~ msgid "_Preferences..."
-#~ msgstr "_Voorkeuren..."
-
-#~ msgid "Alter GnoRPM's preferences"
-#~ msgstr "GnoRPM's voorkeuren aanpassen"
-
-#~ msgid "Bring up the about box"
-#~ msgstr "Open het informatievenster"
-
-#~ msgid "_About..."
-#~ msgstr "_Info..."
-
-#~ msgid "_Packages"
-#~ msgstr "_Pakketten"
-
-#~ msgid "_Operations"
-#~ msgstr "_Acties"
-
-#~ msgid "_Help"
-#~ msgstr "_Help"
-
-#~ msgid "Unselect"
-#~ msgstr "Deselecteer"
-
-#~ msgid "Unselect all packages"
-#~ msgstr "Deselecteer alle pakketten"
-
-#~ msgid "Uninstall selected packages"
-#~ msgstr "DeОnstalleer geselecteerde pakketten"
-
-#~ msgid "Query selected packages"
-#~ msgstr "Bekijk informatie van geselecteerde pakketten"
-
-#~ msgid "Verify"
-#~ msgstr "Controleer"
-
-#~ msgid "Verify selected packages"
-#~ msgstr "Controleer geselecteerde pakketten"
-
-#~ msgid "Find"
-#~ msgstr "Zoek"
-
-#~ msgid "Find packages"
-#~ msgstr "Zoek pakketten"
-
-#~ msgid "Web find"
-#~ msgstr "Zoek op het web"
-
-#~ msgid "About GnoRPM"
-#~ msgstr "Informatie over GnoRPM"
-
-#~ msgid ""
-#~ "May be distributed under the terms of the GPL2\n"
-#~ "This program uses rpmlib, written by Red Hat"
-#~ msgstr ""
-#~ "Mag gedistribueerd worden onder de voorwaarden van de GPL2\n"
-#~ "Dit programma gebruikt rpmlib, geschreven door Red Hat"
-
-#~ msgid "Install of %d packages failed."
-#~ msgstr "Installatie van %d pakketten mislukt."
-
-#~ msgid "Upgrade of %d packages failed."
-#~ msgstr "Opwaarderen van %d pakketten mislukt."
-
-#~ msgid "Rpmfind"
-#~ msgstr "Rpmfind"
-
-#~ msgid "_Query"
-#~ msgstr "_Informatie"
-
-#~ msgid "Desktop Entry Editor"
-#~ msgstr "Bureaubladsnelkoppeling editor"
-
-#~ msgid "Save Desktop Entry"
-#~ msgstr "Bewaar Bureaubladsnelkoppeling"
-
-#~ msgid "/contain file"
-#~ msgstr "/bevat bestand"
-
-#~ msgid "/are in the group"
-#~ msgstr "/zijn in de groep"
-
-#~ msgid "/provide"
-#~ msgstr "/voorzien"
-
-#~ msgid "/require"
-#~ msgstr "/vereisen"
-
-#~ msgid "/conflict with"
-#~ msgstr "/botst met"
-
-#~ msgid "/match label"
-#~ msgstr "/past bij label"
-
-#~ msgid "/are triggered by"
-#~ msgstr "/worden aangezwengeld door"
-
-#~ msgid "Name"
-#~ msgstr "Naam"
-
-#~ msgid "/All but installed packages"
-#~ msgstr "/Alles behalve geОnstalleerde pakketten"
-
-#~ msgid "/Only uninstalled packages"
-#~ msgstr "/Alleen gedeОnstalleerde pakketten"
-
-#~ msgid "/Only newer packages"
-#~ msgstr "/Alleen nieuwere pakketten"
-
-#~ msgid "/Uninstalled or newer packages"
-#~ msgstr "/GedeОnstalleerde of nieuwere pakketten"
-
-#~ msgid "Filter:"
-#~ msgstr "Filteren:"
-
-#~ msgid "Packages"
-#~ msgstr "Pakketten"
-
-#~ msgid ""
-#~ "Select\n"
-#~ "All"
-#~ msgstr ""
-#~ "Selecteer\n"
-#~ "Alles"
-
-#~ msgid ""
-#~ "Unselect\n"
-#~ "All"
-#~ msgstr ""
-#~ "Deselecteer\n"
-#~ "Alles"
-
-#~ msgid "Check Sig"
-#~ msgstr "Controleer Code"
-
-#~ msgid "Can't open file %s"
-#~ msgstr "Kan bestand %s niet openen"
-
-#~ msgid "%s doesn't appear to be a RPM package"
-#~ msgstr "%s lijkt geen RPM pakket te zijn"
-
-#~ msgid "Add Packages"
-#~ msgstr "Pakketten Toevoegen"
-
-#~ msgid "Close"
-#~ msgstr "Sluiten"
-
-#~ msgid "Package Info"
-#~ msgstr "Pakket informatie"
-
-#~ msgid "Version"
-#~ msgstr "Versie"
-
-#~ msgid "Release"
-#~ msgstr "Uitgave"
-
-#~ msgid "Summary"
-#~ msgstr "Samenvatting"
-
-#~ msgid "Remaining"
-#~ msgstr "Overgebleven"
-
-#~ msgid "Total"
-#~ msgstr "Totaal"
-
-#~ msgid "Size"
-#~ msgstr "Grootte"
-
-#~ msgid "Time"
-#~ msgstr "Tijd"
-
-#~ msgid "No dependency checks"
-#~ msgstr "Geen controle van afhankelijkheid"
-
-#~ msgid "Do not check for dependencies on other rpms. Equivalent to --nodeps"
-#~ msgstr ""
-#~ "Controleer niet op afhankelijkheid van andere rpm's. Gelijk aan --nodeps"
-
-#~ msgid "No reordering"
-#~ msgstr "Geen herordening"
-
-#~ msgid ""
-#~ "Do not reorder package installation to satisfy dependencies. Equivalent to "
-#~ "--noorder"
-#~ msgstr ""
-#~ "Installatie van pakket niet herordenen om aan afhankelijkheden te voldoen. "
-#~ "Gelijk aan --noorder."
-
-#~ msgid "Don't run scripts"
-#~ msgstr "Geen scripts uitvoeren"
-
-#~ msgid ""
-#~ "Do not run the pre and post install scripts. Equivalent to --noscripts."
-#~ msgstr ""
-#~ "De scripts voor en na installatie niet uitvoeren. Gelijk aan --noscripts."
-
-#~ msgid ""
-#~ "Replace packages with a new copy of itself. Equivalent to --replacepkgs."
-#~ msgstr "Vervang pakketten met een niewere versie. Gelijk aan --replacepkgs."
-
-#~ msgid "Allow replacement of files"
-#~ msgstr "Vervangen van bestanden toestaan"
-
-#~ msgid ""
-#~ "Replace files owned by another package. Equivalent to --replacefiles."
-#~ msgstr ""
-#~ "Vervang bestanden toebehorend aan een ander pakket. Gelijk aan "
-#~ "--replacefiles."
-
-#~ msgid "Allow upgrade to old version"
-#~ msgstr "Opwaarderen naar oudere versie toestaan"
-
-#~ msgid ""
-#~ "Upgrade packages to an older package if need be. Equivalent to --oldpackage"
-#~ msgstr ""
-#~ "Pakketten opwaarderen naar een ouder pakket wanneer nodig. Gelijk aan "
-#~ "--oldpackage."
-
-#~ msgid "Keep packages made obsolete"
-#~ msgstr "Behoud verouderde pakketten"
-
-#~ msgid "If a package has been obsoleted, keep it anyway."
-#~ msgstr "Een pakket behouden, ook al is het verouderd."
-
-#~ msgid "Don't install documentation"
-#~ msgstr "Geen documentatie installeren"
-
-#~ msgid "Do not install any of the doc files. Equivalent to --excludedocs."
-#~ msgstr "Geen van de doc bestanden installeren. Gelijk aan --excludedocs."
-
-#~ msgid "Install all files"
-#~ msgstr "Installeer alle bestanden"
-
-#~ msgid "Just update database"
-#~ msgstr "Alleen database opwaarderen"
-
-#~ msgid ""
-#~ "Do not change any files, just update the database as though you did. "
-#~ "Equivalent to --justdb"
-#~ msgstr ""
-#~ "Geen bestanden veranderen, alleen de database opwaarderen zoals u het zou "
-#~ "doen. Gelijk aan --justdb."
-
-#~ msgid "Just test"
-#~ msgstr "Alleen testen"
-
-#~ msgid "Do not actually change anything, just test. Equivalent to --test"
-#~ msgstr "Niets veranderen, alleen testen. Gelijk aan --test."
-
-#~ msgid "Don't check package architecture"
-#~ msgstr "Pakket architectuur niet controleren"
-
-#~ msgid ""
-#~ "Do not check the system and rpm architectures. Equivalent to --ignorearch"
-#~ msgstr ""
-#~ "De systeem en rpm architectuur niet controleren. Gelijk aan --ignoresearch."
-
-#~ msgid "Don't check package OS"
-#~ msgstr "Besturingssysteem van pakket niet controleren"
-
-#~ msgid "Do not check the package OS field. Equivalent to --ignoreos"
-#~ msgstr ""
-#~ "Veld met besturingssysteem van pakket niet controleren. Gelijk aan "
-#~ "--ignoreos."
-
-#~ msgid "Rating"
-#~ msgstr "Prioriteit"
-
-#~ msgid "mirror"
-#~ msgstr "mirror"
-
-#~ msgid "Preferences"
-#~ msgstr "Voorkeuren"
-
-#~ msgid "Other Options"
-#~ msgstr "Andere Opties"
-
-#~ msgid "Database Options"
-#~ msgstr "Database Opties"
-
-#~ msgid "Architecture Options"
-#~ msgstr "Architectuur Opties"
-
-#~ msgid "Behaviour"
-#~ msgstr "Gedrag"
-
-#~ msgid "Package Listing"
-#~ msgstr "Lijst van Pakketten"
-
-#~ msgid "View as list"
-#~ msgstr "Weergeven als lijst"
-
-#~ msgid "Display packages in a list format"
-#~ msgstr "Pakketten weergeven in lijst formaat"
-
-#~ msgid "View as icons"
-#~ msgstr "Weergeven als pictogrammen"
-
-#~ msgid "Display packages as icons in package list"
-#~ msgstr "Pakketten weergeven als pictogrammen in pakketlijst"
-
-#~ msgid "Package Colours"
-#~ msgstr "Pakket Kleuren"
-
-#~ msgid "Older Colour:"
-#~ msgstr "Oude Kleur:"
-
-#~ msgid ""
-#~ "Set the colour used to highlight packages older than the installed version"
-#~ msgstr ""
-#~ "Geef de kleur om pakketten weer te geven die ouder zijn dan de "
-#~ "geОnstalleerde versie"
-
-#~ msgid "Current Colour:"
-#~ msgstr "Huidige Kleur:"
-
-#~ msgid ""
-#~ "Set the colour used to highlight packages that are same as the installed "
-#~ "version"
-#~ msgstr ""
-#~ "Geef de kleur om pakketten weer te geven die gelijk zijn aan de "
-#~ "geОnstalleerde versie."
-
-#~ msgid "Newer Colour:"
-#~ msgstr "Nieuwe Kleur:"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
-#~ msgid ""
-#~ "Set the colour used to highlight packages newer than the installed version"
-#~ msgstr ""
-#~ "Geef de kleur om pakketten weer te geven die nieuwer zijn dan de "
-#~ "geОnstalleerde versie"
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
-#~ msgid "Default File Selection Dialog Path"
-#~ msgstr "Standaard Bestandsselectie Dialoog Pad"
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
-#~ msgid "The default directory where the file selection dialog points at"
-#~ msgstr "De standaard map waar de bestandsselectie dialoog naar verwijst"
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
-#~ msgid "RPM Directories"
-#~ msgstr "RPM Mappen"
+#, fuzzy
+msgid "Internet Tools"
+msgstr "╦щБуЮщуБ"
-#~ msgid "Newline separated list of directories where RPMs may be stored"
-#~ msgstr "Lijst van mappen waarin RPM bestanden opgeslagen kunnen worden"
+msgid "Internet"
+msgstr "╦щБуЮщуБ"
-#~ msgid "Install Window"
-#~ msgstr "Installatie Venster"
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
-#~ msgid "Network Settings"
-#~ msgstr "Netwerk Instellingen"
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
-#~ msgid "HTTP Proxy:"
-#~ msgstr "HTTP Proxy:"
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
-#~ msgid "Format: http://proxyhost:port/"
-#~ msgstr "Formaat: http://proxyhost:poort/"
+#, fuzzy
+msgid "Office"
+msgstr "leuk"
-#~ msgid "FTP Proxy:"
-#~ msgstr "FTP Proxy:"
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
-#~ msgid "Proxy User:"
-#~ msgstr "Proxy Gebruiker:"
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
-#~ msgid "The user name to send to the proxy server"
-#~ msgstr "De gebruikersnaam om naar de proxy server te sturen"
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "╪ЦшьэутьЬп"
-#~ msgid "Proxy Password:"
-#~ msgstr "Proxy Wachtwoord:"
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
-#~ msgid "Your password will be not securely stored!"
-#~ msgstr "Uw wachtwoord wordt niet veilig opgeslagen!"
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
-#~ msgid "Cache expire:"
-#~ msgstr "Verlopen cache:"
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
-#~ msgid "The number of days til a downloaded file expires"
-#~ msgstr "Het aantal dagen voordat een opgehaald bestand verloopt"
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
-#~ msgid "days"
-#~ msgstr "dagen"
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
-#~ msgid "Local Hostname:"
-#~ msgstr "Naam Lokale Host:"
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
-#~ msgid "The hostname of the computer -- used to guess distances to mirrors"
-#~ msgstr ""
-#~ "De hostname van de computer -- gebruikt om de afstand tot mirrors te bepalen"
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
-#~ msgid "Network"
-#~ msgstr "Netwerk"
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
-#~ msgid "Rpmfind Options"
-#~ msgstr "Rpmfind Opties"
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
-#~ msgid "Metadata Server:"
-#~ msgstr "Metadata Server:"
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
-#~ msgid "The server used to download metadata from"
-#~ msgstr "De server die gebruikt word om metadata van te downloaden"
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "╪ЦшьэутьЬп"
-#~ msgid "Download dir:"
-#~ msgstr "Download map:"
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
-#~ msgid "The directory to place downloaded RPMs in"
-#~ msgstr "De map om de op te halen RPM bestanden in te plaatsen"
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
-#~ msgid "Vendor:"
-#~ msgstr "Leverancier:"
+msgid "Multimedia"
+msgstr "╪ЦшьэутьЬп"
-#~ msgid "The vendor of your distribution (used to sort package alternates)"
-#~ msgstr ""
-#~ "De leverancier van uw distributie (gebruikt om pakketten te sorteren)"
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
-#~ msgid "Distrib:"
-#~ msgstr "Distributie:"
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "╪ЦшьэутьЬп"
-#~ msgid "The name of your distribution (used to sort package alternates)"
-#~ msgstr "De naam van uw distributie (gebruikt om pakketten te sorteren)"
+#, fuzzy
+msgid "Gnome"
+msgstr "geen"
-#~ msgid "Want sources"
-#~ msgstr "Ik wil sources"
+#, fuzzy
+msgid "Documentation"
+msgstr "Authenticatie"
-#~ msgid ""
-#~ "Check this if you want to download source rather than binary packages"
-#~ msgstr "Als u liever de source dan de binary pakketten wil downloaden."
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
-#~ msgid "Want latest version"
-#~ msgstr "Ik wil de laatste versie"
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
-#~ msgid ""
-#~ "Check this if you want the latest version rather than the most compatible "
-#~ "version of a package"
-#~ msgstr ""
-#~ "Als u liever de laatste versie van het pakket wil dan de versie die het "
-#~ "meest compatible is."
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
-#~ msgid "No Upgrade List:"
-#~ msgstr "Geen Opwaardeer Lijst:"
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "╪ЦшьэутьЬп"
-#~ msgid "A newline separated list of packages to never update with rpmfind"
-#~ msgstr ""
-#~ "Een lijst van pakketten die nooit met rpmfind opgewaardeerd mogen worden"
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
-#~ msgid "Distribution Settings"
-#~ msgstr "Distributie Instellingen"
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
-#~ msgid "Origin:"
-#~ msgstr "Origine:"
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Selecteer de grootte die u wenst te installeren"
-#~ msgid "Sources:"
-#~ msgstr "Sources:"
+#~ msgid "Total size: "
+#~ msgstr "Totale grootte: "
-#~ msgid "Rating:"
-#~ msgstr "Prioriteit:"
+#~ msgid "Reconfigure local network"
+#~ msgstr "Locale netwerk nu herconfigureren"
#~ msgid ""
-#~ "The rating for this distribution (use -1 to ignore this distribution)"
-#~ msgstr ""
-#~ "De prioriteit van deze distributie (gebruik -1 om deze distributie te "
-#~ "negeren)"
-
-#~ msgid "Preferred Mirror:"
-#~ msgstr "Voorkeur Mirror:"
-
-#~ msgid "The mirror to use for this distribution when downloading packages"
-#~ msgstr ""
-#~ "De voor deze distributie te gebruiken mirror bij het downloaden van pakketten"
-
-#~ msgid "Change"
-#~ msgstr "Veranderen"
-
-#~ msgid "Make the changes to this distribution's settings"
-#~ msgstr "Veranderingen van de instellingen van deze distributie toepassen"
-
-#~ msgid "Distributions"
-#~ msgstr "Distributies"
-
-#~ msgid "Size:"
-#~ msgstr "Grootte:"
-
-#~ msgid "Install Date:"
-#~ msgstr "Datum van Installatie:"
-
-#~ msgid "not installed"
-#~ msgstr "niet geОnstalleerd"
-
-#~ msgid "Build Host:"
-#~ msgstr "Aanmaak Host:"
-
-#~ msgid "Build Date:"
-#~ msgstr "Aanmaak datum:"
-
-#~ msgid "Distribution:"
-#~ msgstr "Distributie:"
-
-#~ msgid "Group:"
-#~ msgstr "Groep:"
-
-#~ msgid "Packager:"
-#~ msgstr "Maker Pakket:"
-
-#~ msgid "URL:"
-#~ msgstr "URL:"
-
-#~ msgid "<none>"
-#~ msgstr "<geen>"
-
-#~ msgid "Distribution"
-#~ msgstr "Distributie"
-
-#~ msgid "Download"
-#~ msgstr "Download"
-
-#~ msgid "have %s-%s"
-#~ msgstr "hebben %s-%s"
-
-#~ msgid "No packages to download"
-#~ msgstr "Geen pakketten om te downloaden"
-
-#~ msgid "Download files?"
-#~ msgstr "Bestanden downloaden?"
-
-#~ msgid "Download these packages?"
-#~ msgstr "Deze bestanden downloaden?"
-
-#~ msgid "Problem"
-#~ msgstr "Probleem"
-
-#~ msgid "Verifying Packages"
-#~ msgstr "Pakketten Controleren"
-
-#~ msgid "missing"
-#~ msgstr "ontbrekend"
-
-#~ msgid ", md5"
-#~ msgstr ", md5"
-
-#~ msgid ", file size"
-#~ msgstr ", bestandsgrootte"
-
-#~ msgid ", symbolic link problem"
-#~ msgstr ", probleem met symbolische link"
-
-#~ msgid ", user"
-#~ msgstr ", gebruiker"
-
-#~ msgid ", group"
-#~ msgstr ", groep"
-
-#~ msgid ", modification time"
-#~ msgstr ", wijzigingstijd"
-
-#~ msgid ", file mode"
-#~ msgstr ", bestandsmodus"
-
-#~ msgid ", device file type"
-#~ msgstr ", bestandssoort apparaat"
-
-#~ msgid "*script*"
-#~ msgstr "*script*"
-
-#~ msgid "script problem"
-#~ msgstr "script probleem"
-
-#~ msgid "No problems found."
-#~ msgstr "Geen problemen gevonden."
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "\n"
#~ msgstr ""
-#~ "%d MB wordt geinstalleerd. U kan kiezen om meer programma's te installeren."
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Slecht `kickstart'-bestand %s (fout %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Grootte: %s MB"
+#~ "Uw computer kan worden geconfigureerd om zijn Internet connectie te.\n"
+#~ "delen\n"
-#~ msgid "resizing"
-#~ msgstr "bezig met de grootte aan te passen"
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Alles is geconfigureerd.\n"
-#~ msgid "formatting"
-#~ msgstr "bezig met formatteren"
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Verbinden met het Internet met een normaal modem"
-#~ msgid "changing type of"
-#~ msgstr "type wordt veranderd"
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Verbinden met het Internet met een ISDN modem"
-#~ msgid "After %s partition %s,"
-#~ msgstr "Na %s partitie %s,"
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Verbinden met het Internet met DSL (of ADSL)"
-#~ msgid "linear"
-#~ msgstr "lineair"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineair (nodig voor sommige SCSI-stations)"
-
-#~ msgid "Password:"
-#~ msgstr "Wachtwoord:"
-
-#~ msgid "User name:"
-#~ msgstr "Gebruikersnaam:"
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Verbindig maken met Internet via de Kabel"
#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ "The interface $netcnx->{NET_INTERFACE} is configured and loaded, but you "
+#~ "cannot access to Internet.\n"
+#~ "I suggest you to disconnect, and reconfigure the Internet connection."
#~ msgstr ""
-#~ "Kon geen HTP bootfloppy aanmaken.\n"
-#~ "U zal misschien de installatie moeten herstarten en ``%s'' ingeven aan de "
-#~ "prompt"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Het is nodig de installatie te herstarten met de nieuwe parameters"
-
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Het is nodig de installatie te herstarten door de floppy te booten"
-
-#~ msgid "A entry %s already exists"
-#~ msgstr "Een %s-ingang bestaat reeds"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Kies installatie of upgrade"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Welk gebruik wenst u?"
+#~ "De interface $netcnx->{NET_INTERFACE} is geconfigureerd en geladen, maar u "
+#~ "heeft geen toegang tot\n"
+#~ "Internet. Ik beveel u aan de verbinding te verbreken, en uw Internet "
+#~ "connectie hefconfigureert."
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
index be8a5d1fc..fab0460f4 100644
--- a/perl-install/share/po/no.po
+++ b/perl-install/share/po/no.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-10-06 21:29+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-08-25 11:07+0200\n"
"Last-Translator: Terje Bjerkelia <terje@bjerkelia.com>\n"
"Language-Team: norwegian\n"
@@ -478,7 +478,7 @@ msgstr "Hvor Ьnsker du installere oppstartslasteren?"
msgid "LILO/grub Installation"
msgstr "LILO/grub-installasjon"
-#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:725
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Ingen"
@@ -514,15 +514,15 @@ msgstr "Skjermmodus"
msgid "Delay before booting default image"
msgstr "Forsinkelse fЬr oppstart av standard bilde"
-#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:753
-#: ../../install_steps_interactive.pm_.c:804 ../../netconnect.pm_.c:549
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Passord"
-#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:754
-#: ../../install_steps_interactive.pm_.c:805
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
+#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Passord (igjen)"
@@ -545,14 +545,14 @@ msgid ""
msgstr ""
"Opsjon ``Begrense kommandolinje-opsjoner'' kan ikke brukes uten et passord"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:763
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Vennligst prЬv igjen"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:763
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Passordene stemmer ikke overens"
@@ -571,7 +571,7 @@ msgid "Add"
msgstr "Legg til"
#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:798 ../../netconnect.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Ferdig"
@@ -629,7 +629,7 @@ msgid "Default"
msgstr "Standard"
#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:751 ../../interactive.pm_.c:76
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
@@ -665,13 +665,13 @@ msgid "Do you have any %s interfaces?"
msgstr "Har du noen %s grensesnitt?"
#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
-#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:466
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
#: ../../printerdrake.pm_.c:233
msgid "No"
msgstr "Nei"
#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
-#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:464
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
msgid "Yes"
msgstr "Ja"
@@ -1374,9 +1374,7 @@ msgstr ""
msgid "Choose the new size"
msgstr "Velg den nye stЬrrelsen"
-#: ../../diskdrake.pm_.c:609 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:511
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
@@ -3320,7 +3318,7 @@ msgstr "Konfigurer mus"
msgid "Choose your keyboard"
msgstr "Velg tastatur"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:499
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Forskjellig"
@@ -3356,8 +3354,8 @@ msgstr "Konfigurer tjenester"
msgid "Configure printer"
msgstr "Konfigurer skriver"
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:751
-#: ../../install_steps_interactive.pm_.c:752
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Sett root-passord"
@@ -3385,7 +3383,7 @@ msgstr "Diskett autoinstallering"
msgid "Exit install"
msgstr "Avslutt installering"
-#: ../../install_any.pm_.c:583
+#: ../../install_any.pm_.c:584
msgid "Error reading file $f"
msgstr "Feil ved lesing av fil $f"
@@ -3420,11 +3418,11 @@ msgstr ""
"Opprett en partisjon for dette (eller klikk pЕ en eksisterende).\n"
"Velg sЕ ``Monteringspunkt'' og sett dette til `/'"
-#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Du mЕ ha en vekslingspartisjon"
-#: ../../install_interactive.pm_.c:47 ../../install_steps_graphical.pm_.c:261
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -3610,12 +3608,12 @@ msgstr ""
"pen mЕte.\n"
"Fortsett pЕ eget ansvar."
-#: ../../install_steps.pm_.c:197
+#: ../../install_steps.pm_.c:196
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliser monteringspunkt %s"
-#: ../../install_steps.pm_.c:376
+#: ../../install_steps.pm_.c:375
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3627,12 +3625,12 @@ msgstr ""
"Sjekk cd-platen pЕ en installert maskin med \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:451
+#: ../../install_steps.pm_.c:450
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:663
+#: ../../install_steps.pm_.c:662
msgid "No floppy drive available"
msgstr "Ingen diskettstasjon tilgjengelig"
@@ -3642,80 +3640,6 @@ msgstr "Ingen diskettstasjon tilgjengelig"
msgid "Entering step `%s'\n"
msgstr "Entrer trinn `%s'\n"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Velg stЬrrelsen du Ьnsker Е installere"
-
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Total stЬrrelse: "
-
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versjon: %s\n"
-
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "StЬrrelse: %d KB\n"
-
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
-msgid "Choose the packages you want to install"
-msgstr "Velg pakkene du Ьnsker Е installere"
-
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
-msgid "Info"
-msgstr "Info"
-
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Installer"
-
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:587
-msgid "Installing"
-msgstr "Installerer"
-
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
-msgid "Please wait, "
-msgstr "Vennligst vent, "
-
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
-msgid "Time remaining "
-msgstr "Tid som gjenstЕr "
-
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
-msgid "Total time "
-msgstr "Total tid "
-
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:587
-msgid "Preparing installation"
-msgstr "Forbereder installasjon"
-
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
-#, c-format
-msgid "Installing package %s"
-msgstr "Installerer pakke %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
-msgid "Go on anyway?"
-msgstr "Fortsette uansett?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-msgid "There was an error ordering packages:"
-msgstr "Det var en feil ved endring av pakkenes rekkefЬlge:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:992
-msgid "Use existing configuration for X11?"
-msgstr "Bruke eksisterende konfigurasjon for X11?"
-
#: ../../install_steps_gtk.pm_.c:136
msgid ""
"Your system is low on resource. You may have some problem installing\n"
@@ -3776,6 +3700,19 @@ msgstr "Du vil kunne velge disse mere spesifisert i neste trinn."
msgid "Percentage of packages to install"
msgstr "Prosentdel av pakker Е installere"
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Velg pakkene du Ьnsker Е installere"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Installer"
+
#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Avhengigheter automatisk"
@@ -3801,6 +3738,16 @@ msgstr "DЕrlig pakke"
msgid "Name: %s\n"
msgstr "Navn: %s\n"
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versjon: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "StЬrrelse: %d KB\n"
+
#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
@@ -3850,10 +3797,26 @@ msgstr ""
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fjerne denne pakken. Den mЕ oppgraderes"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Installerer"
+
#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Beregner"
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Vennligst vent, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tid som gjenstЕr "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Total tid "
+
#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
@@ -3861,11 +3824,20 @@ msgstr "Beregner"
msgid "Cancel"
msgstr "Avbryt"
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Forbereder installasjon"
+
#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakker"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Installerer pakke %s"
+
#: ../../install_steps_gtk.pm_.c:531
msgid ""
"\n"
@@ -3949,6 +3921,14 @@ msgstr ""
msgid "Refuse"
msgstr "Nekte"
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Fortsette uansett?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Det var en feil ved endring av pakkenes rekkefЬlge:"
+
#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Det var en feil ved installering av pakkene:"
@@ -4218,7 +4198,7 @@ msgid "You can choose other languages that will be available after install"
msgstr "Du kan velge andre sprЕk som vil vФre tilgjengelige etter installasjon"
#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:513
+#: ../../install_steps_interactive.pm_.c:520
msgid "All"
msgstr "Alle"
@@ -4404,38 +4384,38 @@ msgstr ""
"Systemet ditt har ikke nok plass for installasjon eller oppgradering (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:453
+#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Complete (%dMB)"
msgstr "Ferdig (%dMB)"
-#: ../../install_steps_interactive.pm_.c:453
+#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Minimum (%dMB)"
msgstr "Minimum (%dMB)"
-#: ../../install_steps_interactive.pm_.c:453
+#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Recommended (%dMB)"
msgstr "Anbefalt (%dMB)"
-#: ../../install_steps_interactive.pm_.c:459
+#: ../../install_steps_interactive.pm_.c:455
msgid "Custom"
msgstr "Egendefinert"
-#: ../../install_steps_interactive.pm_.c:466
+#: ../../install_steps_interactive.pm_.c:462
msgid "Select the size you want to install"
msgstr "Velg stЬrrelsen du Ьnsker Е installere"
-#: ../../install_steps_interactive.pm_.c:501
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Valg pakkegruppe"
-#: ../../install_steps_interactive.pm_.c:514
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_interactive.pm_.c:563
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4445,12 +4425,12 @@ msgstr ""
"Hvis du ikke har noen av CDene, klikk Avbryt.\n"
"Hvis bare noen av CDene mangler, fjern disse, klikk sЕ Ok."
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM merket \"%s\""
-#: ../../install_steps_interactive.pm_.c:596
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -4458,11 +4438,11 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:605
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Konfigurasjon postinstallering"
-#: ../../install_steps_interactive.pm_.c:630
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -4536,92 +4516,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Velg et speil som pakkene kan hentes fra"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Kontakter speilet for Е fЕ en liste over tilgjengelige pakker"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Vennligst velg pakkene du Ьnsker Е installere."
-#: ../../install_steps_interactive.pm_.c:684
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "Hva er din tidsone?"
-#: ../../install_steps_interactive.pm_.c:686
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Er maskinvareklokken din satt til GMT?"
-#: ../../install_steps_interactive.pm_.c:724
+#: ../../install_steps_interactive.pm_.c:731
msgid "Which printing system do you want to use?"
msgstr "Hvilket utskriftsystem Ьnsker du Е bruke?"
-#: ../../install_steps_interactive.pm_.c:751
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Intet passord"
-#: ../../install_steps_interactive.pm_.c:756
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Bruk skyggefil"
-#: ../../install_steps_interactive.pm_.c:756
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "skygge"
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Bruk MD5 passord"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Bruk NIS"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "gule sider"
-#: ../../install_steps_interactive.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Dette passordet er for enkelt (mЕ vФre minst %d tegn langt)"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Autentifikasjon NIS"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "NIS-domene"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "NIS-tjener"
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Godta bruker"
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Legg til bruker"
-#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(allerede lagt til %s)"
-#: ../../install_steps_interactive.pm_.c:799
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -4631,48 +4611,48 @@ msgstr ""
"Entre en bruker\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Virkelig navn"
-#: ../../install_steps_interactive.pm_.c:802 ../../printerdrake.pm_.c:93
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Brukernavn"
-#: ../../install_steps_interactive.pm_.c:807
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Skall"
-#: ../../install_steps_interactive.pm_.c:809
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikon"
-#: ../../install_steps_interactive.pm_.c:819
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Dette passordet er for enkelt"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Vennligst oppgi et brukernavn"
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brukernavnet kan kun inneholde smЕ bokstaver, tall, `-' og `_'"
-#: ../../install_steps_interactive.pm_.c:822
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Denne brukeren er allerede lagt til"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:853
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4703,19 +4683,19 @@ msgstr ""
"en diskett\n"
"i den fЬrste stasjonen og trykk \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:862
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "FЬrste diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:863
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Andre diskettstasjon"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Dropp"
-#: ../../install_steps_interactive.pm_.c:869
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4740,32 +4720,32 @@ msgstr ""
"etter systemsvikt. ьnsker du Е opprette en oppstartsdiskett for systemet "
"ditt?"
-#: ../../install_steps_interactive.pm_.c:878
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Beklager, ingen diskettstasjon tilgjengelig"
-#: ../../install_steps_interactive.pm_.c:881
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Velg diskettstasjonen du Ьnsker Е bruke for Е lage oppstartsdisketten"
-#: ../../install_steps_interactive.pm_.c:887
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Sett inn en diskett i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:890
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Oppretter oppstartdiskett"
-#: ../../install_steps_interactive.pm_.c:897
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "KlargjЬr oppstartslaster"
-#: ../../install_steps_interactive.pm_.c:906
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "ьnsker du Е bruke aboot?"
-#: ../../install_steps_interactive.pm_.c:909
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4773,80 +4753,80 @@ msgstr ""
"Feil ved installasjon av aboot, \n"
"prЬve Е installere selv om det Ьdelegger den fЬrste partisjonen?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:925
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasjon av oppstartslaster mislykket. FЬlgende feil oppsto:"
-#: ../../install_steps_interactive.pm_.c:932 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackers"
-#: ../../install_steps_interactive.pm_.c:933 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "DЕrlig"
-#: ../../install_steps_interactive.pm_.c:934 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Lav"
-#: ../../install_steps_interactive.pm_.c:935 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Medium"
-#: ../../install_steps_interactive.pm_.c:936 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "HЬy"
-#: ../../install_steps_interactive.pm_.c:937 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../install_steps_interactive.pm_.c:951
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "Forskjellige spЬrsmЕl"
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(kan forЕrsake korrupsjon av data)"
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Bruk harddisk-optimisering?"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Velg sikkerhetsnivЕ"
-#: ../../install_steps_interactive.pm_.c:954
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiser RAM-stЬrrelse hvis det trengs (funnet %d MB)"
-#: ../../install_steps_interactive.pm_.c:956
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Fjernbart media automontering"
-#: ../../install_steps_interactive.pm_.c:958
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "TЬm /tmp ved hver oppstart"
-#: ../../install_steps_interactive.pm_.c:961
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "SlЕ pЕ multiprofiler"
-#: ../../install_steps_interactive.pm_.c:963
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "SlЕ pЕ num lock ved oppstart"
-#: ../../install_steps_interactive.pm_.c:966
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Oppgi ram-stЬrrelsen i MB"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Kan ikke bruke supermount i hЬyt sikkerhetsnivЕ"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
"If you want to be root, you have to login as a user and then use \"su\".\n"
@@ -4860,7 +4840,7 @@ msgstr ""
"Mere generelt, ikke forvent Е bruke maskinen din til annet enn en tjener.\n"
"Du har blitt advart."
-#: ../../install_steps_interactive.pm_.c:975
+#: ../../install_steps_interactive.pm_.c:982
msgid ""
"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
"give digits instead of normal letters (eg: pressing `p' gives `6')"
@@ -4868,22 +4848,26 @@ msgstr ""
"VФr forsiktig, Е ha numlock slЕtt pЕ forЕrsaker at mange av tastene\n"
"gir tall istedenfor vanlige bokstaver (f.eks: `p' gir `6')"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Bruke eksisterende konfigurasjon for X11?"
+
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"ьnsker du Е generere en auto installeringsdiskett for linux replikasjon?"
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sett inn en tom diskett i stasjon %s"
-#: ../../install_steps_interactive.pm_.c:1038
-#: ../../install_steps_interactive.pm_.c:1068
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Oppretter diskett for autoinstallasjon"
-#: ../../install_steps_interactive.pm_.c:1093
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4893,7 +4877,7 @@ msgstr ""
"\n"
"ьnsker du virkelig Е avslutte nЕ?"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5312,14 +5296,11 @@ msgid "Testing your connection..."
msgstr "Tester tilkoblingen din..."
#: ../../netconnect.pm_.c:106
-msgid ""
-"The system is now connected to Internet! Congratulation.\n"
-"Feel free to launch draknet at any time to setup your connection.\n"
-msgstr ""
-"Systemet er nЕ koblet til Internett! Gratulerer.\n"
-"Bruk draknet nЕr du vil for Е sette opp tilkoblingen din.\n"
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Du er for Ьyeblikket ikke koblet opp mot Internett."
-#: ../../netconnect.pm_.c:108
+#: ../../netconnect.pm_.c:107
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -5327,13 +5308,13 @@ msgstr ""
"Det ser ikke ut til at systemet er koblet til Internett.\n"
"PrЬv Е rekonfigurere tilkoblingen din."
-#: ../../netconnect.pm_.c:142 ../../netconnect.pm_.c:214
-#: ../../netconnect.pm_.c:233 ../../netconnect.pm_.c:245
-#: ../../netconnect.pm_.c:257
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
msgid "ISDN Configuration"
msgstr "ISDN-konfigurasjon"
-#: ../../netconnect.pm_.c:142
+#: ../../netconnect.pm_.c:141
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -5341,115 +5322,115 @@ msgstr ""
"Velg din tilbyder.\n"
" Hvis denne ikke er i listen, velg ikke i listen"
-#: ../../netconnect.pm_.c:159
+#: ../../netconnect.pm_.c:158
msgid "Connection Configuration"
msgstr "Konfigurasjon tilknytning."
-#: ../../netconnect.pm_.c:160
+#: ../../netconnect.pm_.c:159
msgid "Please fill or check the field below"
msgstr "Vennnligst fyll eller merk feltet under"
-#: ../../netconnect.pm_.c:162
+#: ../../netconnect.pm_.c:161
msgid "Card IRQ"
msgstr "Kort IRQ"
-#: ../../netconnect.pm_.c:163
+#: ../../netconnect.pm_.c:162
msgid "Card mem (DMA)"
msgstr "Kort mem (DMA)"
-#: ../../netconnect.pm_.c:164
+#: ../../netconnect.pm_.c:163
msgid "Card IO"
msgstr "Kort IO"
-#: ../../netconnect.pm_.c:165
+#: ../../netconnect.pm_.c:164
msgid "Card IO_0"
msgstr "Kort IO_0"
-#: ../../netconnect.pm_.c:166
+#: ../../netconnect.pm_.c:165
msgid "Card IO_1"
msgstr "Kort IO_1"
-#: ../../netconnect.pm_.c:167
+#: ../../netconnect.pm_.c:166
msgid "Your personal phone number"
msgstr "Ditt telefonnummer"
-#: ../../netconnect.pm_.c:169
+#: ../../netconnect.pm_.c:168
msgid "Provider name (ex provider.net)"
msgstr "Navn tilbyder (f.eks. tilbyder.net)"
-#: ../../netconnect.pm_.c:170
+#: ../../netconnect.pm_.c:169
msgid "Provider phone number"
msgstr "Telefonnummer tilbyder"
-#: ../../netconnect.pm_.c:171
+#: ../../netconnect.pm_.c:170
msgid "Provider dns 1"
msgstr "Tilbyder dns 1"
-#: ../../netconnect.pm_.c:172
+#: ../../netconnect.pm_.c:171
msgid "Provider dns 2"
msgstr "Tilbyder dns 2"
-#: ../../netconnect.pm_.c:173
+#: ../../netconnect.pm_.c:172
msgid "Dialing mode"
msgstr "Oppringningsmodus"
-#: ../../netconnect.pm_.c:175
+#: ../../netconnect.pm_.c:174
msgid "Account Login (user name)"
msgstr "Logg inn (brukernavn)"
-#: ../../netconnect.pm_.c:176
+#: ../../netconnect.pm_.c:175
msgid "Account Password"
msgstr "Passord"
-#: ../../netconnect.pm_.c:177
+#: ../../netconnect.pm_.c:176
msgid "Confirm Password"
msgstr "Bekreft passord"
-#: ../../netconnect.pm_.c:209
+#: ../../netconnect.pm_.c:208
msgid "Europe"
msgstr "Europa"
-#: ../../netconnect.pm_.c:209
+#: ../../netconnect.pm_.c:208
msgid "Europe (EDSS1)"
msgstr "Europa (EDSS1)"
-#: ../../netconnect.pm_.c:211
+#: ../../netconnect.pm_.c:210
msgid "Rest of the world"
msgstr "Resten av verden"
-#: ../../netconnect.pm_.c:211
+#: ../../netconnect.pm_.c:210
msgid "Rest of the world - no D-Channel (leased lines)"
msgstr "Resten av verden - ingen D-kanal (leid linje)"
-#: ../../netconnect.pm_.c:215
+#: ../../netconnect.pm_.c:214
msgid "Which protocol do you want to use ?"
msgstr "Hvilken protokoll Ьnsker du Е bruke?"
-#: ../../netconnect.pm_.c:225
+#: ../../netconnect.pm_.c:224
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:227
+#: ../../netconnect.pm_.c:226
msgid "PCI"
msgstr "PCI"
-#: ../../netconnect.pm_.c:229
+#: ../../netconnect.pm_.c:228
msgid "I don't know"
msgstr "Jeg vet ikke"
-#: ../../netconnect.pm_.c:234
+#: ../../netconnect.pm_.c:233
msgid "What kind of card do you have?"
msgstr "Hva slags kort har du?"
-#: ../../netconnect.pm_.c:240
+#: ../../netconnect.pm_.c:239
msgid "Continue"
msgstr "Fortsett"
-#: ../../netconnect.pm_.c:242
+#: ../../netconnect.pm_.c:241
msgid "Abort"
msgstr "Avbryt"
-#: ../../netconnect.pm_.c:246
+#: ../../netconnect.pm_.c:245
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5461,15 +5442,15 @@ msgstr ""
"\n"
"Hvis du har et PCMCIA kort mЕ du vite irq og io for kortet.\n"
-#: ../../netconnect.pm_.c:258
+#: ../../netconnect.pm_.c:257
msgid "Which is your ISDN card ?"
msgstr "Hvilket er ditt ISDN-kort?"
-#: ../../netconnect.pm_.c:282
+#: ../../netconnect.pm_.c:281
msgid "I have found an ISDN Card:\n"
msgstr "Jeg har funnet et ISDN-kort:\n"
-#: ../../netconnect.pm_.c:288
+#: ../../netconnect.pm_.c:287
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -5477,11 +5458,11 @@ msgstr ""
"Jeg har oppdaget et ISDN PCI-kort, men jeg vet ikke hviklet type. Vennligst "
"velg et PCI-kort i neste skjermbilde."
-#: ../../netconnect.pm_.c:300
+#: ../../netconnect.pm_.c:299
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ingen ISDN PCI-kort funnet. Vennligst velg et i neste skjermbilde."
-#: ../../netconnect.pm_.c:332
+#: ../../netconnect.pm_.c:331
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
@@ -5489,23 +5470,23 @@ msgstr ""
"Ikke noe ethernet nettverksadapter har blitt oppdaget i systemet ditt.\n"
"Jeg kan ikke sette opp denne tilkoblingstypen."
-#: ../../netconnect.pm_.c:336 ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
msgid "Choose the network interface"
msgstr "Velg nettverksgrensesnitt"
-#: ../../netconnect.pm_.c:337
+#: ../../netconnect.pm_.c:336
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
"Vennligst velg hvilket nettverksadapter du Ьnsker Е bruke til Е koble opp\n"
"mot Internett"
-#: ../../netconnect.pm_.c:352 ../../netconnect.pm_.c:625
-#: ../../netconnect.pm_.c:755 ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
msgid "Network interface"
msgstr "Nettverksgrensesnitt"
-#: ../../netconnect.pm_.c:353
+#: ../../netconnect.pm_.c:352
msgid ""
"\n"
"Do you agree?"
@@ -5513,71 +5494,71 @@ msgstr ""
"\n"
"Er du enig?"
-#: ../../netconnect.pm_.c:353
+#: ../../netconnect.pm_.c:352
msgid "I'm about to restart the network device:\n"
msgstr "Jeg er i ferd med Е starte denne nettverksenheten pЕ nytt:\n"
-#: ../../netconnect.pm_.c:469
+#: ../../netconnect.pm_.c:468
msgid "ADSL configuration"
msgstr "ADSL-konfigurasjon"
-#: ../../netconnect.pm_.c:470
+#: ../../netconnect.pm_.c:469
msgid "Do you want to start your connection at boot?"
msgstr "ьnsker du Е starte tilkoblingen din ved oppstart?"
-#: ../../netconnect.pm_.c:530
+#: ../../netconnect.pm_.c:529
msgid "Try to find a modem?"
msgstr "PrЬve Е finne et modem?"
-#: ../../netconnect.pm_.c:540
+#: ../../netconnect.pm_.c:539
msgid "Please choose which serial port your modem is connected to."
msgstr "Vennligst velg hvilken serieport modemet ditt koblet til."
-#: ../../netconnect.pm_.c:545
+#: ../../netconnect.pm_.c:544
msgid "Dialup options"
msgstr "Opsjoner oppringt"
-#: ../../netconnect.pm_.c:546
+#: ../../netconnect.pm_.c:545
msgid "Connection name"
msgstr "Navn tilknytning"
-#: ../../netconnect.pm_.c:547
+#: ../../netconnect.pm_.c:546
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../netconnect.pm_.c:548
+#: ../../netconnect.pm_.c:547
msgid "Login ID"
msgstr "Login ID"
-#: ../../netconnect.pm_.c:550
+#: ../../netconnect.pm_.c:549
msgid "Authentication"
msgstr "Autentifikasjon"
-#: ../../netconnect.pm_.c:550
+#: ../../netconnect.pm_.c:549
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:550
+#: ../../netconnect.pm_.c:549
msgid "Script-based"
msgstr "Scriptbasert"
-#: ../../netconnect.pm_.c:550
+#: ../../netconnect.pm_.c:549
msgid "Terminal-based"
msgstr "Terminalbasert"
-#: ../../netconnect.pm_.c:551
+#: ../../netconnect.pm_.c:550
msgid "Domain name"
msgstr "Domenenavn"
-#: ../../netconnect.pm_.c:553
+#: ../../netconnect.pm_.c:552
msgid "First DNS Server"
msgstr "FЬrste DNS-tjener"
-#: ../../netconnect.pm_.c:554
+#: ../../netconnect.pm_.c:553
msgid "Second DNS Server"
msgstr "Andre DNS-tjener"
-#: ../../netconnect.pm_.c:584
+#: ../../netconnect.pm_.c:582
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5585,7 +5566,7 @@ msgstr ""
"\n"
"Du kan koble opp mot Internett eller rekonfigurere tilkoblingen din."
-#: ../../netconnect.pm_.c:584 ../../netconnect.pm_.c:588
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5593,11 +5574,11 @@ msgstr ""
"\n"
"Du kan rekonfigurere tilkoblingen din."
-#: ../../netconnect.pm_.c:584
+#: ../../netconnect.pm_.c:582
msgid "You are not currently connected to Internet."
msgstr "Du er for Ьyeblikket ikke koblet opp mot Internett."
-#: ../../netconnect.pm_.c:588
+#: ../../netconnect.pm_.c:586
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5605,96 +5586,96 @@ msgstr ""
"\n"
"Du kan koble ned eller rekonfigurere tilkoblingen din."
-#: ../../netconnect.pm_.c:588
+#: ../../netconnect.pm_.c:586
msgid "You are currently connected to internet."
msgstr "Du er for Ьyeblikket koblet opp mot Internett"
-#: ../../netconnect.pm_.c:592
+#: ../../netconnect.pm_.c:590
msgid "Connect to Internet"
msgstr "Koble opp mot Internett"
-#: ../../netconnect.pm_.c:594
+#: ../../netconnect.pm_.c:592
msgid "Disconnect from Internet"
msgstr "Koble ned fra Internett"
-#: ../../netconnect.pm_.c:596
+#: ../../netconnect.pm_.c:594
msgid "Configure network connection (LAN or Internet)"
msgstr "Konfigurer nettverk-tilkobling (LAN eller Internett)"
-#: ../../netconnect.pm_.c:599
+#: ../../netconnect.pm_.c:597
msgid "Internet connection & configuration"
msgstr "Internett tilkobling & konfigurasjon"
-#: ../../netconnect.pm_.c:626 ../../netconnect.pm_.c:756
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
msgid ""
"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
"Jeg er i ferd med Е starte nettverksenhet $netc->{NET_DEVICE} pЕ nytt. Er du "
"enig?"
-#: ../../netconnect.pm_.c:643
+#: ../../netconnect.pm_.c:641
msgid "Configure a normal modem connection"
msgstr "Konfigurer en normal modem-tilkobling"
-#: ../../netconnect.pm_.c:662
+#: ../../netconnect.pm_.c:661
msgid "Configure an ISDN connection"
msgstr "Konfigurer en ISDN-tilkobling"
-#: ../../netconnect.pm_.c:667
+#: ../../netconnect.pm_.c:666
msgid "Internal ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../netconnect.pm_.c:669
+#: ../../netconnect.pm_.c:668
msgid "External ISDN modem"
msgstr "Eksternt ISDN modem"
-#: ../../netconnect.pm_.c:672 ../../netconnect.pm_.c:706
-#: ../../netconnect.pm_.c:718 ../../netconnect.pm_.c:742
-#: ../../netconnect.pm_.c:787
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
msgid "Connect to the Internet"
msgstr "Koble opp mot Internett"
-#: ../../netconnect.pm_.c:673
+#: ../../netconnect.pm_.c:672
msgid "What kind is your ISDN connection?"
msgstr "Hva slags type er ISDN-tilknytningen din?"
-#: ../../netconnect.pm_.c:692
+#: ../../netconnect.pm_.c:691
msgid "Configure a DSL (or ADSL) connection"
msgstr "Konfigurer en DSL- (eller ADSL) tilkobling"
-#: ../../netconnect.pm_.c:701
+#: ../../netconnect.pm_.c:700
msgid "France"
msgstr "Frankrike"
-#: ../../netconnect.pm_.c:703
+#: ../../netconnect.pm_.c:702
msgid "Other countries"
msgstr "Andre land"
-#: ../../netconnect.pm_.c:707
+#: ../../netconnect.pm_.c:706
msgid "In which country are you located ?"
msgstr "I hvilket land er du ?"
-#: ../../netconnect.pm_.c:713
+#: ../../netconnect.pm_.c:712
msgid "Alcatel modem"
msgstr "Alcatel modem"
-#: ../../netconnect.pm_.c:715
+#: ../../netconnect.pm_.c:714
msgid "ECI modem"
msgstr "ECI modem"
-#: ../../netconnect.pm_.c:719
+#: ../../netconnect.pm_.c:718
msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
msgstr "Hvis adsl modemet ditt er Alcatel, velg Alcatel. ellers, ECI."
-#: ../../netconnect.pm_.c:737
+#: ../../netconnect.pm_.c:736
msgid "use pppoe"
msgstr "bruk pppoe"
-#: ../../netconnect.pm_.c:739
+#: ../../netconnect.pm_.c:738
msgid "don't use pppoe"
msgstr "ikke bruk pppoe"
-#: ../../netconnect.pm_.c:743
+#: ../../netconnect.pm_.c:742
msgid ""
"The most common way to connect with adsl is dhcp + pppoe.\n"
"However, some connections only use dhcp.\n"
@@ -5704,11 +5685,11 @@ msgstr ""
"Men, det eksisterer noen tilkoblinger som bare bruker dhcp.\n"
"Hvis du ikke vet, velg 'bruk pppoe'"
-#: ../../netconnect.pm_.c:766
+#: ../../netconnect.pm_.c:765
msgid "Configure a cable connection"
msgstr "Konfigurer en kabel-tilkobling"
-#: ../../netconnect.pm_.c:788
+#: ../../netconnect.pm_.c:787
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpd"
@@ -5716,31 +5697,31 @@ msgstr ""
"Hvilken dhcp klient Ьnsker du Е bruke?\n"
"Standard er dhcpd"
-#: ../../netconnect.pm_.c:801
+#: ../../netconnect.pm_.c:800
msgid "Disable Internet Connection"
msgstr "SlЕ av Internett-tilkobling"
-#: ../../netconnect.pm_.c:812
+#: ../../netconnect.pm_.c:811
msgid "Configure local network"
msgstr "Konfigurer lokalt nettverk"
-#: ../../netconnect.pm_.c:816
+#: ../../netconnect.pm_.c:815
msgid "Network configuration"
msgstr "Nettverkskonfigurasjon"
-#: ../../netconnect.pm_.c:817
+#: ../../netconnect.pm_.c:816
msgid "Do you want to restart the network"
msgstr "Vil du starte nettverket pЕ nytt"
-#: ../../netconnect.pm_.c:825
+#: ../../netconnect.pm_.c:824
msgid "Disable networking"
msgstr "slЕ av nettverk"
-#: ../../netconnect.pm_.c:835
+#: ../../netconnect.pm_.c:834
msgid "Configure the Internet connection / Configure local Network"
msgstr "Konfigurer Internett-tilkoblingen / Konfigurer lokalt nettverk"
-#: ../../netconnect.pm_.c:836
+#: ../../netconnect.pm_.c:835
msgid ""
"Local networking has already been configured.\n"
"Do you want to:"
@@ -5748,15 +5729,15 @@ msgstr ""
"Lokalt nettverk har allerede blitt konfigurert.\n"
"Vil du:"
-#: ../../netconnect.pm_.c:837
+#: ../../netconnect.pm_.c:836
msgid "How do you want to connect to the Internet?"
msgstr "Hvordan vil du koble opp mot Internett?"
-#: ../../netconnect.pm_.c:859
+#: ../../netconnect.pm_.c:858
msgid "Network Configuration"
msgstr "Nettverkskonfigurasjon"
-#: ../../netconnect.pm_.c:860
+#: ../../netconnect.pm_.c:859
msgid ""
"Now that your Internet connection is configured,\n"
"your computer can be configured to share its Internet connection.\n"
@@ -7083,101 +7064,101 @@ msgid "Finding leaves takes some time"
msgstr "Finne tillatelser vil ta litt tid"
# ../../share/compssUsers
-msgid "Graphics Manipulation"
-msgstr "Grafisk manipulasjon"
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "Mere grafiske skrivebord (Gnome, IceWM)"
# ../../share/compssUsers
-msgid "Personnal Finance"
-msgstr "Personlig finans"
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"K Desktop Environment, basis grafikkmiljЬ med en samling av passende verktЬy"
# ../../share/compssUsers
-msgid "Databases"
-msgstr "Databaser"
-
-msgid "Internet"
-msgstr "Internett"
-
-msgid "Multimedia - Graphics"
-msgstr "Multimedia - Grafikk"
+msgid "Personnal Information Management"
+msgstr "Personling informasjonshЕndtering"
# ../../share/compssUsers
-msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr "Lydrelaterte verktЬy: mp3 eller midi-spillere, miksere etc."
+msgid "Tools to create and burn CD's"
+msgstr "VerktЬy for Е opprette og brenne CD'er"
-msgid "Multimedia"
-msgstr "Multimedia"
+msgid "Internet Tools"
+msgstr "Internett verktЬy"
-msgid "Office"
-msgstr "Office"
+msgid "Internet"
+msgstr "Internett"
# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
-"Chat (IRC eller Ьyeblikkelig beskjed) programmer sЕ som xchat, licq, gaim, "
-"og fil- overfЬringsverktЬy"
+msgid "Personnal Finance"
+msgstr "Personlig finans"
# ../../share/compssUsers
-msgid ""
-"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
-"browse the Web"
-msgstr ""
-"Sett med verktЬy for Е lese og sende e-post og nyheter (pine, mutt, tin...) "
-"og for se pЕ webben"
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm etc"
# ../../share/compssUsers
-msgid "Communication facilities"
-msgstr "Kommunikasjonsfasaliteter"
+msgid "Graphics programs such as The Gimp"
+msgstr "Grafiske programmer sЕ som Gimp"
-msgid "KDE"
-msgstr "KDE"
+msgid "Office"
+msgstr "Office"
# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr "Personling informasjonshЕndtering"
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr "Databaseklienter og tjenere (mysql og postgresql)"
# ../../share/compssUsers
-msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programmer for Е hЕndtere dine finanser, sЕ som gnucash"
-
-msgid "Gnome"
-msgstr "Gnome"
-
-msgid "Documentation"
-msgstr "Dokumentasjon"
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "VerktЬy for din Palm Pilot eller din Visor"
-msgid "Internet Tools"
-msgstr "Internett verktЬy"
+msgid "Multimedia - Graphics"
+msgstr "Multimedia - Grafikk"
# ../../share/compssUsers
-msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm etc"
-
-msgid "Multimedia - Sound"
-msgstr "Multimedia - Lyd"
+msgid "Video players and editors"
+msgstr "Videospillere og redigerere"
# ../../share/compssUsers
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Underholdningsprogrammer: arkade, bordspill, strategi etc"
# ../../share/compssUsers
-msgid "Video players and editors"
-msgstr "Videospillere og redigerere"
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Kontorprogrammer: tekstbehandlere (kword, abiword), regneark (kspread, "
+"gnumeric), pdf fremvisere etc"
# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
-msgstr "Databaseklienter og tjenere (mysql og postgresql)"
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Sett med verktЬy for Е lese og sende e-post og nyheter (pine, mutt, tin...) "
+"og for se pЕ webben"
# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
-msgstr "Lyd og bilde avspilling/redigeringsprogrammer"
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "Lydrelaterte verktЬy: mp3 eller midi-spillere, miksere etc."
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+"Chat (IRC eller Ьyeblikkelig beskjed) programmer sЕ som xchat, licq, gaim, "
+"og fil- overfЬringsverktЬy"
# ../../share/compssUsers
msgid "Books and Howto's on Linux and Free Software"
msgstr "BЬker og howto's om Linux og fri programvare"
# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm etc"
+
+# ../../share/compssUsers
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
@@ -7185,57 +7166,70 @@ msgstr ""
"Et grafisk miljЬ med et brukervennlig sett med applikasjoner og skrivebords- "
"verktЬy"
-msgid "Games"
-msgstr "Spill"
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Sett med verktЬy for e-post, nyheter, web, filoverfЬring og chat"
msgid "Multimedia - Video"
msgstr "Multimedia - Video"
+msgid "KDE"
+msgstr "KDE"
+
# ../../share/compssUsers
-msgid "Graphics programs such as The Gimp"
-msgstr "Grafiske programmer sЕ som Gimp"
+msgid "Sound and video playing/editing programs"
+msgstr "Lyd og bilde avspilling/redigeringsprogrammer"
+
+msgid "Multimedia"
+msgstr "Multimedia"
# ../../share/compssUsers
-msgid ""
-"The K Desktop Environment, the basic graphical environment with a collection "
-"of accompanying tools"
-msgstr ""
-"K Desktop Environment, basis grafikkmiljЬ med en samling av passende verktЬy"
+msgid "Other Graphical Desktops"
+msgstr "Andre grafiske skrivebord"
+
+msgid "Multimedia - Sound"
+msgstr "Multimedia - Lyd"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentasjon"
# ../../share/compssUsers
-msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr "Mere grafiske skrivebord (Gnome, IceWM)"
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programmer for Е hЕndtere dine finanser, sЕ som gnucash"
# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
-msgstr "VerktЬy for Е opprette og brenne CD'er"
+msgid "Graphics Manipulation"
+msgstr "Grafisk manipulasjon"
+
+msgid "Games"
+msgstr "Spill"
msgid "Multimedia - CD Burning"
msgstr "Multimedia - CD-brenning"
# ../../share/compssUsers
-msgid ""
-"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
-"gnumeric), pdf viewers, etc"
-msgstr ""
-"Kontorprogrammer: tekstbehandlere (kword, abiword), regneark (kspread, "
-"gnumeric), pdf fremvisere etc"
+msgid "Communication facilities"
+msgstr "Kommunikasjonsfasaliteter"
# ../../share/compssUsers
-msgid "Other Graphical Desktops"
-msgstr "Andre grafiske skrivebord"
+msgid "Databases"
+msgstr "Databaser"
-# ../../share/compssUsers
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr "VerktЬy for din Palm Pilot eller din Visor"
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Velg stЬrrelsen du Ьnsker Е installere"
-# ../../share/compssUsers
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm etc"
+#~ msgid "Total size: "
+#~ msgstr "Total stЬrrelse: "
-# ../../share/compssUsers
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Sett med verktЬy for e-post, nyheter, web, filoverfЬring og chat"
+#~ msgid ""
+#~ "The system is now connected to Internet! Congratulation.\n"
+#~ "Feel free to launch draknet at any time to setup your connection.\n"
+#~ msgstr ""
+#~ "Systemet er nЕ koblet til Internett! Gratulerer.\n"
+#~ "Bruk draknet nЕr du vil for Е sette opp tilkoblingen din.\n"
#~ msgid "Reconfigure local network"
#~ msgstr "Rekonfigurer lokalt nettverk"
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
index be0816873..c689d1cfb 100644
--- a/perl-install/share/po/pl.po
+++ b/perl-install/share/po/pl.po
@@ -1,58 +1,110 @@
-# KTranslator Generated File
-# some descriptive title.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (c) 1999 MandrakeSoft
-# PaweЁ JabЁoЯski <pj@linux-mandrake.com>, 1999.
+# Pawel Jablonski <pj@linux-mandrake.com>, 1999-2000.
# Wojciech Karas <karas@uci.agh.edu.pl>, 2000
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
-"PO-Revision-Date: 2000-06-05 11:05\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
+"PO-Revision-Date: 2000-10-06 11:32+0200\n"
"Last-Translator: Pawel Jablonski <pj@linux-mandrake.com>\n"
-"Language-Team: Polish\n"
+"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-2\n"
-"Content-Transfer-Encoding: 8-bit\n"
+"Content-Type: text/plain; charset=ISO 8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.5.5\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Konfiguracja podstawowa"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Karta graficzna"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Wybierz kartЙ graficzn╠"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Wybierz X serwer"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X serwer"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
+
+#: ../../Xconfigurator.pm_.c:220
+msgid "Which configuration of XFree do you want to have?"
+msgstr "KtСr╠ konfiguracjЙ XFree chcesz mieФ?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Dla Twojej karty akceleracja 3D jest obsЁugiwana tylko przez XFree %s.\n"
+"Posiada ona jednak lepsz╠ obsЁugЙ 2D w XFree %s."
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "Dla Twojej karty akceleracja 3D jest obsЁugiwana tylko przez XFree %s."
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s z obsЁug╠ sprzЙtowej akceleracji 3D"
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Dla Twojej karty akceleracja 3D jest obsЁugiwana tylko przez XFree %s.\n"
+"JEST TO ROZWI║ZANIE EKSPERYMENTALNE, MO╞E ZAWIESIф KOMPUTER.\n"
+"Dla Twojej karty akceleracja 2D jest obsЁugiwana lepiej przez XFree %s."
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Dla Twojej karty akceleracja 3D jest obsЁugiwana przez XFree %s.\n"
+"JEST TO ROZWI║ZANIE EKSPERYMENTALNE, MO╞E ZAWIESIф KOMPUTER."
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s z EKSPERYMENTALN║ obsЁug╠ sprzЙtowej akceleracji 3D "
+
+#: ../../Xconfigurator.pm_.c:265
+msgid "XFree configuration"
+msgstr "Konfiguracja XFree"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Okre╤l rozmiar pamiЙci karty graficznej"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Wybierz opcje serwera"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Wybierz monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -65,49 +117,49 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-"Dwa krytyczne parametry to czЙstotliwo╤Ф synchronizacji pionowej, ktСra "
-"okre╤la\n"
-"jak czЙsto odswie©any jest caЁy ekran, oraz najbardziej istotny - "
-"czЙstotliwo╤Ф synchronizacji poziomej - odswie©ania linii.\n"
+"Dwa krytyczne parametry to czЙstotliwo╤Ф synchronizacji pionowej,\n"
+"ktСra okre╤la, jak czЙsto od╤wie©any jest caЁy ekran, oraz najbardziej "
+"istotny\n"
+"- czЙstotliwo╤Ф synchronizacji poziomej - rysowania linii.\n"
"\n"
"Jest BARDZO WA╞NE aby nie podaФ typu monitora o wiЙkszym zakresie\n"
-"czЙstotliwo╤ci odchylania ni© mo©liwo╤ci Twojego monitora, poniewa©\n"
-"mo©e to spowodowaФ uszkodzenie Twojego monitora.\n"
+"czЙstotliwo╤ci odchylania ni© mo©liwo╤ci Twojego monitora,\n"
+"poniewa© mo©e to spowodowaФ jego uszkodzenie.\n"
"Je╤li masz w╠tpliwo╤ci, wybierz bardziej zachowawcze ustawienia."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "CzЙstotliwo╤Ф synchronizacji poziomej"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "CzЙstotliwo╤Ф synchronizacji pionowej"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Nie skonfigurowano monitora"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Nie skonfigurowano jeszcze karty graficznej"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Nie okre╤lono jeszcze rozdzielczo╤ci"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Chcesz przetestowaФ t╠ konfiguracjЙ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
-msgstr "Ostrze©enie: testowanie tej karty mo©e byФ niebezpieczne"
+#: ../../Xconfigurator.pm_.c:431
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "Ostrze©enie: testowanie tej karty mo©e zawiesiФ komputer"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Test konfiguracji"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -115,186 +167,172 @@ msgstr ""
"\n"
"sprСbuj zmieniФ jakie╤ parametry"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Wyst╠piЁ bЁ╠d:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Pozostalo %d sekund"
-#
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "DziaЁa prawidЁowo?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Wyst╠piЁ bЁ╠d, sprСbuj zmieniФ jakie╤ parametry"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Automatyczny dobСr rozdzielczo╤ci"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"W celu okre╤lenia dostЙpnych rozdzielczo╤ci zostan╠ wyprСbowane\n"
-"rС©ne ustawienia. Ekran mo©e migotaФ...\n"
-"Je╤li chcesz, mo©esz wyЁ╠czyФ monitor, po zakoЯczeniu usЁyszysz d╪wiЙk."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Rozdzielczo╤Ф"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Okre╤l rozdzielczo╤Ф oraz gЁЙbiЙ kolorСw"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Karta graficzna: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Serwer XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Poka© wszystkie"
-#
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Rozdzielczo╤ci"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"PrСba wykrycia dostЙpnych rozdzielczo╤ci (np. 800x600).\n"
-"mo©e spowodowaФ w rzadkich przypadkach zawieszenie komputera.\n"
-"Czy chcesz sprСbowaФ?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Nie znaleziono dziaЁaj╠cych trybСw pracy\n"
-"WyprСbuj inn╠ kartЙ graficzn╠ lub monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "UkЁad klawiatury: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myszy: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Port myszy: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Synchronizacja pozioma monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Synchronizacja pionowa monitora: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Karta graficzna: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
-msgstr "PamiЙc karty: %s kB\n"
+msgstr "PamiЙФ karty: %s kB\n"
+
+#: ../../Xconfigurator.pm_.c:1028
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "Ilo╤Ф kolorСw: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "Rozdzielczo╤Ф: %s\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Serwer XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Sterownik XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Przygotowanie konfiguracji X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "ZmieniФ monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "ZmieniФ kartЙ graficzn╠"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "ZmieniФ opcje serwera"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "ZmieniФ rozdzielczo╤Ф"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Automatycznie dobraФ rozdzielczo╤Ф"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "ZobaczyФ informacje"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "PowtСrnie testowaФ"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Wyj╤Ф"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Co chcesz zrobiФ?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "ZignorowaФ zmiany?"
+#: ../../Xconfigurator.pm_.c:1082
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ZachowaФ zmainy?\n"
+"Aktualna konfiguracja jest nastЙpuj╠ca:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "By uaktywniФ zmiany zaloguj siЙ ponownie do %s"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ProszЙ u©yФ Ctrl-Alt-BackSpace po wylogowaniu"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X przy uruchomieniu "
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -302,234 +340,221 @@ msgstr ""
"Mo©na skonfigurowaФ komputer, by X-y byЁy automatycznie uruchamiane.\n"
"Czy chcesz, by X-y uruchamiaЁy siЙ po restarcie?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Automatyczne rejestrowanie w systemie"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Mo©na skonfigurowaФ komputer, by automatycznie rejestrowaЁ u©ytkownika\n"
+"w systemie. Je╤li nie chcesz korzystaФ z tej mo©liwo╤ci, wybierz Anuluj."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Wybierz domy╤lnego u©ytkownika:"
+
+#: ../../Xconfigurator.pm_.c:1155
+msgid "Choose the window manager to run:"
+msgstr "Wybierz uruchamianego mened©era okien:"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 kolorСw (8 bitСw)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 tysi╠ce kolorСw (15 bitСw)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 tysiЙcy kolorСw (16 bitСw)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milionСw kolorСw (24 bity)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miliardy kolorСw (32 bity)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB lub wiЙcej"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 przy 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 przy 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Zgodny z 8514, 1024x768 przy 87 Hz z przeplotem (bez 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 przy 87 Hz z przeplotem, 800x600 in 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended SVGA, 800x600 przy 60 Hz, 640x480 przy 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA bez przeplotu, 1024x768 przy 60 Hz, 800x600 przy 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "WysokoczЙstotliwo╤ciowy SVGA, 1024x768 przy 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "WieloczЙstotliwo╤ciowy do 1280x1024 przy 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "WieloczЙstotliwo╤ciowy do 1280x1024 przy 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "WieloczЙstotliwo╤ciowy do 1280x1024 przy 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor do 1600x1200 przy 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor do 1600x1200 przy 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "kЙdzierzawa"
-
-#
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "domy╤lna"
-
-#
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "krawaciarz"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunetk(ka)"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "dziewczynka"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "blondynka"
-
-#
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automatyczna"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Pierwszy sektor na partycji startowej"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Pierwszy sektor na dysku (MBR)"
-#
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
-msgstr "Instalacja LILO/Grub"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Instalacja SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
-msgstr "Gdzie chcesz zainstalowaФ bootloader?"
+msgstr "Gdzie chcesz zainstalowaФ program rozruchowy?"
-#
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Instalacja LILO/Grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
-msgstr "╞adnego"
+msgstr "Brak"
-#
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
-msgstr "KtСrego bootloadera chcesz u©yФ?"
+msgstr "Jaki program rozruchowy chcesz u©ywaФ?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Instalacja programu rozruchowego"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Urz╠dzenie startowe"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nie dziaЁa ze starym BIOSem)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Odczytuj du©e bloki"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "(dla dyskietek)"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "OpС©nienie przed startowaniem domy╤lnego obrazu"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Tryb video"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "OpС╪nienie przed uruchomieniem domy╤lnego systemu"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "HasЁo"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "HasЁo (ponownie)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Ograniczenie opcji linii komend"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ograniczenie"
-#
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
-msgstr "GЁСwne opcje bootloadera"
+msgstr "Podstawowe opcje programu rozruchowego"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcja \"Ograniczenie opcji linii komend\" nie dziaЁa bez hasЁa"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "ProszЙ sprСbowaФ ponownie"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "HasЁa nie zgadzaj╠ siЙ"
-#
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -537,229 +562,448 @@ msgstr ""
"Masz nastЙpuj╠ce pozycje.\n"
"Mo©esz dodaФ nastЙpne lub zmieniФ istniej╠ce."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Zrobione"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Jakiego typu pozycjЙ chcesz dodaФ?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
-msgstr "Inny OS (windows...)"
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Inny OS (SunOS...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Jakiego typu pozycjЙ chcesz dodaФ?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "Inny OS (Windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Obraz"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "DoЁ╠cz"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Zapis-odczyt"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Niebezpieczne"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Etykieta"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Domy╤lne"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "UsuЯ pozycjЙ"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Pusta etykieta jest niedozwolona"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Ta etykieta jest ju© u©ywana"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Znaleziono %s %s interfejsСw"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Masz inne?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Czy masz interfejs %s?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nie"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Tak"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Poka© informacjЙ o sprzЙcie"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalacja sterownika do karty %s %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(moduЁ %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "KtСry sterownik %s wyprСbowaФ?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"W pewnych przypadkach sterownik %s potrzebuje dodatkowych\n"
+"informacji do poprawnego dziaЁania, mimo ©e zazwyczaj dziaЁa\n"
+"bez nich. Czy chcesz podaФ dodatkowe parametry, czy te© \n"
+"pozwolisz sterownikowi wykryФ je automatycznie?\n"
+"Czasami wykrywanie mo©e zawiesiФ komputer, nie powoduje to\n"
+"jednak ©adnych problemСw (utraty danych)."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Autodetekcja"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Okre╤l parametry"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Mo©esz teraz okre╤liФ parametry moduЁu %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Mo©esz przekazaФ do moduЁu %s parametry.\n"
+"S╠ one w formacie \"nazwa1=warto╤Ф1 nazwa2=warto╤Ф2 ...\n"
+"Np. \"io=0x300 irq=7\" "
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Opcje moduЁu:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Nieudane zaЁadowanie moduЁu %s.\n"
+"Chcesz sprСbowaФ z innymi parametrami?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#: ../../bootloader.pm_.c:234
+#, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Witamy w programie wybierajacym system - %s\n"
+"\n"
+"Wybierz system operacyjny z listy powyzej lub\n"
+"czekaj %d sekund na domyslny start.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Witamy w programie wybierajacym system - GRUB!"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Uzyj %c i %c klawiszy , aby podswietlic pozycje."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+"Nacisnij Enter, aby zaladowac wybrany system operacyjny, `e' aby wyedytowac"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "komendy przed zaladowaniem albo `c' , aby pracowac w linii polecen."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Podswietlony system zostanie uruchomiony po %d sekundach."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nie ma ju© miejsca na /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Pulpit"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Menu start"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr "%d minut"
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr "1 minuta"
+
+#: ../../common.pm_.c:614
+#, c-format
+msgid "%d seconds"
+msgstr "%d sekund"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "UtwСrz"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Odmontuj"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "UsuЯ"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatuj"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "ZmieЯ rozmiar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Typ"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Punkt montowania"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Zapisz /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "PrzeЁ╠cz na tryb zaawansowany"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "PrzeЁ╠cz na tryb standardowy"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "PrzywrСФ z pliku"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Zapisz do pliku"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr "Kreator"
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "PrzywrСФ z dyskietki"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Zapisz na dyskietkЙ"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Wyczy╤Ф wszystko"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Sformatuj wszystko"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Rozmie╤Ф automatycznie"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Wszystkie partycje podstawowe s╠ u©ywane"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Nie mo©na dodaФ wiЙcej partycji"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-"By mieФ wiЙcej partycji, nale©y usun╠c jedn╠, by byЁo mo©liwe utworzenie\n"
-" partycji rozszerzonej"
+"By mieФ wiЙcej partycji, nale©y usun╠Ф jedn╠,\n"
+"by byЁo mo©liwe utworzenie partycji rozszerzonej."
-#
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Odzyskaj tablicЙ partycji"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Cofnij"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Zapisz tablicЙ partycji"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "PrzeЁaduj"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Pusta"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Inna"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Pusta"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Inna"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Typy systemu plikСw:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "SzczegСЁy"
-#
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -768,99 +1012,99 @@ msgid ""
msgstr ""
"Na dysku jest jedna wielka partycja FAT.\n"
"(zazwyczaj u©ywana przez Microsoft Dos/Windows)\n"
-"Proponujemy zacz╠Ф od pomniejszenia partycji\n"
+"Nale©y zacz╠Ф od pomniejszenia tej partycji\n"
"(kliknij na partycji, po czym kliknij na \"ZmieЯ rozmiar\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
-msgstr "Najpierw zarchiwizuj swoje dane"
+msgstr "ProszЙ zacz╠Ф od archiwizacji danych"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Czytaj uwa©nie!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"Je©eli masz zamiar u©ywaФ (aboot) pamiЙtaj, by zostawiФ, \n"
+"Je©eli masz zamiar u©ywaФ aboot pamiЙtaj, by zostawiФ, \n"
"wolne miejsce na pocz╠tku dysku - wystarczy 2048 sektorСw."
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Uwa©aj: ta operacja jest niebezpieczna"
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "BЁ╠d"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Punkt montowania: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Urz╠dzenie: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Dosowy dysk: %s (przypuszczalnie)\n"
+msgstr "Dosowy dysk: (przypuszczalnie %s)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Rodzaj: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
-msgstr "Start: sektor Nr %s\n"
+msgstr "Start: sektor %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Rozmiar: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorСw"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cylinder %d do cylindra %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Sformatowana\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Nie sformatowana\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Zamontowano\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Plik(i) \"loopback\":%s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -868,79 +1112,79 @@ msgstr ""
"Domy╤lna partycja startowa\n"
" (dla startu MS-DOS, nie dla lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Poziom %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Rozmiar kawaЁka %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dyski RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Nazwa pliku \"loopback\":%s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "ProszЙ klikn╠Ф na partycji"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Rozmiar: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cylindrСw, %s gЁowic, %s sektorСw\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabeli partycji: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
-msgstr "Na szynie %d id %d\n"
+msgstr "na szynie %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Montuj"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Aktywuj"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Dodaj do RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "UsuЯ z RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Modyfikuj RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "U©yj dla loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Wybierz czynno╤Ф"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -949,10 +1193,10 @@ msgid ""
msgstr ""
"Niestety, nie mo©na utworzyФ /boot tak daleko na dysku (poza cylindrem "
"1024)\n"
-"Albo u©yjesz LILO, (nie bЙdzie dziaЁaФ), lub nie bЙdziesz u©ywaФ LILO\n"
+"Albo u©yjesz LILO, (nie bЙdzie dziaЁaФ), lub nie bЙdziesz u©ywaФ lilo\n"
"i nie potrzebujesz /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -960,69 +1204,69 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"DodaЁe╤ partycjЙ root (/) na dysku poza cylindrem 1024, nie ma te©\n"
-"partycji /boot. Je©eli wiЙc chcesz u©ywaФ boot menad©era lilo\n"
+"partycji /boot. Je©eli wiЙc chcesz u©ywaФ programu rozruchowego lilo\n"
"dodaj partycjЙ /boot poni©ej cylindra 1024"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-"WybraЁe╤ jako partycjЙ root (/) softwarowy RAID.\n"
-"╞aden bootloader nie jest w stanie obsЁu©yФ jej bez partycji /boot\n"
-".PamiЙtaj wiЙc o dodaniu partycji /boot, je╤li chcesz u©ywaФ grub lub lilo"
+"WybraЁe╤ jako partycjЙ root (/) programowy RAID.\n"
+"╞aden program rozruchowy nie jest w stanie obsЁu©yФ jej bez partycji /boot.\n"
+"PamiЙtaj wiЙc o dodaniu partycji /boot."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "U©yj zamiast tego ``%s'' "
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Najpierw ``Odmontuj'' "
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Po zmianie typu partycji %s, wszystkie dane na niej zostan╠ utracone"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "KontynuowaФ mimo to?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Wyj╤cie bez zapisywania"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Opu╤ciФ program bez zapisywania tabeli partycji?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Zmiana typu partycji"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Jaki typ partycji wybierasz?"
+#: ../../diskdrake.pm_.c:471
+msgid "Which filesystem do you want?"
+msgstr "Jaki system plikСw chcesz wykorzystaФ?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nie mo©na u©ywaФ ReiserFS na partycji mniejszej ni© 32MB"
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdzie chcesz zamontowaФ plik ``loopback'' %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdzie chcesz zamontowaФ urz╠dzenie %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1030,141 +1274,143 @@ msgstr ""
"Nie mo©na odmontowaФ tej partycji, gdy© jest u©ywana przez loopback.\n"
"UsuЯ najpierw loopback."
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Po sformatowaniu wszystkie dane na partycji %s, zostan╠ utracone"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatowanie"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatowanie pliku loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatowanie partycji %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "Po sformatowaniu wszystkich partycji,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "wszystkie dane znajduj╠ce siЙ na nich zostan╠ utracone"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "PrzesuЯ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Na ktСry dysk chcesz przenie╤Ф ?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "Na ktСry sektor chcesz przenie╤Ф ?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Przenoszenie"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Przenoszenie partycji..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tablica partycji napЙdu %s bЙdzie zapisana na dysk!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
-msgstr "Nale©y zrestartowaФ komputer przed uaktywnieniem modyfikacji"
+msgstr "Nale©y zrestartowaФ komputer przed uaktywnieniem zmian"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Obliczanie granic systemu plikСw FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Zmiana rozmiaru"
-#
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+msgid "This partition is not resizeable"
+msgstr "Tej partycji nie mo©na zmniejszyФ"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Wszystkie dane na tej partycji powinny zostaФ zarchiwizowane"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Po zmianie rozmiaru partycji %s, wszystkie dane na niej zostan╠ utracone"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Okre╤l nowy rozmiar"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "UtwСrz now╠ partycjЙ"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Sektor startowy: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Rozmiar w MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Typ systemu plikСw: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Preferencja:"
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "Ta partycja nie mo©e byФ u©yta przez loopback."
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Nazwa pliku \"loopback\": "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Plik jest u©ywany przez urz╠dzenie typu \"loopback\", wybierz inny"
-#
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Plik ju© istnieje. U©yФ go?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Wybierz plik"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1172,11 +1418,11 @@ msgstr ""
"Zapasowa tablica partycji ma inny rozmiar\n"
"KontynuowaФ?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Ostrze©enie"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1184,79 +1430,79 @@ msgstr ""
"WЁС© dyskietkЙ do stacji.\n"
"Wszystkie dane na niej zostan╠ utracone"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "PrСba odzyskania tablicy partycji"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "urz╠dzenie"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "poziom"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "rozmiar kawaЁka"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Wybierz istniej╠cy RAID aby dodaФ do niego"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nowy"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatowania z %s nieudane"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nie wiem jak sformatowaФ %s typu %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "nieudane montowanie nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "nieudane montowanie"
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "bЁ╠d odmontowania %s; %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Punkty montowania musz╠ zaczynaФ siЙ od /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Istnieje partycja z punktem montowania %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "ZapЙtlone montowanie %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr "Ten katalog powinien byФ wewn╠trz systemu plikСw / (root)"
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-"Potrzebujesz porz╠dnego systemu plikСw (ext2,reiserfs) dla tego punku "
-"montowania\n"
+"Dla tego punktu montowania potrzebujesz porz╠dnego systemu plikСw "
+"(ext2,reiserfs)\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "BЁ╠d otwarcia %s do zapisu: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1264,76 +1510,124 @@ msgstr ""
"Wyst╠piЁ bЁ╠d - nie znaleziono urz╠dzeЯ, na ktСrych mo©na utworzyФ nowe \n"
"systemy plikСw. Sprawd╪ sprzЙt, by wykryФ przyczynЙ"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Nie masz ©adnych partycji!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
-msgstr "Wybierz jЙzyk instalacji i u©ywania systemu."
+#: ../../help.pm_.c:9
+msgid ""
+"Please choose your preferred language for installation and system usage."
+msgstr "Wybierz wЁa╤ciwy jЙzyk instalacji i u©ywania systemu."
-#: ../../help.pm_.c:10
+#: ../../help.pm_.c:12
+msgid ""
+"You need to accept the terms of the above license to continue installation.\n"
+"\n"
+"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
+"\n"
+"\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+"By kontynuowaФ instalacjЙ, musisz zaakceptowaФ warunki licencji.\n"
+"\n"
+"\n"
+"Wybierz \"Zgadzam siЙ\", je╤li zgadzasz siЙ z jej warunkami.\n"
+"\n"
+"\n"
+"Wybierz \"Nie zgadzam siЙ\", je╤li siЙ z nimi nie zgadzasz.\n"
+"Instalacja zostanie zakoЯczona bez ©adnych zmian w konfiguracji."
+
+#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Wybierz odpowiedni ukЁad klawiatury z listy powy©ej"
+msgstr "Wybierz odpowiedni jЙzyk i ukЁad klawiatury z listy powy©ej"
-#
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:25
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+"Je╤li chcesz, by po instalacji byЁy dostЙpne tak©e inne jЙzyki\n"
+"(poza wybranym na pocz╠tku instalacji), wybierz je z listy powy©ej\n"
+"Je╤li chcesz wybraФ wszystkie, wska© \"Wszystkie\"."
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
+"\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
msgstr ""
-"Wybierz \"Instalacja\" je╤li nie masz zainstalowanej ©adnej starszej wersji\n"
-"Linuxa, lub je╤li chcesz u©ywaФ wielu dystrybucji lub wersji.\n"
+"Wybierz \"Instalacja\" je╤li nie masz zainstalowanej starszej wersji\n"
+"Linux-Mandrake, lub je╤li chcesz u©ywaФ wielu dystrybucji lub wersji.\n"
"\n"
-"Wybierz \"Aktualizacja\" je╤li chcesz zaktualizowaФ poprzedni╠ wersjЙ\n"
-" Mandrake Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 "
-"(Helios), Gold 2000 or 7.0 (Air).\n"
"\n"
+"Wybierz \"Aktualizacja\" je╤li chcesz zaktualizowaФ ju© zainstalowan╠ wersjЙ "
+"Mandrake Linux:\n"
"\n"
-"Wybierz:\n"
"\n"
-" - Automatyczna (zalecane): Wybierz, je╤li nie instalowaЁe╤ Linuxa nigdy "
-"wcze╤niej\n"
-" UWAGA: sieФ nie jest konfigurowana w czasie instalacji, u©yj "
-"\"LinuxConf\" by j╠ skonfigurowaФ po zakoЯczeniu instalacji\n"
+"W zale©no╤ci od poziomu Twojej znajomo╤ci GNU/Linuksa mo©esz wybraФ jeden z "
+"nastЙpuj╠cych sposobСw instalacji\n"
+" lub aktualizacji systemu operacyjnego Linux-Mandrake.\n"
"\n"
-" - U©ytkownika: Je╤li jeste╤ obeznany z GNU/Linux, mo©esz okre╤liФ\n"
-" podstawowe zastosowanie komputera. SzczegСЁy poni©ej\n"
+"\t* Zalecany: Je╤li nie instalowaЁe╤ GNU/Linuksa nigdy wcze╤niej, wybierz "
+"ten sposСb instalacji,\n"
+"\t jest bardzo prosty, odpowiesz na kilka prostych pytaЯ\n"
"\n"
-" - Dla eksperta: ╕wietnie znasz GNU/Linux i chcesz zainstalowaФ go\n"
-" w nietypowy, odpowiedni dla Ciebie sposСb . Podobnie jak w klasie "
-"instalacji\n"
-" \"U©ytkownika\" masz mo©liwo╤c okre╤lenia zastosowania systemu\n"
-" Ale bardzo, bardzo prosimy, NIE WYBIERAJ TEJ OPCJI, JE╕LI NIE WIESZ CO "
-"ROBISZ!\n"
+"\n"
+"\t* U©ytkownika: Je╤li jeste╤ obeznany z GNU/Linux, mo©esz okre╤liФ "
+"podstawowe zastosowanie komputera. (stacja robocza, serwer\n"
+"\t programowanie). Odpowiesz tak©e na wiЙcej pytaЯ, ni© przy "
+"sposobieinstalacji \"Zalecany\".\n"
+"\t tak wiЙc powiniene╤ trochЙ znaФ GNU/Linuksa, by wybraФ ten "
+"rodzajinstalacji\n"
+"\n"
+"\n"
+"\t* Ekspert: Je╤li dobrze znasz GNU/Linuksa, wybierz ten sposСb instalacji "
+"Podobnie jak w instalacji \"U©ytkownika\", bЙdziesz mСgЁ okre╤liФ podstawowe "
+"zastosowanie komputera. Przemy╤l,\n"
+" czy na pewno chcesz wybraФ ten rodzaj instalacji. BЙdziesz mСgЁ "
+"przeprowadziФ bardzo zindywidualizowan╠ instalacjЙ, lecz\n"
+"\t odpowied╪ na niektСre pytania mo©e byФ bardzo trudna bez dobrej "
+"znajomo╤ci GNU/Linuksa.\n"
+"\t Nie wybieraj wiЙc tego rodzaju instalacji, je╤li nie jeste╤ pewien."
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1341,12 +1635,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Wybierz:\n"
"\n"
@@ -1354,94 +1649,97 @@ msgstr ""
" - U©ytkownika: Je╤li jeste╤ obeznany z Linuxem, masz mo©liwo╤Ф\n"
" okre╤lenia zastosowania zainstalowanego systemu. SzczegСЁy poni©ej\n"
"\n"
-"- Dla eksperta: ╕wietnie znasz GNU/Linux i chcesz zainstalowaФ go\n"
-" w nietypowy, odpowiedni dla Ciebie sposСb . Podobnie jak w klasie "
-"instalacji\n"
-" \"U©ytkownika\" masz mo©liwo╤c okre╤lenia zastosowania systemu\n"
+"\n"
+" - Ekspert: ╕wietnie znasz GNU/Linux i chcesz zainstalowaФ go\n"
+" w nietypowy, odpowiedni dla Ciebie sposСb . Podobnie jak w przypadku\n"
+" instalacji \"U©ytkownika\" masz mo©liwo╤Ф okre╤lenia zastosowania "
+"systemu\n"
" Ale bardzo, bardzo prosimy, NIE WYBIERAJ TEJ OPCJI, JE╕LI NIE WIESZ CO "
-"ROBISZ!\n"
+"ROBISZ!"
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-"RС©ne przeznaczenia twojej maszyny ( zakЁadam, ©e wybraЁe╤ wcze╤niej\n"
-"opcjЙ \"uzytkownika\" lub \"ekspert\" ) to:\n"
+"Teraz nale©y okre╤liФ sposСb wykorzystania komputera. \n"
+"\t* Stacja robocza: To dokonaЁy wybСr, je╤li u©ywasz komputera do codziennej "
+"pracy w biurze lub\n"
+"\t w domu.\n"
"\n"
-" - Typowa: wybierz j╠, je©eli chcesz u©ywaФ komputera do codziennej pracy\n"
-" typu biurowego ( edycja, grafika i.t.d.). Nie oczekuj instalacji ©adnych "
"\n"
-" narzЙdzi programowych.\n"
+"\t* Programowanie: wybierz tЙ opcjЙ, je©eli chcesz korzystaФ z komputera do "
+"tworzenia oprogramowania.\n"
+"\t Zostanie zainstalowane caЁe oprogramowanie umo©liwiaj╠ce kompilacjЙ , "
+"debugowanie programСw,\n"
+"\t oraz tworzenie pakietСw oprogramowania.\n"
"\n"
-" - Programowanie: wybierz tЙ opcjЙ, je©eli chcesz siЙ posЁugiwaФ "
-"komputerem\n"
-" do tworzenia oprogramowania. Zostan╠ zainstalowane pakiety, "
-"umo©liwiaj╠ce \n"
-" kompilacjЙ , debugowanie programСw oraz tworzenie pakietСw "
-"oprogramowania.\n"
"\n"
-" - Serwer: wybierz tЙ opcjЙ, je©eli twoja maszyna ma sЁu©yФ jako serwer - \n"
-" plikСw (NFS lub SMB ), serwer drukarek uniksowy - lp lub \"windoЁsowy\"\n"
-" (SMB), serwer NIS, serwer baz danych itp.\n"
-" Nie oczekuj wtedy ©adnych kwiatkСw do ko©ucha typu KDE lub GNOME\n"
+"\t* Serwer: jest to wЁa╤ciwy wybСr, je╤li komputer ma byc serwerem Mo©e to "
+"byФ serwer plikСw (NFS lub\n"
+"\t SMB ), serwer drukarek (uniksowy typu \"windowsowego\") serwer NIS, "
+"serwer baz danych itp.\n"
+"\t Nie oczekuj zainstalowaniea ©adnych wodotryskСw typu KDE lub GNOME."
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
"DrakX sprСbuje wykryФ kontroler(y) SCSI na magistrali PCI.\n"
"Je╤li je odnajdzie i rozpozna, ktСre sterowniki nale©y u©yФ\n"
"zaЁaduje je automatycznie.\n"
"\n"
-"\n"
"Je╤li posiadasz kontroler SCSI ISA, lub PCI, ale DrakX nie\n"
-"wykryЁ sterownika do niego, lub je╤li nie masz kontrolerСw SCSI\n"
-"zostaniesz o to zapytany. Je╤li nie masz ©adnego, odpowiedz\n"
+"wykryje sterownika do niego, zostaniesz zapytany, czy w Twoim\n"
+"systemie istnieje kontroler SCSI. Je╤li nie masz ©adnego, odpowiedz\n"
"\"Nie\", je╤li masz jeden lub wiЙcej, odpowiedz \"Tak\". Uka©e siЙ\n"
-"lista sterownikСw, z ktСrej nale©y wybraФ wЁa╤ciwy.\n"
+"wСwczas lista sterownikСw, z ktСrej nale©y wybraФ wЁa╤ciwy.\n"
"\n"
"\n"
"Po wybraniu sterownika, DrakX spyta CiЙ, czy chcesz okre╤liФ\n"
@@ -1450,47 +1748,217 @@ msgstr ""
"\n"
"\n"
"Je╤li nie, podaj sterownikowi opcje znalezione w dokumentacji,\n"
-"lub takie, jak w Windows (je╤li je posiadasz)"
+"na stronie producenta sprzЙtu (je╤li masz dostЙp do Internetu)\n"
+"lub takie, jak w Windows (je╤li je posiadasz). PodrЙcznik instalacji\n"
+"pomo©e Ci odnale╪Ф potrzebne parametry."
-#
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
+"W tym etapie instalacji okre╤lasz, gdzie na dysku zostanie zainstalowany\n"
+"Linux-Mandrake. Je╤li dysk jest pustylub istniej╠ce systemy operacyjne\n"
+"zajmuj╠ caЁe dostЙpne miejsce, nale©y podzieliФ dysk na partycje\n"
+"Partycjonowanie to po prostu logiczny podziaЁ twrdego dysku na oddzielne\n"
+"obszary w celu zainstalowania systemu Linux-Mandrake\n"
+"\n"
+"\n"
+"Poniewa© efekt partycjonowania jest nieodwracalny, czynno╤Ф wydaje siЙ\n"
+"straszna i jest stresuj╠ca dla niedo╤wiadczonych u©ytkownikСw.\n"
+"Kreator ten upraszcza ten proces, tak wiЙc nie siЙ czego obawiaФ,\n"
+"tym niemniej warto po╤wiЙciФ nieco czasu na wcze╤niejsze\n"
+"zapoznanie siЙ z dokumentacj╠\n"
+"\n"
+"\n"
+"NiezbЙdne s╠ co najmniej 2 partycje: jedna dla systemu operacyjnego\n"
+"oraz druga na pamiЙФ wirtualn╠ (swap).\n"
+"\n"
+"\n"
+"Je╤li partycje tes ju© zostaЁy utworzone (w czasie poprzedniej instalacji\n"
+"lub przy pomocy innego narzЙdzia), nale©y je wybraФ do zainstalowania\n"
+"systemu Linux\n"
+"\n"
+"\n"
+"Je╤li partcje te nie istniej╠ , nale©y je utworzyФ.\n"
+"By to zrobiФ, u©yj powy©szego kreatora. Mo©liwych jest kilka rozwi╠zaЯ\n"
+"zale©nych od konfiguracji dysku twardego:\n"
+"\n"
+"\t* U©ycie istniej╠cych partycji: gdy kreator wykryje jedn╠ lub wiЙcej "
+"istniej╠cych partycji linuksowych,\n"
+"\t wybierz to rozwi╠zanie, je╤li chcesz u©yФ te partycje na now╠ "
+"instalacjЙ.\n"
+"\n"
+"\n"
+"\t* Skasowanie zawarto╤ci caЁego dysku: Je╤li chcesz skasowaФ ze swojego\n"
+"dysku wszystkie dane i wszystkie partycje\n"
+"\t i zast╠piФ nowym systemem Linux-Mandrake, wybierz to rozwi╠zanie. "
+"PamiЙtaj,w tym przypadku nie\n"
+"\t nie ma mo©liwo╤ci odwrotu po potwierdzeniu wyboru.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"\t* U©yj wolnego miejsca na partycji Windows: Je╤li na dysku jest "
+"zainstalowany\n"
+"Microsoft Windows i zajmuje \n"
+"\t caЁe dostЙpne miejsce,mo©liwe jest utworzenie wolnego miejsca dla "
+"Linuksa. By to zrobiФ, mo©na skasowaФ \n"
+"\t partycjЙ Windows wraz z danymi (patrz \"Wyma© caЁy dysk\" lub \"Tryb "
+"eksperta\") lub zmieniФ\n"
+"\t rozmiar partycji Windows. Zmiana rozmiaru jest realizowana bez\n"
+"utraty ©adnych danych. \n"
+"\t To rozwi╠zanie jest zalecane, je╤li chcesz u©ywaФ zarСwno "
+"Linuksa-Mandrake, jak i Windows\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"\t Nale©y pamiЙtaФ, ©e w ten sposСb partycja Windows bЙdzie mniejsza ni© "
+"dotej pory. Oznacza to\n"
+"\t mniej wolnego miejsca na dane oraz instalacjЙ nowych programСw\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
+"\t* Tryb eksperta: wybierz t╠ opcjЙ, je╤li chcesz partycjonowaФ swСj dysk "
+"rЙcznie.PamiЙtaj!\n"
+"\t Wybranie tej opcji daje Ci du©e mo©liwo╤ci, lecz jest bardzo "
+"niebezpieczne.Bardzo Ёatwo mo©na utraciФ wszystkie dane\n"
+"\t Nie wybieraj wiЙc tej opcji, je╤li naprawdЙ nie wiesz, co robisz!"
+
+#: ../../help.pm_.c:160
+msgid ""
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
"W tym etapie instalacji wybierasz partycje, na ktСrych bЙdzie instalowany\n"
"Linux-Mandrake, je╤li istniej╠, np. pozostaЁy po poprzedniej instalacji,\n"
@@ -1499,388 +1967,934 @@ msgstr ""
"na na oddzielne obszary\n"
"\n"
"\n"
-"Je╤li zakЁadasz nowe partycje, u©yj przycisku \"Rozmie╤Ф automatycznie\", "
-"by\n"
-"je utworzyc. Nale©y wcze╤niej okre╤liФ dysk, na ktСrym maj╠ byФ zaЁo©one\n"
-"partycje - hda dla pierwszego dysku IDE, hdb dla drugiego, sda, dla\n"
-"pierwszego dysku SCSI.\n"
+"Utworzenie partycji nale©y rozpocz╠Ф os wybrania dysku. Robi siЙ to przez\n"
+"klikniЙcie na zakЁadce \"hda\" dla pierwszego dysku IDE, \"hdb\" dla "
+"drugiego,\n"
+"lub \"sda1\" dla pierwszego dysku SCSI, itd.\n"
"\n"
"\n"
-"Dwie podstawowe partycje to partycja / (root) bЙd╠ca punktem startowym\n"
-"systemu plikСw oraz maЁa partycja /boot zawieraj╠ca pliki konieczne do\n"
-"uruchomienia systemu Linux po wЁ╠czeniu komputera\n"
+"W celu podzielenia dysku na partycje mo©na u©yФ nastЙpuj╠cych opcji:\n"
"\n"
+" * Wyczy╤Ф wszystko: ta opcja kasuje wszystkie partycje na wybranym "
+"dysku.\n"
"\n"
-"Poniewa© efekt partycjonowania jest nieodwracalny, czynno╤Ф wydaje siЙ\n"
-"straszna i stresuj╠ca dla niedo╤wiadczonych u©ytkownikСw. DiskDrake \n"
-"upraszcza ten proces, tak wiЙc nie siЙ czego obawiaФ, tym niemniej warto\n"
-"po╤wiЙciФ nieco czasu na wcze╤niejsze zapoznanie siЙ z dokumentacj╠\n"
+"\n"
+" * Rozmie╤Ф automatycznie: ta opcja automatycznie tworzy partycje ext2\n"
+"oraz swap na wolnym (niespartycjonowanym) miejscu dysku\n"
+"\n"
+"\n"
+" * Odzyskaj tablicЙ partycji: je╤li tablica partycji jest uszkodzona, "
+"mo©na\n"
+"sprСbowaФ j╠ odzyskaФ przy pomocy tej opcji. B╠d╪ ostro©ny i pamiЙtaj,\n"
+"©e ta opcja mo©e zawie╤Ф\n"
+"\n"
+"\n"
+" * Cofnij: u©yj tej opcji by anulowaФ zmiany.\n"
+"\n"
+"\n"
+" * PrzeЁaduj: u©yj tej opcji, je╤li chcesz cofn╠Ф wszystkie zmiany i "
+"zaЁadowaФ\n"
+"pocz╠tkow╠ tablicЙ partycji\n"
+"\n"
+"\n"
+" * Kreator: Mo©esz u©yФ kreatora, ktСry pomo©e Ci podzieliФ dysk na "
+"partycje\n"
+"Zalecane, je╤li niewiele wiesz o podziale na partycje.\n"
+"\n"
+"\n"
+" * PrzywrСФ z dyskietki: je╤li podczas poprzedniej instalacji zapisaЁe╤ "
+"tabelЙ\n"
+"partycji na dyskietce, mo©esz odzyskaФ j╠ korzystaj╠c z tej opcji.\n"
+"\n"
+"\n"
+" * Zapisz na dyskietkЙ: Mo©esz zapisaФ na dyskietkЙ tablicЙ partycji, by "
+"mieФ\n"
+"mo©liwo╤Ф jej odzyskania w przypadku pomyЁki\n"
+"U©ycie tej opcji jest bardzo zalecane\n"
+"\n"
+"\n"
+" * Zrobione: po zakoЯczeniu partycjonowania dysku u©yj tej opcji do "
+"zapisania\n"
+"na dysku zmian.\n"
+"\n"
+"\n"
+" Mo©esz wybraФ odpowiedni╠ opcjЙ u©ywaj╠c klawisza \n"
+"TAB i strzaЁek gСra/dСЁ klawiatury. \n"
"\n"
"\n"
-" Mo©esz wybraФ odpowiedni╠ opcjЙ u©ywaj╠c przyciskСw \n"
-"TAB i strzaЁek gСra(dСЁ) z klawiatury. \n"
"Po wybraniu partycji mo©esz nacisn╠Ф:\n"
-"- Ctrl-c by utworzyФ now╠ partycjЙ ( je©eli zostaЁa zaznaczony pusty obszar\n"
"\n"
-"- Ctrl-d by usun╠Ф partycjЙ\n"
+" * Ctrl-c by utworzyФ now╠ partycjЙ ( je©eli zostaЁ wybrany pusty "
+"obszar\n"
+"\n"
+" * Ctrl-d by usun╠Ф partycjЙ\n"
+"\n"
+" * Ctrl-m by okre╤liФ punkt montowania"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+"Powy©ej pokazano wykryte na Twoim dysku istniej╠ce partycje linuksowe\n"
+"Mo©esz zastosowaФ wybСr okre╤lony przez kreatora, s╠ one odpowiednie\n"
+"w wiЙkszo╤ci przypadkСw. Jesli chcesz zmieniФ , musisz okre╤liФ co najmniej\n"
+"partycjЙ root (\"/\"). Nie wybieraj zbyt maЁej partycji - nie bЙdziesz mСgЁ "
+"wСwczas\n"
+"zainstalowaФ zbyt du©o oprogramowania. Je╤li chcesz trzymaФ swoje dane na \n"
+"oddzielnej partycji, mo©esz tak©e wybraФ \"/home\" (jest to mo©liwe tylko, "
+"je╤li\n"
+"masz wiЙcej ni© jedn╠ partycjЙ linuksow╠\n"
+"\n"
+"\n"
+"Dla informacji, ka©da partycja jest okre╤lona przez \"NazwЙ\" i "
+"\"Rozmiar\".\n"
+"\n"
+"\n"
+"Nazwa jest okre╤lana nastЙpuj╠co: \"typ dysku\",\"numer dysku\",\n"
+"\"numer partycji\". (na przykЁad \"hda1\").\n"
+"\n"
+"\n"
+"\"Typ dysku\" to \"hd\" w przypadku dyskСw IDE, \"sd\" w przypadku SCSI\n"
+"\n"
+"\n"
+"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysku IDE:\n"
+"\n"
+" * \"a\" oznacza pierwszy dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"b\" oznacza drugi dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"c\" oznacza pierwszy dysk na drugim kontrolerze IDE\n"
+"\n"
+" * \"d\" oznacza drugi dysk na drugim kontrolerze IDE\n"
+"\n"
+"\n"
+"W przyadku dyskСw SCSI \"a\" oznacza pierwszy dysk twardy,\n"
+"\"b\" - drugi dysk twardy, itd."
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+"Wybierz dysk, ktСry chcesz skasowaФ, by zaЁo©yФ na nim\n"
+"partycje Linux-Mandrake. PamiЙtaj, ©e wszystkie dane z tego\n"
+"dysku zoastan╠ utracone bez mo©liwo╤ci odzyskania."
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
+msgstr ""
+"Wybierz \"OK\", je╤li chcesz usun╠Ф dane na wszystkich partycjach\n"
+"istniej╠cych na dysku. PamiЙtaj, po wybraniu \"OK\", nie bЙdzie\n"
+"mo©liwe odzyskanie ©adnych danych z partycji (tak©e Windows)\n"
+"\n"
+"\n"
+"Wybierz \"Anuluj\", by anulowaФ t╠ operacjЙ bez utraty danych."
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+"Na dysku wykryto wiЙcej ni© jedn╠ partycjЙ Windows. Wybierz, ktСr╠\n"
+"z nich chcesz zmniejszyФ w celu zainstalowania Linux-Mandrake\n"
+"\n"
"\n"
-"- Ctrl-m by okre╤liФ punkt montowania\n"
+"Dla informacji, ka©da partycja jest okre╤lona przez\n"
+" \"NazwЙ linuksow╠\", \"NazwЙ Windows\" i \"Rozmiar\".\n"
+"\n"
+"\n"
+"Nazwa linuksowa jest okre╤lana nastЙpuj╠co: \"typ dysku\",\"numer dysku\",\n"
+"\"numer partycji\". (na przykЁad \"hda1\").\n"
+"\n"
+"\n"
+"\"Typ dysku\" to \"hd\" w przypadku dyskСw IDE, \"sd\" w przypadku SCSI\n"
+"\n"
+"\n"
+"\"Numer dysku\" to litera po \"hd\" lub \"sd\". W przypadku dysku IDE:\n"
+"\n"
+" * \"a\" oznacza pierwszy dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"b\" oznacza drugi dysk na pierwszym kontrolerze IDE\n"
+"\n"
+" * \"c\" oznacza pierwszy dysk na drugim kontrolerze IDE\n"
+"\n"
+" * \"d\" oznacza drugi dysk na drugim kontrolerze IDE\n"
+"\n"
+"\n"
+"W przyadku dyskСw SCSI \"a\" oznacza pierwszy dysk twardy,\n"
+"\"b\" - drugi dysk twardy, itd.\n"
+"\n"
+"\"Nazwa Windows\" to litera dysku pod Windows (pierwszy dysk \n"
+"lub partycja to \"C:\")."
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr "B╠d╪ cierpliwy. Ta operacja mo©e potrwaФ kilkana╤cie minut."
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Wszystkie nowo utworzone partycje musz╠ byФ sformatowane przed\n"
-"u©yciem (formatowanie tj. utworzenie systemu plikСw). Mo©esz teraz\n"
-"powtСrnie sformatowaФ wcze╤niej istniej╠ce partycje, by usun╠Ф\n"
-"znajduj╠ce siЙ na nich dane. Uwaga: nie jest konieczne powtСrne\n"
-"formatowanie wcze╤niej zaЁozonych partycji, szczegСlnie, je╤li\n"
-"zawieraj╠ one pliki lub dane, ktСre chcesz zachowaФ.\n"
-"Zwykle zachowywane s╠ /home oraz /usr/local."
+"Wszystkie nowo powstaЁe partycje musz╠ zostaФ sformatowane przed\n"
+"wykorzystaniem (formatowanie oznacza utworzenie systemu plikСw).\n"
+"\n"
+"\n"
+"Mo©na teraz tak©e powtСrnie sformatowaФ istniej╠ce ju© partycje, by\n"
+"usun╠Ф znajduj╠ce siЙ na nich dane. Je╤li chcesz to zrobiФ, zaznacz\n"
+"partycje do sformatowania\n"
+"\n"
+"\n"
+"PamiЙtaj, ©e nie jest konieczne formatowanie wszystkich istniej╠cych ju©\n"
+"partycji. Nale©y sformatowaФ partycje zawieraj╠ce system operacyjny:\n"
+"\"/\", \"/usr\" oraz \"/var\", nie jest natomiast knieczne formatowanie\n"
+"partycji zawieraj╠cych dane, ktСre chcesz zachowaФ (zazwyczaj /home).\n"
+"Uwa©nie wybieraj partycje do sformatowania, po sformatowaniu wszystkie\n"
+"dane zostan╠ utracone bez mo©Ёiwo╤ci ich odzyskania.\n"
+"\n"
+"\n"
+"Wybierz \"OK\", je╤li jeste╤ ju© gotowy do formatowania partycji.\n"
+"\n"
+"\n"
+"Wybierz \"Anuluj\", je╤li chcesz wybraФ do zainstalowania\n"
+"Linuksa-Mandrake inne partycje."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
-msgstr ""
-"Mo©esz teraz wybraФ grupЙ pakietСw, ktСre chcesz \n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
+msgstr ""
+"Mo©esz teraz wybraФ grupy pakietСw, ktСre chcesz \n"
"zainstalowaФ lub aktualizowaФ\n"
"\n"
-"DrakX sprawdzi, czy masz na to do╤Ф miejsca na dysku. Je©eli nie, to\n"
-"zostaniesz ostrze©ony. Jednak je©eli postanowisz mimo to kontynuowaФ,\n"
-"to czЙ╤Ф mniej wa©nych pakietСw nie zostanie zainstalowana.\n"
+"\n"
+"DrakX sprawdzi, czy masz na to do╤Ф miejsca na dysku. Zostaniesz\n"
+"ostrze©ony, je╤li jest go zbyt maЁo. Je╤li postanowisz mimo to kontynuowaФ,\n"
+"czЙ╤Ф mniej wa©nych pakietСw nie zostanie zainstalowana.\n"
"Na dole listy znajdziesz opcjЙ \"Samodzielny wybСr pakietСw\"; \n"
"BЙdziesz musiaЁ jednak wybieraФ spo╤rСd wiЙcej ni© 1000 pakietСw ..."
-#: ../../help.pm_.c:150
-msgid ""
-"If you have all the CDs in the list above, 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 ""
-"Je╤li masz wszystkie instalacyjne pЁyty CD z listy powy©ej, kliknij Ok.\n"
-"Je╤li nie masz ©adnej z tych pЁyt, kliknij Anuluj.\n"
-"Je╤li masz niektСre z pЁyt, odznacz te, ktСrych nie masz i kliknij Ok."
-
-#: ../../help.pm_.c:155
-msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
-msgstr ""
-"Wybrane pakiety s╠ teraz instalowane. Operacja ta trwa zazwyczaj\n"
-"kilkana╤cie minut, jedynie w przypadku aktualizacji istniej╠cego\n"
-"systemu przygotowywanie akualizacji mo©e trwaФ dЁu©ej"
-
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:341
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Je╤li DrakX nie wykryje myszy, lub je╤li chcesz sprawdziФ\n"
-"jak╠ wykryЁ, zobaczysz powy©ej listЙ typСw myszy\n"
+"Mo©na teraz indywidualnie wybieraФ pakiety do zainstalowania.\n"
+"\n"
+"\n"
+"KlikniЙcie w lewym rogu okna pakietСw zwija lub rozwija listЙ pakietСw\n"
"\n"
"\n"
-"Je╤li zgadzasz siЙ z ustawieniami DrakX, przeskocz tЙ sekcjЙ\n"
-"przez klikniЙcie w menu z lewej strony. W przeciwnym razie\n"
-"wybierz z menu wЁa╤ciwy typ myszy\n"
+"KlikniЙcie na \"PrzeЁ╠cz miЙdzy pЁaskim i grupowym sortowaniem\"\n"
+"umo©liwia zobaczenie pakietСw posortowanych alfabetycznie\n"
"\n"
"\n"
-"W przypadku myszy szeregowej, nale©y takze wskazaФ, do \n"
-"ktСrego portu szeregowego jest ona podЁ╠czona"
+"Je╤Ёi nie chcesz byФ informowany o zalezno╤ciach miedzy pakietami,\n"
+"kliknij na \"Automatyczne sprawdzanie zale©no╤ci\". Po wЁ╠czeniu tej opcji\n"
+"odznaczenie pakietu spowoduje automatyczne odznaczenie innych pakietСw,\n"
+"ktСre wymagaj╠ go do dziaЁanie."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:358
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
-"Wybierz wЁa╤ciwy port. Np. dosowski COM1 odpowiada \n"
-"linuxowemu ttyS0"
+"Je╤li masz wszystkie instalacyjne pЁyty CD z listy powy©ej, kliknij Ok.\n"
+"Je╤li nie masz ©adnej z tych pЁyt, kliknij Anuluj.\n"
+"Je╤li masz niektСre z pЁyt, odznacz te, ktСrych nie masz i kliknij Ok."
-#
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:363
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"\n"
+"Please be patient."
+msgstr ""
+"Trwa instalacje systemu operacyjnego Linux-Mandrake.\n"
+"Zabierze to trochЙ czasu (w zale©no╤ci od ilo╤ci wybranych pakietСw\n"
+"oraz szybko╤ci komputera)\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"B╠d╪ cierpliwy."
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+"Mo©na teraz przetestowaФ mysz. U©yj przyciskСw i kСЁka by sprawdziФ\n"
+"Czy ustawienia s╠ wЁa╤ciwe. Je╤li nie, wybierz \"Anuluj\" by wybraФ inny\n"
+"sterownik."
+
+#: ../../help.pm_.c:376
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Wybierz wЁa╤ciwy port. Na przykЁad COM1 z MS Windows\n"
+"w GNU/Linux nazywa siЙ ttyS0."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"Ta sekcja umo©liwia konfiguracjЙ sieci lokalnej (LAN) lub poЁ╠czenia\n"
-"modemowego.\n"
+"Wybierz wЁa╤ciw╠ opcjЙ, by podЁ╠czyФ komputer do Internetu\n"
+" lub sieci lokalnej. PamiЙtaj o wЁ╠czeniu urz╠dzeЯ zewnЙtrznych\n"
+"przed wybraniem opcji, by DrakX mСgЁ je automatycznie wykryФ.\n"
"\n"
-"Je╤li wybierzesz \"SieФ lokalna\", DrakX sprСbuje wykryФ kartЙ sieciow╠\n"
-"znajduj╠c╠ siЙ w Twoim komputerze. Karty PCI powinny zostaФ\n"
-"wykryte i uruchomione automatycznie. Je╤li jednak posiadasz kartЙ ISA,\n"
-"autodetekcja nie zadziaЁa, nale©y wСwczas samodzielnie wybrac wЁa╤ciwy\n"
-"sterownik z listy.\n"
"\n"
+"Je╤li nie u©ywasz sieci lokalnej ani Internetu, wybierz\n"
+"\"WyЁ╠czenie siecie\".\n"
"\n"
-"Podobnie jak w przypadku kontrolera SCSI, mo©esz pozwoliФ \n"
-"sterownikowi samodzielnie wykryФ ustawienia. Je╤li siЙ to nie\n"
-"powiedzie, podaj dane z dokumentacji Windows.\n"
"\n"
+"Je╤li chcesz skonfigurowaФ sieФ po instalacji, lub zakoЯczyЁe╤\n"
+"konfigurowanie sieci, wybierz \"Zrobione\"."
+
+#: ../../help.pm_.c:393
+msgid ""
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-"Je╤li instalujesz Linux-Mandrake na komputerze bЙd╠cym czЙ╤ci╠\n"
-"istniej╠cej sieci, administrator sieci poda Ci wszystkie konieczne\n"
-"informacje (adres IP, maskЙ sieci, nazwЙ hosta). Je╤li konfigurujesz\n"
-"prywatn╠ sieФ np. w domu, powiniene╤ sam okre╤liФ adresy\n"
+"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+"Nie wykryto modemu. ProszЙ okre╤liФ port szeregowy, do ktСrego jest on "
+"podЁ╠czony.\n"
"\n"
"\n"
-"Wybierz \"ё╠czno╤Ф przez modem\", by skonfigurowaФ poЁ╠czenie \n"
-"z internetem. DrakX sprСbuje wykryФ TwСj modem. \n"
-"Je╤li siЙ to nie powiedzie,nale©y wybraФ port, do ktСrego\n"
-"podЁ╠czony jest modem"
+"Dla informacji: pierwszy port szeregowy (COM1 w Windows)\n"
+"w GNU/Linux nazywa siЙ \"ttyS0\". "
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:400
msgid ""
-"Enter:\n"
-"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
-"\n"
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+"Nale©y teraz podaФ opcje poЁ╠czenia modemowego. Je╤li nie wiesz,\n"
+"lub nie jeste╤ pewien, co wpisaФ, poprawne informacje otrzymasz od\n"
+"Twojego dostawcy Internetu (ISP). Je╤li nie wpiszesz adresСw DNS, zostan╠ "
+"one pobrane od ISP\n"
+"w trakcie poЁ╠czenia."
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+"Je╤li posiadasz zewnЙtrzny modem, wЁ╠cz go, by DrakX mСgЁ go automatycznie "
+"wykryФ."
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr "WЁ╠cz modem i wybierz wЁasciwy model."
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+"Je╤li nie este╤ pewien, ©e powy©sze informacje s╠ prawidЁowe, lub\n"
+"lub nie jeste╤ pewien, co wpisaФ, poprawne informacje otrzymasz od\n"
+"Twojego dostawcy Internetu (ISP). Je╤li nie wpiszesz adresСw DNS, zostan╠ "
+"one pobrane od ISP\n"
+"w trakcie poЁ╠czenia."
+
+#: ../../help.pm_.c:420
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Mo©esz teraz, podaФ nazwЙ hosta (je╤li trzeba).\n"
+"Je╤li nie jeste╤ pewien, co wpisaФ, nale©y uzyskaФ informacje od\n"
+"Twojego dostawcy Internetu (ISP)."
+
+#: ../../help.pm_.c:425
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Podaj:\n"
"\n"
-" - adres IP, je©eli go nie znasz, spytaj administratora sieci.\n"
+" - adres IP, je©eli go nie znasz, spytaj administratora sieci\n"
"\n"
"\n"
" - maskЙ sieci, \"255.255.255.0\" na ogСЁ dziaЁa. \n"
"Je©eli nie jeste╤ pewien, spytaj administratora sieci.\n"
"\n"
"\n"
-" Automatyczne IP: Je©eli twoja sieФ u©ywa protokoЁu dhcp lub bootp,\n"
-"wybierz tЙ opcjЙ. Je©eli nie jeste╤ pewien, spytaj administratora sieci.\n"
+" Automatyczne IP: Je©eli Twoja sieФ u©ywa protokoЁu DHCP lub BOOTP,\n"
+"wybierz tЙ opcjЙ. Je©eli nie jeste╤ pewien, spytaj administratora sieci.\n"
+"W przypadku wybranie tej opcji nie nale©y wpisywaФ adresu IP"
+
+#: ../../help.pm_.c:437
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Mo©esz teraz, podaФ nazwЙ hosta (je╤li trzeba).\n"
+"Je╤li nie jeste╤ pewien, co wpisaФ, nale©y uzyskaФ informacje "
+"odadministratora sieci."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+"Mo©esz teraz, podaФ nazwЙ hosta (je╤li trzeba).\n"
+"Je╤li nie jeste╤ pewien, co wpisaФ, pozostaw to pole puste."
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
-"Mo©esz teraz podaФ opcje poЁ╠czenia modemowego. Je©eli ich nie znasz, "
+"Mo©esz teraz podaФ opcje poЁ╠czenia modemowego. Je©eli ich nie znasz, \n"
"skontaktuj siЙ z dostawc╠ Internetu (ISP)."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
-"Je©eli bЙdziesz u©ywaЁ proxy, skonfiguruj go teraz.\n"
+"Je©eli bЙdziesz korzystaЁ z serwerСw po╤rednicz╠cych, skonfiguruj je teraz.\n"
"Je©eli nie jeste╤ pewien, spytaj administratora sieci lub dostawcy "
"Internetu."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-"Mo©esz u©yФ pakietСw kryptograficznych, je©eli twoje poЁ╠czenie \n"
-"internetowe zostaЁo odpowiednio skonfigurowane. Najpierw wybierz mirror \n"
+"Mo©esz u©yФ pakietСw kryptograficznych, je©eli Twoje poЁ╠czenie \n"
+"z Internetem zostaЁo odpowiednio skonfigurowane. Najpierw wybierz mirror \n"
"(miejsce, sk╠d chcesz ╤ci╠gaФ pakiety) i wybierz pakiety do instalacji\n"
"\n"
-"PamiЙtaj, ©e musisz dziaЁaФ zgodnie z prawem."
+"\n"
+"PamiЙtaj, ©e wybСr mirrora i pakietСw musi byФ zgodny z prawem."
+
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr "Nale©y teraz okre╤liФ strefЙ czasow╠ miejsca, w ktСrym przebywasz."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:465
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Nale©y teraz wybraФ strefЙ czasow╠ odpowiadaj╠c╠ miejscu Twojego\n"
-"zamieszkania\n"
+"GNU/Linux korzysta z czasu GMT \"Czas uniwersalny Greenwich\" tЁumacz╠c go\n"
+"na czas lokalny odpowiednio do wybranej strefy czasowej.\n"
"\n"
-"\n"
-"Linux korzysta z czasu GMT \"Czas uniwersalny Greenwich\" tЁumacz╠c go\n"
-"na czas lokalny odpowiednio do wybranej strefy czasowej."
+"Je╤li u©ywasz te© Windows na tym komputerze, wybierz \"Nie\"."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-"Teraz mo©esz wybraФ usЁugi, jakie chcesz mieФ wЁ╠czone przy starcie "
+"Teraz mo©esz wybraФ usЁugi, jakie chcesz mieФ wЁ╠czone przy starcie\n"
"systemu.\n"
+"\n"
+"\n"
"Je©eli najedziesz mysz╠ na element listy, to pojawi siЙ maЁy obЁoczek \n"
"z opisem tej usЁugi.\n"
+"\n"
+"\n"
"Zachowaj szczegСln╠ ostro©no╤Ф przy wyborze, je©eli chcesz u©ywaФ \n"
-"swojej maszyny jako serwera, bo niektСrych usЁug nie bЙdziesz chciaЁ "
-"uruchamiaФ"
+"swojej maszyny jako serwera, bo niektСrych usЁug nie bЙdziesz chciaЁ\n"
+"uruchamiaФ. PamiЙtaj, ©e uruchomienie niektСrych usЁug na serwerze\n"
+"mo©e byФ niebezpieczne.\n"
+"W ogСlno╤ci, uruchamiaj tylko te usЁugi, ktСrych naprawdЙ potrzebujesz."
-#
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+"Mo©esz skonfigurowaФ drukarkЙ lokaln╠ (podЁ╠czonЙ bezpo╤rednio do\n"
+"Twojego komputera), lub sieciow╠ (dostЙpn╠ poprzez sieФ Unix, Netware\n"
+"lub Microsoft Windows)."
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux obsЁuguje wiele typСw drukarek. Ka©dy typ wymaga innej\n"
-"konfiguracji. PamiЙtaj, ©e domy╤lna drukarka w systemie nazywa siЙ\n"
-"'lp'. Jedna drukarka mo©e mieФ wiele nazw, oddzielonych znakiem '|'\n"
-"Je╤li wiЙc lubisz przyjazne nazwy, mo©esz z nich korzystaФ:\n"
-"np. \"Moja drukarka|lp\".\n"
+"Je╤li chcesz uaktywniФ mo©liwo╤Ф drukowania, wybierz system drukowania\n"
+"(dostЙpne s╠ CUPS i LPR)\n"
"\n"
"\n"
-"Je╤li Twoja drukarka jest bezpo╤rednio podЁ╠czona do komputera, wybierz\n"
-"\"Drukarka lokalna\". NastЙpnie okre╤l port, do ktСrego jest podЁ╠czona\n"
-"oraz wybierz wЁasciwy filtr (sterownik)\n"
+"CUPS to nowy, silny i elastyczny system drukowania dla systemСw Unixowych\n"
+"(CUPS oznacza \"Common Unix Printing System\"). Jest to domy╤lny system\n"
+"wydruku w Linux-Mandrake.\n"
"\n"
"\n"
-"Je╤li chcesz uzyskaФ dostЙp do drukarki zaЁo©onej na zdalnej maszynie\n"
-"Unixowej, powiniene╤ wybraФ \"Zdaln╠ kolejkЙ lpd\".Do jej pracy nie\n"
-"trzeba podawaФ u©ytkownika ani hasЁa, wystarczy znaФ nazwЙ serwera\n"
-"oraz nazwЙ kolejki na serwerze\n"
+"LPR to stary system wydruku u©ywany w poprzednich\n"
+" wersjach Linux-Mandrake.\n"
"\n"
"\n"
-"Je╤li chcesz mieФ dostЙp do drukarki SMB (to znaczy zaЁo©onej na\n"
-"zdalnym komputerze Windows 9x/NT), musisz okre╤liФ jego nazwЙ SMB\n"
-"(nie zawsze jest ona rСwnoznaczna z nazw╠ TCP/IP), adres TCP/IP\n"
-"nazwЙ u©ytkownika, grupЙ, hasЁo oraz oczywi╤cie nazwЙ drukarki.\n"
-"Podobnie jest w przypadku drukarki NetWare (poza informacj╠ o grupie)"
+"Je╤li nie u©ywasz drukarki, wybierz \"Brak\"."
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:505
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+"GNU/Linux obsЁuguje wiele rodzajСw drukarek. Ka©da z nich wymaga\n"
+"wЁasnej konfiguracji.\n"
+"\n"
+"\n"
+"Je╤li drukarka jest fizycznie podЁ╠czona do Twojego komputera, wybierz\n"
+"\"Lokalna drukarka\".\n"
+"\n"
+"\n"
+"Je╤li chcesz uzyskaФ dostЙp do drukarki na zdalnym komputerze z Unixem,\n"
+"wybierz \"Zdalna drukarka\".\n"
+"\n"
+"\n"
+"Je╤li chcesz uzyskaФ dostЙp do drukarki zaЁozonej na zdalnym komputerze\n"
+"z Microsoft Windows (lub Unixie z Samb╠), wybierz \"SMB/Windows 95/98/NT\"."
+
+#: ../../help.pm_.c:521
+msgid ""
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
+"\n"
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Teraz nale©y wpisaФ hasЁo roota Twojego Mandrake-Linuxa.\n"
-"HasЁo wpisuje siЙ dwa razy w celu weryfikacji poprawno╤ci jego\n"
-"wpisania\n"
+"Nale©y teraz wЁ╠czyФ drukarkЙ, by umo©liwiФ DrakX wykryФ j╠.\n"
+"\n"
+"Koniezne te© jest podanie kilku informacji.\n"
+"\n"
+"\n"
+"...*.Nazwa drukraki: system wydruku wykorzystuje \"lp\" jako domy╤ln╠ "
+"drukarkЙ, powiniene╤ posiadaФ drukarkЙ\n"
+" o takiej nazwie. Jedna drukarka mo©e mieФ wiele nazw, oddzielonych "
+"znakiem '\"'\".\n"
+" Je╤li wiЙc lubisz przyjazne nazwy, mo©esz z nich korzystaФ:np. \"Moja "
+"drukarka|lp\".\n"
+" Drukarka, ktСrej jedn╠ z nazw jest \"lp\" bЙdzie drukarka domy╤ln╠\n"
+"\n"
+"\n"
+" * Opis drukarki jest opcjonalny, lecz u©yteczny je╤li posiadasz wiЙcej "
+"drukarek, lub te© udostЙpniasz je innym\n"
+"\n"
+"\n"
+" * Lokalizacja. Je╤li chcesz podaФ informacje o poЁo©eniu drukarki,\n"
+" wpisz je tutaj (mo©esz wpisaФ cokolwiek, np. \"Drugie piЙtro\").\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+"Nale©y wpisaФ tutaj kilka informacji.\n"
+"\n"
+"\n"
+" * Nazwa kolejki: system wydruku wykorzystuje \"lp\" jako domy╤ln╠ "
+"drukarkЙ, powiniene╤ posiadaФ drukarkЙ\n"
+" o takiej nazwie. Jedna drukarka mo©e mieФ wiele nazw, oddzielonych "
+"znakiem '\"'\".\n"
+" Je╤li wiЙc lubisz przyjazne nazwy, mo©esz z nich korzystaФ:np. \"Moja "
+"drukarka|lp\".\n"
+" Drukarka, ktСrej jedn╠ z nazw jest \"lp\" bЙdzie drukarka domy╤ln╠\n"
+"\n"
+" \n"
+" * Katalog bufora: jest to katalog, gdzie s╠ zapisywane drukowane zadania. "
+"Nie zmieniaj domy╤lnego wpisu,\n"
+" je╤li nie wiesz, co wpisaФ\n"
+"\n"
+"\n"
+" * PodЁ╠czenie drukarki. Je╤li drukarka jest fizycznie podЁ╠czona do "
+"Twojego komputera, wybierz\n"
+" \"Lokalna drukarka \".\n"
+"\n"
+"\n"
+" Je╤li chcesz uzyskaФ dostЙp do drukarki na zdalnym komputerze z "
+"Unixem,\n"
+" wybierz \"Zdalna drukarka lpd\".\n"
+"\n"
+"\n"
+" Je╤li chcesz uzyskaФ dostЙp do drukarki zaЁozonej na zdalnym komputerze "
+"z Microsoft Windows\n"
+" (lub Unixie z Samb╠), wybierz \"SMB/Windows 95/98/NT\".\n"
+"\n"
+" Je╤li chcesz uzyskaФ dostЙp do drukarki w sieci Netware, wybierz "
+"\"NetWare\".\n"
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+"Nie wykryto drukarki. Podaj nazwЙ portu, do ktСrego jest podЁ╠czona\n"
+"\n"
+"\n"
+"Dla informacji: wiЙkszo╤Ф drukarek podЁ╠cza siЙ do pierwszego "
+"porturСwnolegЁego\n"
+"Nazywa siЙ on w GNU/Linuksie \"/dev/lp0\", natomiast w Windows\"LPT1\""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr "Wybierz drukarkЙ z listy powy©ej."
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+"Wybierz wЁa╤ciwe dla swojej drukarki opcje.\n"
+"Je╤li nie wiesz, co zaznaczyФ, zapoznaj siЙ z dokumentacj╠ drukarki\n"
+"\n"
+"\n"
+"W nastЙpnym kroku bЙdzie mo©liwe sprawdzenie wybranej konfiguracjioraz jej "
+"modyfikacja, je╤li nie bЙdzie dziaЁaФ jak nale©y."
+
+#: ../../help.pm_.c:585
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
+msgstr ""
+"Teraz nale©y wpisaФ hasЁo roota Twojego Linux-Mandrake.\n"
+"HasЁo nale©y wpisaФ dwa razy w celu weryfikacji poprawno╤ci\n"
"\n"
"\n"
"Root to administrator systemu, jedyny u©ytkownik maj╠cy prawo\n"
"modyfikacji konfiguracji systemu.ZwrСФ wiЙc szczegСln╠ uwagЙ na\n"
"jego hasЁo!. Nieautoryzowane u©ycie konta roota mo©e byФ skrajnie\n"
"niebezpieczne dla integralno╤ci systemu i danych oraz innych systemСw,\n"
-"podЁ╠czonych do niego. HasЁo powinno byФ mieszank╠ znakСw alfanumery-\n"
+"podЁ╠czonych do niego.\n"
+"\n"
+"\n"
+" HasЁo powinno byФ mieszank╠ znakСw alfanumery-\n"
"cznych o dЁugo╤ci co najmniej 8 znakСw. *Nigdy* nie powinno byФ\n"
-"zapisywane. Nie wymy╤laj jednak hasЁa zbyt dЁugiego lub nazbyt\n"
+"zapisywane.\n"
+"\n"
+"Nie wymy╤laj jednak hasЁa zbyt dЁugiego lub nazbyt\n"
"skomplikowanego: musisz go zapamiЙtaФ bez kЁopotu."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"WiЙkszy poziom bezpieczeЯstwa systemu zapewniaj╠ opcje:\n"
+"By zwiЙkszyФ poziom bezpieczeЯstwa systemu nale©y wЁ╠czyФ:\n"
"\"U©yj pliku shadow\" i \"U©yj dЁugich haseЁ MD5\" "
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Je©eli twoja sieФ u©ywa NIS (systemu informacji sieciowej),\n"
+"Je©eli Twoja sieФ u©ywa NIS (systemu informacji sieciowej),\n"
"wybierz \"U©yj NIS\". \n"
"Je©eli nie jeste╤ pewien, spytaj administratora sieci."
-#
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1907,7 +2921,7 @@ msgstr ""
"bЙd╠cych przeciwieЯstwem konta \"uprzywilejowanego\" u©ytkownika\n"
"- roota. Mo©esz utworzyФ jedno lub wiЙcej kont dla ka©dej osoby, ktСrej\n"
"chcesz umo©liwiФ korzystanie z komputera. PamiЙtaj, ©e ka©de konto ma\n"
-"indywidualne preferencje (╤rodowisko graficzne, ustawienia programСw,itp.)\n"
+"indywidualne ustawienia (╤rodowisko graficzne, ustawienia programСw,itp.)\n"
"oraz wЁasny \"katalog domowy\", w ktСrych te ustawienia s╠ zapisywane.\n"
"\n"
"\n"
@@ -1919,50 +2933,46 @@ msgstr ""
"\n"
"Powiniene╤ wiЙc do normalnej pracy w systemie korzystaФ z konta\n"
"zwykЁego u©ytkownika, natomiast konto roota wykorzystywaФ tylko\n"
-"do administracji oraz konfiguracji systemu"
+"do administracji oraz konfiguracji systemu."
-#
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"Bardzo, bardzo prosimy, odpowiedz \"Tak\" tutaj. Na przykЁad, kiedy\n"
-"przeinstalujesz Windows, zama©e on sektor startowy. Je╤li nie zrobisz\n"
-"dysku startowego jak sugerujemy, nie bЙdziesz mСgЁ ju© wiЙcej\n"
-"uruchomiФ Linuxa"
+"Utworzenie dysku startowego jest bardzo zalecane. Je╤li nie bЙdzie\n"
+"mo©na uruchomiФ komputera, bЙdzie to jedyny sposСb na naprawЙ\n"
+"bez reinstalacji."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Powiniene╤ wskazaФ, gdzie chcesz\n"
-"umie╤ciФ informacje wymagane do uruchomienia Linuxa\n"
+"umie╤ciФ informacje wymagane do uruchomienia GNU/Linuxa\n"
"\n"
"\n"
-"Je╤li nie wiesz dokЁadnie, co robisz, wybierz \"Pierwszy sektor na\n"
-"dysku (MBR)\"."
+"Je╤li nie wiesz dokЁadnie, co robisz, wybierz\n"
+" \"Pierwszy sektor na dysku (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
-"Standardowy wybСr to \"/dev/hda\", czyli pierwszy dysk twardy (primary "
-"IDE)\n"
-"lub \"/dev/sda\" pierwszy dysk SCSI (first SCSI disk)."
+"Standardowy wybСr to \"/dev/hda\", czyli pierwszy dysk twardy (primary\n"
+" IDE) lub \"/dev/sda\" pierwszy dysk SCSI (first SCSI disk)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1972,16 +2982,18 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"LILO ( Linux LOader ) i Grub to bootloadery systemu: potrafi╠ uruchomiФ\n"
-"Linuxa lub inny system operacyjny, zainstalowany na twoim komputerze.\n"
+"LILO ( LInux LOader ) i Grub to programy rozruchowe: potrafi╠ uruchomiФ\n"
+"GNU/Linux lub inny system operacyjny, zainstalowany na twoim komputerze.\n"
"Normalnie inne systemy s╠ wykrywane i instalowane. Je©eli tak nie jest,\n"
-"powiniene╤ \"rЙcznie\" wprowadziФ odpowiednie dane. B╠d© ostro©ny\n"
+"powiniene╤ \"rЙcznie\" wprowadziФ odpowiednie dane. B╠d╪ ostro©ny\n"
"i wybierz wЁa╤ciwe parametry.\n"
-" Mo©esz oczywi╤cie rСwnie© uniemo©liwiФ dostЙp do nich przy starcie przez \n"
-" usuniЙcie ich z listy. Musisz jednak posiadaФ dysketki startowe, aby do "
-"nich \"wej╤Ф\""
+"\n"
+" \n"
+"Mo©esz oczywi╤cie rСwnie© uniemo©liwiФ dostЙp do nich przy starcie przez \n"
+"usuniЙcie ich z listy. W tej sytuacji musisz jednak posiadaФ dyskietki\n"
+"startowe, by je uruchomiФ."
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1998,33 +3010,87 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"GЁСwne opcje LILO i Grub to:\n"
-" - Urz╠dzenie Ёaduj╠ce system: Wybiera urz╠dzenie, ktСre zawiera sektor "
-"Ёaduj╠cy\n"
-" zwykle jest to \"/dev/hda\". Wybierz tak, je©eli nie masz pewno╤ci.\n"
+" - urz╠dzenie startowe: urz╠dzenie, ktСre zawiera sektor Ёaduj╠cy\n"
+"zwykle jest to \"/dev/hda\". Wybierz tak, je©eli nie masz pewno╤ci.\n"
"\n"
"\n"
" - Czas opС╪nienia uruchamiania domy╤lnego systemu:\n"
-" okre╤la, ile czasu masz do rozpoczЙcia uruchamiania domy╤lnego systemu.\n"
-" To przydaje siЙ w systemach, ktСre s╠ tak skonfigurowane, ©e "
-"uruchamianie \n"
-" nastЙpuje z twardego dysku, natychmiast po wЁaczeniu klawiatury.\n"
-" Program Ёaduj╠cy nie czeka, je©eli opС╪nienie jest rСwne zero,\n"
-" lub pominiesz tЙ opcjЙ,\n"
+"okre╤la, ile czasu masz do rozpoczЙcia uruchamiania domy╤lnego systemu.\n"
+"To przydaje siЙ w systemach, ktСre s╠ tak skonfigurowane, ©e\n"
+"uruchamianie nastЙpuje z twardego dysku, natychmiast po uaktywnieniu\n"
+"klawiatury. Program Ёaduj╠cy nie czeka, je©eli opС╪nienie jest rСwne zero,\n"
+"lub pominiesz tЙ opcjЙ,\n"
"\n"
"\n"
" - Tryb graficzny: okre╤la tryb tekstowy VGA, ktСry powinien byФ wybrany\n"
-" podczas Ёadowania. Opcje to:\n"
-" * normal: wybierz tryb 80x25.\n"
-" * <numer>: wybierz tryb o danym numerze."
+"podczas Ёadowania. Opcje to:\n"
+"\n"
+" * normal: wybierz tryb 80x25.\n"
+"\n"
+" * <numer>: wybierz tryb o danym numerze."
+
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"SILO to program rozruchowy dla SPARC: pozwala on uruchomiФ\n"
+"GNU/Linux lub inny system operacyjny, zainstalowany na twoim komputerze.\n"
+"Normalnie inne systemy s╠ wykrywane i instalowane. Je©eli tak nie jest,\n"
+"powiniene╤ \"rЙcznie\" wprowadziФ odpowiednie dane. B╠d╪ ostro©ny\n"
+"i wybierz wЁa╤ciwe parametry.\n"
+"\n"
+" \n"
+"Mo©esz oczywi╤cie rСwnie© uniemo©liwiФ dostЙp do nich przy starcie przez \n"
+"usuniЙcie ich z listy. W tej sytuacji musisz jednak posiadaФ dyskietki "
+"startowe\n"
+"by je uruchomiФ."
+
+#: ../../help.pm_.c:692
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"GЁСwne opcje SILO to:\n"
+" - urz╠dzenie startowe: urz╠dzenie, ktСre zawiera sektor Ёaduj╠cy\n"
+" Je╤li nie wiesz dokЁadnie, co chcesz zrobiФ, wybierz \"Pierwszy "
+"sektor dysku (MBR)\"\n"
+"\n"
+"\n"
+" - Czas opС╪nienia uruchamiania domy╤lnego systemu:\n"
+" okre╤la, ile czasu masz do rozpoczЙcia uruchamiania domy╤lnego systemu.\n"
+" To przydaje siЙ w systemach, ktСre s╠ tak skonfigurowane, ©e "
+"uruchamianie nastЙpuje z twardego dysku, natychmiast po wЁaczeniu "
+"klawiatury. Program Ёaduj╠cy nie czeka, je©eli opС╪nienie jest rСwne zero,\n"
+" lub pominiesz tЙ opcjЙ."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2036,18 +3102,18 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"PrzyszedЁ czas na konfiguracjЙ systemu X Window, ktСry jest rdzeniem\n"
-"GUI (graficznego interfejsu u©ytkownika) Linuxa. W tym celu musisz\n"
+"GUI (graficznego interfejsu u©ytkownika) GNU/Linuxa. W tym celu musisz\n"
"skonfigurowaФ kartЙ graficzn╠ oraz monitor. WiЙkszo╤Ф krokСw jest\n"
-"zautomatyzowana, tak wiЙФ Twoje zadanie polega na weryfikacji tego,\n"
+"zautomatyzowana, tak wiЙc Twoje zadanie polega na weryfikacji tego,\n"
"co zostaЁo zrobione oraz akceptowaniu ustawieЯ :)\n"
"\n"
"\n"
-"Kiedy konfiguracja zostanie zakoЯczona, X-y zostan╠ wystartowane\n"
+"Kiedy konfiguracja zostanie zakoЯczona, X-y zostan╠ uruchomione\n"
"(o ile tego chcesz), by╤ mСgЁ sprawdziФ, czy ustawienia s╠ odpowiednie\n"
"Je╤li nie s╠ wЁa╤ciwe, mo©esz siЙ cofn╠Ф i zmieniФ je, tak wiele\n"
-"razy jak jest to potrzebne"
+"razy jak jest to potrzebne."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2055,85 +3121,92 @@ msgstr ""
"Je©eli z konfiguracj╠ X-Сw jest co╤ nie tak, u©yj tych opcji,\n"
"aby poprawnie skonfigurowaФ X Window System"
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
"Je©eli chcesz u©ywaФ graficznego trybu przy rejestrowaniu siЙ w systemie \n"
-"( login) wybierz \"Tak\". w przeciwnym wypadku wybierz \"Nie\"."
+"( logowaniu) wybierz \"Tak\". w przeciwnym wypadku wybierz \"Nie\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
-"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
-"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
-"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
-msgstr ""
-" Teraz mo©esz wybraФ rС©ne dodatkowe opcje dla twojego systemu.\n"
-"\n"
-" - U©ywaФ optymalizacji dysku: ta opcja mo©e zwiЙkszyФ szybko╤Ф twardego "
-"dysku\n"
-" ale jest opcj╠ tylko dla zaawansowanych u©ytkownikСw: \n"
-" niektСre tanie ukЁady scalone mog╠ zniszczyФ Twoje dane, wiЙc b╠d╪ "
-"czujny!\n"
-" Kernel ma wprawdzie wbudowan╠ ochronЙ przed tego rodzaju mo©liwo╤ci╠,\n"
-" a le na wszelki wypadek, lepiej nie wybieraФ tej opcji.\n"
-"\n"
-" - Wybierz poziom bezpieczeЯstwa: mo©esz wybraФ poziom bezpieczeЯstwa \n"
-" dla twojego systemu. Zajrzyj do podrЙcznika po kompletn╠ informacjЙ.\n"
-" Zasadniczo: je©eli nie wiesz co zrobiФ , wybierz \"╤redni\" ; \n"
-" Je©eli chcesz mieФ naprawdЙ bezpieczny system wybierz \"Paranoidalny\".\n"
-" Ale ostrzegam: W TYM TRYBIE NIE MO╞NA LOGOWAф SIй NA KONSOLI JAKO "
-"``ROOT''\n"
-" Musisz siЙ zalogowaФ jako zwykЁy u©ytkownik, i u©yФ ``su''. \n"
-" Generalnie , twoja maszyna bЙdzie mogЁa sЁu©yФ tylko jako serwer.\n"
-"\n"
-" - Sprecyzuj rozmiar pamiЙci, je©eli trzeba: niestety w dzisiejszym ╤wiecie "
-"pecetСw\n"
-" nie ma standardowej metody zapytania BIOSa o wielko╤Ф pamiЙci.\n"
-" Tak wiЙc Linux mo©e wykryФ nieprawidЁowo twoj╠ pamiЙФ. \n"
-" W tym wypadku podaj prawidЁow╠ wielko╤Ф\n"
-" Uwaga: pomyЁka o dwa lub cztery MB jest normalna.\n"
-"\n"
-" - Automatyczne montowanie wyjmowanych dyskСw: Je©eli nie chcesz \"rЙcznie\" "
-"montowaФ\n"
-" mediСw typu CD, stacja dyskietek, Zip, wybierz tЙ opcjЙ\n"
-"\n"
-" - WЁ╠cz NumLock przy starcie: \n"
-" Uwaga : W X-ach klawisz NumLock mo©e nie dziaЁaФ."
-
-#: ../../help.pm_.c:428
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
+msgstr ""
+"Teraz mo©esz wybraФ rС©ne dodatkowe opcje dla Twojego systemu.\n"
+"\n"
+"* U©ywaФ optymalizacji dysku: ta opcja mo©e zwiЙkszyФ szybko╤Ф twardego\n"
+"dysku, ale jest opcj╠ tylko dla zaawansowanych u©ytkownikСw: \n"
+"niektСre kiepskie chipsety mog╠ zniszczyФ Twoje dane, b╠d╪ wiЙc czujny!\n"
+"Kernel ma wprawdzie wbudowan╠ czarn╠ listЙ chipsetСw, ale je╤li chcesz \n"
+"unikn╠Ф przykrej niespodzianki, lepiej nie wybieraФ tej opcji.\n"
+"\n"
+"\n"
+"* Wybierz poziom bezpieczeЯstwa: mo©esz wybraФ poziom bezpieczeЯstwa \n"
+"dla twojego systemu. Zajrzyj do podrЙcznika po szczegСЁow╠ informacjЙ,\n"
+"lub po prostu,je╤li nie wiesz, co zrobiФ , wybierz \"╤redni\" ; \n"
+"\n"
+"\n"
+"* Sprecyzuj rozmiar pamiЙci, je©eli trzeba: niestety w dzisiejszym ╤wiecie\n"
+"pecetСw nie ma standardowej metody zapytania BIOS-u o wielko╤Ф pamiЙci.\n"
+"Tak wiЙc GNU/Linux mo©e wykryФ nieprawidЁowo Twoj╠ pamiЙФ. \n"
+"W tym wypadku podaj prawidЁow╠ wielko╤Ф\n"
+"Uwaga: rС©nica o 2 lub 4 MB jest normalna.\n"
+"\n"
+"\n"
+"* Automatyczne montowanie wyjmowanych dyskСw: Je©eli nie chcesz\n"
+"\"rЙcznie\" montowaФ mediСw typu CD, stacja dyskietek, Zip,\n"
+"zaznacz tЙ opcjЙ\n"
+"\n"
+"\n"
+"* Wyczy╤Ф /tmp przy ka©dym starcie systemu: zaznacz t╠ opcjЙ, je╤li\n"
+"je╤li chcesz kasowaФ wszystkie pliki i katalogi zapiasane w /tmp przy \n"
+"starcie systemu,\n"
+"\n"
+"\n"
+" - WЁ╠cz NumLock przy starcie: zaznacz t╠ opcjЙ, je╤li chcesz uaktywniФ\n"
+" klawiaturЙ numeryczn╠ po stacie Uwaga : W X-ach klawisz NumLock mo©e "
+"dziaЁaФ lub nie, nie uaktywniaj te©\n"
+"tej opcji w przypadku laptopСw."
+
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2144,344 +3217,371 @@ msgstr ""
"Teraz nast╠pi ponowne uruchomienie systemu.\n"
"\n"
"TwСj nowy Linux Mandrake zostanie zaЁadowany automatycznie.\n"
-"Je©eli chciaЁby╤ zaЁadowaФ inny system operacyjny \n"
+"Je©eli chciaЁby╤ zaЁadowaФ inny z posiadanych systemСw operacyjnych \n"
"przeczytaj dodatkowe instrukcje."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "WybСr jЙzyka"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Rodzaj instalacji"
-#
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Kontrolery SCSI"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Konfiguracja myszy"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
-msgstr "UkЁad klawiatury"
+msgstr "WybСr klawiatury"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "RС©ne"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Systemy plikСw"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatowanie"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "WybСr pakietСw"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalacja pakietСw"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Konfiguracja sieci"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Szyfrowanie"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "WybСr strefy czasowej"
-#
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Konfiguracja usЁug"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Konfiguracja drukarki"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "HasЁo roota"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "U©ytkownicy"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Dysk startowy"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
-msgstr "Instalacja bootloadera"
+msgstr "Program rozruchowy"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Konfiguracja X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
-msgstr "Dyskietka automatycznej instalacji"
+msgstr "Dysk auto-instalacji"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Wyj╤cie z instalacji"
-#: ../../install2.pm_.c:337
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "BЁ╠d odczytu pliku $f"
+
+#: ../../install_gtk.pm_.c:426
+msgid "Please test the mouse"
+msgstr "Przetestuj mysz"
+
+#: ../../install_gtk.pm_.c:427
+msgid "To activate the mouse,"
+msgstr "By uaktywniФ mysz,"
+
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr "RUSZ KсёKIEM MYSZY!"
+
+#: ../../install_interactive.pm_.c:23
+#, c-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+"CzЙ╤Ф sprzЙtu w Twoim komputerze wymaga \"firmowych\" sterownikСw.\n"
+"WiЙcej informacji na ten temat uzyskasz z %s"
+
+#: ../../install_interactive.pm_.c:41
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 ""
-" Musisz mieФ partycjЙ root.\n"
-" W tym celu, utwСrz partycjЙ ( lub kliknij na istniej╠c╠).\n"
-" Wybierz \"Punkt montowania\" `/'"
+"Musisz mieФ partycjЙ root.\n"
+"W tym celu, utwСrz partycjЙ ( lub kliknij na istniej╠c╠),\n"
+"nastЙpnie Wybierz \"Punkt montowania\" `/'"
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Nie mogЙ odczytaФ tablicy partycji, jest zbyt uszkodzona :(\n"
-"SprСbujЙ kontynuwaФ z pustymi partycjami"
+#: ../../install_interactive.pm_.c:46
+msgid "You must have a swap partition"
+msgstr "Musisz mieФ partycjЙ wymiany (swap)"
-#: ../../install_any.pm_.c:351
+#: ../../install_interactive.pm_.c:47
msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
+"You don't have a swap partition\n"
+"\n"
+"Continue anyway?"
msgstr ""
-"DiskDrake nie mo©e odczytaФ poprawnie tablicy partycji.\n"
-"Kontynuuj na wЁasn╠ odpowiedzialno╤Ф!"
+"Nie masz partycji swap\n"
+"\n"
+"KontynuowaФ mimo to?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Wyszukiwanie partycji root"
+#: ../../install_interactive.pm_.c:68
+msgid "Use free space"
+msgstr "Wykorzystaj wolne miejsce"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "Informacje"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr "Brak wolnego miejsca do stworzenia nowych partycji"
-#: ../../install_any.pm_.c:403
-#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: To nie jest partycja root, proszЙ wybraФ inn╠."
+#: ../../install_interactive.pm_.c:78
+msgid "Use existing partition"
+msgstr "Skorzystaj z istniej╠cej partycji"
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Nie znaleziono partycji root"
+#: ../../install_interactive.pm_.c:80
+msgid "There is no existing partition to use"
+msgstr "Brak istniej╠cych partycji do wykorzystania"
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nie mo©na u©ywaФ rozgЁaszania bez domeny NIS"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr "Dla loopback u©yj partycji Windows"
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "BЁ╠d odczytu pliku $f"
+#: ../../install_interactive.pm_.c:90
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "KtСr╠ partycjЙ chcesz u©yФ dla Linux4Win?"
-#: ../../install_steps.pm_.c:75
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
-"Wyst╠piЁ jaki╤ bЁ╠d. Nie potrafiЙ poprawnie go obsЁu©yФ\n"
-"Kontynuuj na wЁasn╠ odpowiedzialno╤Ф."
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "Okre╤l rozmiary"
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Powielony punkt montowania %s"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "Rozmiar partycji root w MB:"
-#: ../../install_steps.pm_.c:323
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
-msgstr ""
-"Pewne istotne pakiety nie zostaЁy poprawnie zainstalowane.\n"
-"Prawdopodobnie uszkodzona jest pЁyta lub napЙd CDROM.\n"
-"Sprawd╪ pЁytЙ w innym komputerze u©ywaj╠c polecenia:\n"
-"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "Rozmiar partycji swap w MB: "
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Witaj w %s"
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr "Wykorzystaj wolne miejsce na partycji Windows"
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "NiedostЙpna stacja dyskietek"
+#: ../../install_interactive.pm_.c:105
+msgid "Which partition do you want to resize?"
+msgstr "KtСr╠ partycjЙ chcesz zmniejszyФ?"
+
+#: ../../install_interactive.pm_.c:107
+msgid "Computing Windows filesystem bounds"
+msgstr "Obliczanie granic systemu plikСw Windows"
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Entering step `%s'\n"
-msgstr "PrzechodzЙ do kroku `%s'\n"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
+"Program zmniejszaj╠cy partycjЙ FAT nie potrafi obsЁu©yФ\n"
+"Twojej partycji. Wyst╠piЁ╢ nastЙpuj╠cy bЁ╠d: %s"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
-msgid "You must have a swap partition"
-msgstr "Musisz mieФ partycjЙ wymiany (swap)"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr "Twoja partycja Windows jest zbyt sfragmentowana, uruchom \"defrag\""
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:113
msgid ""
-"You don't have a swap partition\n"
+"WARNING!\n"
"\n"
-"Continue anyway?"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
+"dangerous. If you have not already done so, you should first exit the\n"
+"installation, run scandisk under Windows (and optionally run defrag), then\n"
+"restart the installation. You should also backup your data.\n"
+"When sure, press Ok."
msgstr ""
-"Nie masz partycji swap\n"
+"OSTRZE╞ENIE!\n"
"\n"
-"KontynuowaФ mimo to?"
-
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Okre╤l rozmiar przeznaczony na instalacjЙ"
+"DrakX musi teraz zmieniФ rozmiar partycji Windows.\n"
+"Uwa©aj, jest to niebezpieczne. Je╤li wcze╤niej tego nie zrobiЁe╤,\n"
+"nale©y przerwaФ instalacjЙ, wrСciФ do Windows, zeskanowaФ\n"
+"i zdefragmentowaФ dysk nastЙpnie zrestartowaФ instalacjЙ. \n"
+"Warto rСwnie© zarchiwizowaФ dane na dysku.\n"
+"Je╤li jeste╤ pewny, wybierz OK."
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "CaЁkowity rozmiar: "
+#: ../../install_interactive.pm_.c:122
+msgid "Which size do you want to keep for windows on"
+msgstr "Jaki ma byФ docelowy rozmiar partycji Windows?"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_interactive.pm_.c:123
#, c-format
-msgid "Version: %s\n"
-msgstr "Wersja: %s\n"
+msgid "partition %s"
+msgstr "partycja %s"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_interactive.pm_.c:129
#, c-format
-msgid "Size: %d KB\n"
-msgstr "Rozmiar: %d kB\n"
+msgid "FAT resizing failed: %s"
+msgstr "Zmiana rozmiaru partycji FAT nie powiodЁa siЙ: %s"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Wybierz pakiety do zainstalowania"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+"Nie ma partycji FAT do zmiany rozmiaru lub u©ycia jako loopback\n"
+"(lub brak wolnego miejsca)"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Informacje"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr "Wyma© caЁy dysk"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalacja"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr "UsuЯ Windows(TM)"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instalowanie"
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "Masz wiЙcej ni© 1 dysk twardy, na ktСrym chcesz zainstalowaФ linuxa?"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "ProszЙ czekaФ, "
+#: ../../install_interactive.pm_.c:156
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"WSZYSTKIE istniej╠ce partycje i dane na nich zostan╠ usuniЙte z dysku %s"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "PozostaЁo czasu "
+#: ../../install_interactive.pm_.c:164
+msgid "Expert mode"
+msgstr "Tryb eksperta"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "CaЁkowity czas "
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr "U©yj diskdrake"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Przygotowywanie instalacji"
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr "U©yj fdiska"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:171
#, c-format
-msgid "Installing package %s"
-msgstr "Instalowanie pakietu %s"
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"Mo©esz teraz tworzyФ partycje %s \n"
+"Gdy skoЯczysz, pamiЙtaj o zapisaniu u©ywaj╠c `w'"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "KontynuowaФ?"
+#: ../../install_interactive.pm_.c:195
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Masz za maЁo wolnego miejsca na partycji Windows"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Wyst╠piЁ bЁ╠d porz╠dkowania pakietСw:"
+#: ../../install_interactive.pm_.c:210
+msgid "I can't find any room for installing"
+msgstr "Brak miejsca na instalacjЙ"
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "WykorzystaФ istniej╠c╠ konfiguracjЙ X11?"
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "Kreator podziaЁu na partycje DrakX znalazЁ nastЙpuj╠ce rozwi╠zania:"
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "Wybierz jedn╠ z klas instalacyjnych:"
+#: ../../install_interactive.pm_.c:218
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "Partycjonowanie nie powiodЁo siЙ: %s"
-#
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Nie masz ©adnych ``windowsowych'' partycji!"
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Uruchamianie sieci"
-#
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Nie masz do╤Ф miejsca na Lnx4win."
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Zatrzymywanie sieci"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps.pm_.c:74
msgid ""
-"WARNING!\n"
-"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
-"dangerous. If you have not already done so, you should first exit the\n"
-"installation, run scandisk under Windows (and optionally run defrag), then\n"
-"restart the installation. You should also backup your data.\n"
-"When sure, press Ok."
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
-"OSTRZE╞ENIE!\n"
-"\n"
-"DrakX musi teraz zmieniФ rozmair partycji Windows.\n"
-"Uwa©aj, to mo©e byФ niebezpieczne. Lepiej przerwaФ instalacjЙ,\n"
-"wrСciФ do Windows zeskanowaФ i zdefragmentowaФ dysk, \n"
-"i potem zrestartowaФ instalacjЙ. Powiniene╤ rСwnie© sporz╠dziФ kopie "
-"zapasowe.\n"
-"Ale je©eli nie boisz siЙ , naci╤nij ``enter''"
+"Wyst╠piЁ jaki╤ bЁ╠d. Nie potrafiЙ poprawnie go obsЁu©yФ\n"
+"Kontynuuj na wЁasn╠ odpowiedzialno╤Ф."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
-msgstr "Automatyczna zmiana rozmiaru nie powiodЁa siЙ"
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Powielony punkt montowania %s"
-#
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "KtСr╠ partycjЙ chcesz u©yФ dla Linux4Win?"
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"Pewne istotne pakiety nie zostaЁy poprawnie zainstalowane.\n"
+"Prawdopodobnie uszkodzona jest pЁyta lub napЙd CDROM.\n"
+"Sprawd╪ pЁytЙ w innym komputerze u©ywaj╠c polecenia:\n"
+"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "Okre╤l rozmiary"
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Witaj w %s"
-#
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "Rozmiar partcji root w MB:"
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "NiedostЙpna stacja dyskietek"
-#
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "Rozmiar partycji swap w MB: "
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "PrzechodzЙ do kroku `%s'\n"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
+msgstr ""
+"TwСj system ma maЁo zasobСw. Mo©esz mieФ problemy z instalacj╠.\n"
+"Je╤li te problemy wyst╠pi╠, sprСbuj instalacji w trybie tekstowym.\n"
+"By j╠ uruchomiФ, naci╤nij F1 podczas startu z CD i wpisz \"text\"."
+
+#: ../../install_steps_gtk.pm_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "Wybierz jedn╠ z nastЙpuj╠cych klas instalacji:"
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "CaЁkowity rozmair dla wybranych grup to okoЁo %d MB.\n"
+msgstr "CaЁkowity rozmiar dla wybranych grup to okoЁo %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2494,7 +3594,7 @@ msgstr ""
"MaЁy procent spowoduje instalacjЙ tylko najwa©niejszych pakietСw,\n"
"100%% spowoduje zainstalowanie wszystkiego."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2505,113 +3605,220 @@ msgid ""
msgstr ""
"Masz miejsce na dysku tylko na %d%% pakietСw.\n"
"\n"
-"Je╤li chcesz zainstalowaФ mniej, okre╤l procentowo,\n"
-"ile pakietСw chcesz zainstalowaФ.MaЁy procent spowoduje instalacjЙ tylko "
+"Je╤li chcesz zainstalowaФ mniej, okre╤l procentowo, ile pakietСw\n"
+" chcesz zainstalowaФ. MaЁy procent spowoduje instalacjЙ tylko\n"
"najwa©niejszych pakietСw,\n"
"WybСr %d%% spowoduje zainstalowanie tylu pakietСw ile siЙ da."
-#
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "W nastЙpnym kroku mo©na bЙdzie wybraФ bardziej precyzyjnie"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Procent pakietСw do instalacji"
-#
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Wybierz pakiety do zainstalowania"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Informacje"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalacja"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
-msgstr "Automatyczne sprawdzenie zale©no╤ci"
+msgstr "Automatyczne sprawdzanie zale©no╤ci"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "RozwiЯ drzewo"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "ZwiЯ drzewo"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "PrzeЁ╠cz miЙdzy pЁaskim i grupowym sortowaniem"
-#
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "ZЁy pakiet"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nazwa: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Wersja: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Rozmiar: %d kB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
-msgstr "Przydatno╤Ф: %s\n"
+msgstr "Znaczenie: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "CaЁkowity rozmiar: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Nie mo©esz wybraФ tego pakietu. Nie ma ju© miejsca, by go zainstalowaФ"
+
+#: ../../install_steps_gtk.pm_.c:386
+msgid "The following packages are going to be installed"
+msgstr "NastЙpuj╠ce pakiety zostan╠ zainstalowane"
+
+#: ../../install_steps_gtk.pm_.c:387
+msgid "The following packages are going to be removed"
+msgstr "NastЙpuj╠ce pakiety zostan╠ usuniЙte"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Nie mo©na zmieniФ statusu tego pakietu."
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ten pakiet jest konieczny, nie mo©na go pomin╠Ф"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
-msgstr "Nie mo©esz odznaczyФ tego pakietu. ZostaЁ ju© zainstalowany."
+msgstr "Nie mo©na odznaczyФ tego pakietu. ZostaЁ ju© zainstalowany."
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-"Ten pakiet musi byФ uakualniony.\n"
+"Ten pakiet musi byФ uaktualniony.\n"
"Jeste╤ pewien, ©e chcesz go odznaczyФ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
-msgstr "Nie mo©esz odznaczyФ tego pakietu. Musi zostaФ zamieniony na nowszy"
-
-#
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nie mo©esz wybraФ tego pakietu. Nie ma ju© miejsca, by go zainstalowaФ"
+msgstr "Nie mo©na odznaczyФ tego pakietu. Musi zostaФ zamieniony na nowszy"
-#
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "NastЙpuj╠ce pakiety zostan╠ zainstalowane/usuniete"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Nie mo©esz zmieniФ statusu tego pakietu."
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instalowanie"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Szacowanie"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "ProszЙ czekaФ, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "PozostaЁo czasu "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "CaЁkowity czas "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Anuluj"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Przygotowywanie instalacji"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pakietСw"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalowanie pakietu %s"
+
+#: ../../install_steps_gtk.pm_.c:531
+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 ""
+"\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"
+
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Accept"
+msgstr "Akceptuj"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2622,194 +3829,504 @@ msgid ""
msgstr ""
"ZmieЯ pЁytЙ CD!\n"
"\n"
-"WЁС© pЁytЙ zatytuЁowan╠ \"%s\" do kieszeni czytnika i naci╤nij Ok\n"
-"Jesli jej nie masz, naci╤nij Anuluj, by pomin╠Ф instalacjЙ pakietСw z tej "
-"pЁyty."
+"WЁС© pЁytЙ zatytuЁowan╠ \"%s\" do kieszeni czytnika i naci╤nij Ok.\n"
+"Je╤li jej nie masz, naci╤nij Anuluj, by omin╠Ф instalacjЙ pakietСw z niej"
-#
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+msgid "Refuse"
+msgstr "OdrzuФ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "KontynuowaФ?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Wyst╠piЁ bЁ╠d porz╠dkowania pakietСw:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Wyst╠piЁ bЁ╠d podczas instalowania pakietСw:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Wyst╠piЁ bЁ╠d"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Wybierz jЙzyk u©ywania systemu"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr "Umowa licencyjna"
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Klawiatura"
-#
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
-msgstr "Wybierz ukЁad Twojej klawiatury."
+msgstr "Wybierz ukЁad klawiatury."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
-"Mo©esz wybraФ inne jЙzyki, ktСre chcesz mieФ do dyspozycji\n"
-"po instalacji"
-
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "Partycja root"
+"Mo©esz wybraФ inne jЙzyki, ktСre chcesz mieФ do dyspozycji po instalacji"
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "KtСra partycja jest w Twoim systemie partycj╠ root (/)"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr "Wszystkie"
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Klasa instalacji"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
-msgstr "Okre╤l rodzaj instalacji"
+msgstr "Okre╤l klasЙ instalacji"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Install/Update"
msgstr "Instalacja/Uaktualnienie"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+msgid "Is this an install or an update?"
msgstr "Czy to instalacja, czy uaktualnienie?"
-#
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatyczna"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Zalecana"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "U©ytkownika"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Dla eksperta"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"Jeste╤ pewien, ©e jeste╤ ekspertem? \n"
-"BЙdziesz miaЁ du©e uprawnienia, co mo©e byc niebezpieczne."
+"BЙdziesz miaЁ du©e uprawnienia, co mo©e byФ niebezpieczne.\n"
+"\n"
+"BЙdziesz pytany np. o \"U©yj pliku shadow dla haseЁ?\n"
+"Czy potrafisz odpowiedzieФ na tego typu pytania?"
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+msgid "Update"
msgstr "Uaktualnienie"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Typowe"
+#: ../../install_steps_interactive.pm_.c:222
+msgid "Workstation"
+msgstr "Stacja robocza"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Programowanie"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Serwer"
-#
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
-msgstr "Jakie ma byc zastosowanie Twojego systemu?"
+#: ../../install_steps_interactive.pm_.c:228
+msgid "What is your system used for?"
+msgstr "Do czego ma byФ u©ywany komputer?"
-#
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Wybierz typ myszy."
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Port myszy"
-#
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Do ktСrego portu szeregowego jest podЁ╠czona mysz?"
-#
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Konfiguracja kart PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
-msgstr " Konfiguracja IDE"
+msgstr "Konfiguracja IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "brak dostЙpnych partycji"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%d MB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "KtСr╠ partycjЙ wybierasz jako root (/)?"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr "Przeszukiwanie partycji w celu okre╤lenia punktСw montowania"
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Wybierz punkty montowania"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Nie mo©na odczytaФ tablicy partycji, jest zbyt uszkodzona :(\n"
+"Mo©na kontynuowaФ USUWAJ║C WSZYSTKIE DANE\n"
+"Innym rozwi╠zaniem jest zabronienie DrakX-owi modyfikowania tabeli partycji\n"
+" (bЁ╠d: %s)\n"
+"\n"
+"Czy zgadzasz siЙ na utratЙ wszystkich partycji?\n"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake nie mo©e odczytaФ poprawnie tablicy partycji.\n"
+"Kontynuuj na wЁasn╠ odpowiedzialno╤Ф!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "Partycja root"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "KtСra partycja jest w Twoim systemie partycj╠ root (/)"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Musisz zrestartowaФ, by uaktywniФ zmiany w tablicy partycji"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Wybierz partycje do sformatowania"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "SprawdziФ fizycznie partycje?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatowanie partycji"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Tworzenie i formatowanie pliku %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Wielko╤Ф swapa jest niewystaczaj╠ca, proszЙ go zwiЙkszyФ"
+msgstr "Wielko╤Ф swapa jest niewystarczaj╠ca, proszЙ go zwiЙkszyФ"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
-msgstr "Szukanie dostЙpnych pakietСw"
+msgstr "Wyszukiwanie dostЙpnych pakietСw"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Wyszukiwanie pakietСw do uaktualnienia"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
-msgstr "Nie ma do╤Ф miejsca na instalacjЙ lub uaktualnienie"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
+msgstr "Nie ma do╤Ф miejsca na instalacjЙ lub uaktualnienie (%d > %d)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Complete (%dMB)"
+msgstr "PeЁna (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Minimum (%dMB)"
+msgstr "Minimalna (%d MB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, c-format
+msgid "Recommended (%dMB)"
+msgstr "Zalecana (%d MB)"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:455
+msgid "Custom"
+msgstr "U©ytkownika"
+
+#: ../../install_steps_interactive.pm_.c:462
+msgid "Select the size you want to install"
+msgstr "Okre╤l rozmiar przeznaczony na instalacjЙ"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "WybСr grup pakietСw"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Samodzielny wybСr pakietСw"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2819,12 +4336,12 @@ msgstr ""
"Je©eli nie masz ©adnej z pЁyt z listy, kliknij Anuluj.\n"
"Je©eli niektСrych pЁyt z listy nie masz, odznacz je i kliknij Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom oznaczony \"%s\" "
+msgstr "CD-ROM oznaczony \"%s\" "
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2832,177 +4349,11 @@ msgstr ""
"Instalowanie pakietu %s\n"
"%d%%"
-#
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Trwa konfiguracja poinstalacyjna"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "ZachowaФ bie©╠c╠ konfiguracjЙ IP"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Ponownie skonfigurowaФ sieФ"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Nie konfigurowaФ sieci"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "Konfiguracja sieci"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "SieФ lokalna jest ju© skonfigurowana. Mo©esz:"
-
-#
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "Czy chcesz skonfigurowaФ sieФ lokaln╠ w Twoim systemie?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "nie znaleziono karty sieciowej"
-
-#
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "Konfiguracja modemu"
-
-#
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "Czy chcesz skonfigurowaФ poЁ╠czenie modemowe?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Konfiguracja urz╠dzenia sieciowego %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"ProszЙ podaФ konfiguracjЙ IP dla komputera.\n"
-"Ka©da pozycja powinna byФ wpisana w zapisie dziesiЙtnym\n"
-"oddzielonym kropkami (np. 192.168.1.1)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "Automatyczne IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "Adres IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Maska:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Adres IP powinien byc w formacie typu 192.168.1.1"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Konfiguracja sieci"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"ProszЙ wpisaФ nazwЙ hosta.\n"
-"Nazwa ta powinna byФ w postaci peЁnej,\n"
-"np. \"mojhost.mojadomena.pl\".\n"
-"Je╤li jest to potrzebne, nale©y wpisaФ te© adres routera."
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Serwer DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Interfejs (np. eth0):"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Router:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Nazwa hosta:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "SprСbowaФ wykryФ modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Do ktСrego portu szeregowego podЁ╠czony jest modem?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "Opcje poЁ╠czenia"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nazwa poЁ╠czenia"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "Numer telefonu"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "U©ytkownik"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Autoryzacja"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Oparta o skrypt"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Oparta o terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Domena"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Pierwszy serwer DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Drugi serwer DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3040,23 +4391,23 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"Masz teraz mo©liwo╤Ф zaЁadowania oprogramowania, sЁu©acego do szyfrowania\n"
+"Masz teraz mo©liwo╤Ф zaЁadowania oprogramowania, sЁu©╠cego do szyfrowania\n"
"z Sieci\n"
"OSTRZE╞ENIE:\n"
-"Z powodu rС©nych ogСlnych ograniczeЯ prawnych maj╠cych zastosowanie do \n"
-"tego oprogramowania, Klient lub(i) u©ytkownik powinien byФ pewien,\n"
+"Z powodu rС©nych ograniczeЯ prawnych maj╠cych zastosowanie do \n"
+"tego oprogramowania, Klient lub (i) u©ytkownik powinien byФ pewien,\n"
"©e przepisy jego dotycz╠ce pozwalaj╠ na kopiowanie, przechowywanie\n"
"i u©ywanie tego oprogramowania.\n"
"\n"
-"Dodatkowo klient lub(i) u©ytkownik, powinien byФ ostrze©ony,\n"
-"aby nie zЁamaФ praw obowi╠zuj╠cyvh w jego jurysdykcji.\n"
-"Je©eli klient lub(i) u©ytkownik nie przestrzegaЁby obowi╠zuj╠cych \n"
+"Dodatkowo klient lub (i) u©ytkownik, powinien byФ ostrze©ony,\n"
+"aby nie zЁamaФ praw obowi╠zuj╠cych w jego jurysdykcji.\n"
+"Je©eli klient lub (i) u©ytkownik nie przestrzegaЁby obowi╠zuj╠cych \n"
"go przepisСw, mog╠ dotkn╠Ф go powa©ne sankcje.\n"
"\n"
"Ani Mandrakesoft ani jego producenci lub dostawcy nie s╠ odpowiedzialni\n"
"za jakiekolwiek celowe, przypadkowe lub po╤rednie szkody\n"
"powstaЁe z u©ywania, posiadania lub tylko zainstalowania oprogramowania,\n"
-"do ktСrego klient lub(i) u©ytkownik bЙdzie miaЁ dostЙp po wyra©eniu \n"
+"do ktСrego klient lub (i) u©ytkownik bЙdzie miaЁ dostЙp po wyra©eniu \n"
"zgody na powy©sze zastrze©enia .\n"
"Wszystkie zapytania, dotycz╠ce niniejszego uzgodnienia proszЙ kierowaФ do:\n"
"Mandrakesoft, Inc.\n"
@@ -3064,88 +4415,92 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Wybierz mirror, z ktСrego chcesz pobraФ pakiety"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "ё╠czenie z mirrorem - pobieranie listy dostЙpnych pakietСw"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Wybierz pakiety do zainstalowania."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
msgid "Which is your timezone?"
msgstr "Wybierz swoj╠ strefЙ czasow╠."
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Czy ustawiФ zegar sprzЙtowy na czas GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+msgid "Which printing system do you want to use?"
+msgstr "KtСry system wydruku zamierzasz u©ywaФ?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Bez hasЁa"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "U©yj pliku shadow"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "U©yj dЁugich haseЁ MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "U©yj NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
-msgstr "zСЁte strony"
+msgstr "©СЁte strony"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
-msgstr "To hasЁo jest zbyt proste ( musi byФ conajmniej %d znakСw)"
+msgstr "To hasЁo jest zbyt proste ( musi byФ co najmniej %d znakСw)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
-msgstr "Autentyfikacja NIS"
+msgstr "Uwierzytelnienie NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Domena NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Serwer NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Akceptuj u©ytkownika"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Dodaj u©ytkownika"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(ju© dodano %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3155,64 +4510,87 @@ msgstr ""
"Podaj dane u©ytkownika\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nazwisko"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nazwa u©ytkownika"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "PowЁoka"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "Ikona"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "HasЁo jest zbyt proste"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "ProszЙ podaФ nazwЙ u©ytkownika"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-"Nazwa u©ytkownika mo©e skЁadac siЙ tylko z maЁych liter, cyfr, `-'i `_'"
+"Nazwa u©ytkownika mo©e skЁadaФ siЙ tylko z maЁych liter, cyfr, `-'i `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Ten u©ytkownik zostaЁ ju© dodany"
-#
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Dysk startowy umo©liwia uruchomienie systemu Linux niezale©nie od "
+"normalnego\n"
+"programu rozruchowego. Jest u©yteczny, je╤li nie chcesz instalowaФ SILO,\n"
+"lub SILO w Twoim systemie nie dziaЁa oraz je╤li inny system operacyjny\n"
+"usun╠Ё SILO. Dysk u©ytkownika mo©na tak©e u©ywaФ z obrazem ratunkowym,\n"
+"uЁatwiaj╠c naprawienie systemu w przypadku awarii.\n"
+"Je╤li chcesz utworzyФ dysk startowy dla swojego systemu, wЁС© dyskietkЙ\n"
+"do stacji i wybierz \"OK\"."
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Pierwsza stacja dyskietek"
-#
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Druga stacja dyskietek"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "PomiЯ"
-#
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3225,213 +4603,174 @@ msgid ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"Dysk startowy umo©liwia startowanie systemu Linux niezale©nie od\n"
-"mormalnego bootloadera. Jest u©yteczny, je╤li nie chcesz instalowaФ LILO,\n"
-"lub Grub w twoim systemie nie dziaЁa oraz je╤li inny system operacyjny\n"
-"usun╠Ё LILO/grub. Dysk u©ytkownika mo©na tak©e u©ywaФ z obrazem ratunkowym,\n"
+"Dysk startowy umo©liwia uruchomienie systemu Linux niezale©nie od\n"
+"normalnego programu rozruchowego. Jest u©yteczny, je╤li nie chcesz\n"
+"instalowaФ LILO/Grub, lub programy te w Twoim systemie nie dziaЁaj╠\n"
+"oraz je╤li inny system operacyjny usun╠Ё LILO/grub.\n"
+"Dysku tego mo©na tak©e u©ywaФ z obrazem ratunkowym,\n"
"uЁatwiaj╠c naprawienie systemu w przypadku awarii.\n"
"Czy chcesz utworzyФ dysk startowy dla swojego systemu?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Niestety, stacja dyskietek jest niedostЙpna."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Wybierz stacje dyskietek, ktСr╠ u©yjesz do stworzenia dysku startowego"
+msgstr ""
+"Wybierz stacjЙ dyskietek, ktСrej u©yjesz do stworzenia dysku startowego"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "WЁС© dyskietkЙ do stacji %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Tworzenie dysku startowego"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalacja LILO nie powiodЁa siЙ. Wyst╠piЁ nastЙpuj╠cy bЁ╠d:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "Czy chcesz u©ywaФ SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Podstawowe opcje SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"Masz nastЙpuj╠ce pozycje w SILO.\n"
-"Mo©esz dodaФ nastЙpne lub zmieniФ istniej╠ce."
-
-#
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "Partycja"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Ta etykieta jest ju© u©ywana"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalacja SILO nie powiodЁa siЙ. Wyst╠piЁ nastЙpuj╠cy bЁ╠d:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
-msgstr "Przygotowanie bootloadera"
+msgstr "Przygotowanie programu rozruchowego"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
msgid "Do you want to use aboot?"
msgstr "Czy chcesz u©ywaФ aboot?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"BЁ╠d podczas instalowania aboot. \n"
-"Mam wymusiФ instalacjЙ, nawet gdyby groziЁo to zniszczeniem pierwszej "
-"partycji?"
-
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "Konfiguracja proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
+"WymusiФ instalacjЙ, nawet gdyby groziЁo to zniszczeniem pierwszej partycji?"
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy powinno byФ http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy powinno byФ ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr ""
+"Instalacja programu rozruchowego nie powiodЁa siЙ. Wyst╠piЁ nastЙpuj╠cy bЁ╠d:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Witajcie, wЁamywacze"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "ZЁy"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Niski"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "╕redni"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Wysoki"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoidalny"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "RС©ne pytania"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(mo©e byФ przyczyn╠ zniszczenia danych)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "U©ywaФ optymalizacji dysku?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Wybierz poziom bezpieczeЯstwa"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Sprecyzuj rozmiar pamiЙci, je╤li trzeba (znaleziono %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automatyczne montowanie wyjmowanych dyskСw"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "Wyczy╤ciФ /tmp przy ka©dym starcie systemu"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "WЁ╠czyФ wieloprofile?"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Uaktywnienie num lock przy starcie"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
-msgstr "Podaj rozmiar pamiЙci w Mb"
+msgstr "Podaj rozmiar pamiЙci w MB"
-#
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Wysoki poziom bezpieczeЯstwa wyklucza stosowanie supermount"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
+msgid ""
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
+msgstr ""
+"Ostrze©enie: PRZY TYM POZIOMIE BEZPIECZEяSTWA NIE JEST MO╞LIWE\n"
+"BEZPO╕REDNIE REJESTROWANIE SIй Z KONSOLI NA ROOTA! \n"
+"Nale©y zarejestrowaФ siЙ jako zwykЁy u©ytkownik, nastЙpnie u©yФ \"su\".\n"
+"W ogСlno╤ci: komputer w tej konfiguracji nadaje siЙ wyЁ╠cznie na serwer.\n"
+"ZostaЁe╤ ostrze©ony."
+
+#: ../../install_steps_interactive.pm_.c:982
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
-"DrakX wygeneruje zbiory konfiguracyjne zarСwno dla XFree 3.3 i XFree 4.0\n"
-"Domy╤lnie jest u©ywany serwer 3.3, bo obsЁuguje wiЙksz╠ ilo╤Ф kart "
-"graficznych.\n"
-"\n"
-"Chcesz sprСbowaФ XFree 4.0?"
+"B╠d╪ ostro©ny, uaktywnienie numlock mo©e powodowaФ\n"
+"problemy z wypisywaniem cyfr zamiast liter (np. naci╤niЙcie \"p\" daje \"6\")"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "WykryФ urz╠dzenia PCI?"
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "WykorzystaФ istniej╠c╠ konfiguracjЙ X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Czy utworzyФ dyskietkЙ instalacji automatycznej dla powielenia instalacji?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "WЁС© pust╠ dyskietkЙ do stacji %s"
-#
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Tworzenie dyskietki automatycznej instalacji"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Nie zakoЯczono pewnych etapСw instalacji.\n"
+"Pewne etapy instalacji nie zostaЁy zakoЯczone\n"
"\n"
-"Czy na pewno chcesz teraz wyj╤Ф?"
+"Czy na pewno chcesz teraz zakoЯczyФ?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3443,164 +4782,26 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Gratulacje, instalacja zakoЯczona.\n"
-"Wyjmij no╤nik startowy i naci╤nij enter, by zrestartowaФ.\n"
-"\n"
-"Informacje i poprawki dla tej wersji Linuxa Mandrake\n"
-"dostЙpne s╠ na stronie http://www.linux-mandrake.com/,\n"
+"Gratulacje, instalacja zostaЁa zakoЯczona.\n"
+"UsuЯ pЁytЙ i (lub) dyskietkЙ z napЙdСw i naci╤nij enter, by zrestartowaФ.\n"
"\n"
-"Informacje o konfiguracji systemu znajduj╠ siЙ w rozdziale\n"
-"post install Oficjalnego PodrЙcznika U©ytkownka Linux Mandrake."
-
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Zamykanie systemu"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalacja sterownika %s do karty %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(moduЁ %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "KtСry sterownik %s wyprСbowaФ?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"W pewnych przypadkach sterownik %s potrzebuje dodatkowych\n"
-"informacji do poprawnego dziaЁania, mimo ©e zazwyczaj dziaЁa\n"
-"bez nich. Czy chcesz podaФ dodatkowe parametry, czy te© \n"
-"pozwolisz sterownikowi wykryФ je automatycznie?\n"
-"Czasami wykrywanie mo©e zawiesiФ komputer, nie powoduje to jednak ©adnych\n"
-"problemСw (utraty danych)"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Autowykrywanie"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Okre╤l parametry"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Mo©esz teraz okre╤liФ parametry moduЁu %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Mo©esz przekazaФ do moduЁu %s parametry.\n"
-"S╠ one w formacie \"nazwa1=warto╤Ф1 nazwa2=warto╤Ф2 ...\n"
-"Np. \"io=0x300 irq=7\" "
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "Opcje moduЁu:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Nieudane zaЁadowanie moduЁu %s.\n"
-"Chcesz sprСbowaФ z innymi parametrami?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "WykryФ karty PCI?"
+"Informacje o poprawkach dotycz╠cych tej wersji Linux-Mandrake\n"
+"znajdziesz na stronach http://www.linux-mandrake.com/.\n"
+"Informacje o konfiguracji systemu znajduj╠ siЙ\n"
+"w Oficjalnym PodrЙczniku U©ytkownika Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Konfiguracja kart PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "WykryФ urz╠dzenia %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Znaleziono %s %s interfejsСw"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "Masz inne?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "Czy masz interfejs %s?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nie"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Tak"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Poka© informacjЙ o sprzЙcie"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Uruchamianie sieci"
-
-#
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Zatrzymywanie sieci"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Instalacja Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> pomiЙdzy elementami | <Space> wybСr | <F12> nastЙpny ekran "
-
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"Mo©esz teraz utworzyФ partycje na dysku %s \n"
-"Po skoЯczeniu, nie zapomnij zapisaФ zmian, u©ywaj╠c `w'"
+" <Tab>/<Alt-Tab> miЙdzy element. | <Spacja> wybСr | <F12> nastЙpny ekran "
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "ProszЙ czekaФ"
@@ -3610,7 +4811,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Niejednoznaczny (%s), sprecyzuj\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "ZЁy wybСr, sprСbuj ponownie\n"
@@ -3624,489 +4825,971 @@ msgstr "? (domy╤lnie %s)"
msgid "Your choice? (default %s) "
msgstr "TwСj wybСr? (domy╤lnie %s)"
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
-msgstr "TwСj wybСr? (domy╤lnie %s, wpisz none dla ©adnego) "
+msgstr "TwСj wybСr? (domy╤lnie %s, wpisz \"none\" dla ©adnego) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "czeski"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "niemiecki"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvoraka"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "hiszpaЯski"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "fiЯski"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "francuski"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "norweski"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "polski"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "rosyjski"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
-msgstr "Klawiatura UK"
+msgstr "angielski"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
-msgstr "Klawiatura US"
+msgstr "amerykaЯski"
-#
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "armeЯski (stary)"
-#
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "armeЯski - fonetyczny"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "armeЯski - fonetyczny"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr "azerski (latin)"
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr "azerski (cyrilic)"
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "belgijski"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "buЁgarski"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "brazylijski(ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "biaЁoruski"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "szwajcarski (ukЁad niemiecki)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "szwajcarski (ukЁad francuski)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "Niemiecka ( bez martwych klawiszy)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "duЯski"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+msgid "Dvorak (US)"
+msgstr "Dvoraka (US)"
+
+#: ../../keyboard.pm_.c:139
+msgid "Dvorak (Norwegian)"
+msgstr "Dvoraka (norweski)"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "estoЯski"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "gruziЯski (ukЁad rosyjski)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "gruziЯski (ukЁad ЁaciЯski)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "grecki"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "wЙgierski"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Chorwacki"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "izraelski"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "izraelski (fonetyczny)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+msgid "Iranian"
+msgstr "IraЯski"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "islandzki"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "wЁoski"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr "japoЯski 106 klawiszy"
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "latyno-amerykaЯski"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "holenderski"
-#
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "litewski AZERTY"
-#
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "litewski AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "litweski QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "litewski QWERTY - fonetyczny"
-#
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "polski (programisty)"
-#
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "polski (maszynistki)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "portugalski"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "kanadyjski (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "rosyjski (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "szwedzki"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "sЁoweЯski"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "sЁowacki"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
-msgstr "Klawiatura tajska"
+msgstr "tajski"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "turecki"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "turecki (nowy)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "ukraiЯski"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
-msgstr "klawiatura US (miЙdzynarodowa)"
+msgstr "klawiatura US (miЙdzynarodowy)"
+
+#: ../../keyboard.pm_.c:179
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "wietnamski QWERTY"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "jugosЁowiaЯski - ЁaciЯska"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Mysz Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr "Standardowa"
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Konfiguracja podstawowa"
+
+#: ../../mouse.pm_.c:44
+msgid "Wheel"
+msgstr "z kСЁkiem"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "szeregowa"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Mysz standardowa 2-przyciskowa"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Mysz standardowa 3-przyciskowa"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech seria CC"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "Seria MM"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet (szeregowy)"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Mysz Logitech (szeregowa, stary typ C7)"
+
+#: ../../mouse.pm_.c:64
+msgid "busmouse"
+msgstr "busmouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr "2-przyciskowa"
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr "3-przyciskowa"
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "brak"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Brak myszy"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr "Dalej ->"
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "DziaЁa prawidЁowo?"
+
+#: ../../netconnect.pm_.c:93
+msgid "Internet configuration"
+msgstr "Internet - konfiguracja"
+
+#: ../../netconnect.pm_.c:94
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "Czy chcesz teraz sprСbowaФ poЁ╠czyФ siЙ Internetem?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr ""
+"\n"
+"Mo©esz zrekonfigurowaФ poЁ╠czenie."
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Nie jeste╤ teraz poЁ╠czony z Internetem."
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr ""
"\n"
-"To list the possible choices, press <TAB>.\n"
+"Mo©esz poЁ╠czyФ siЙ z Internetem lub zrekonfigurowaФ poЁ╠czenie."
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+msgid "ISDN Configuration"
+msgstr "Konfiguracja ISDN"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+"Wybierz swojego dostawcЙ Internetu.\n"
+"Je╤li nie ma go na li╤cie, wybierz \"Unlisted\""
+
+#: ../../netconnect.pm_.c:158
+msgid "Connection Configuration"
+msgstr "Konfiguracja poЁ╠czenia"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr "WypeЁnij lub zaznacz pole poni©ej"
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr "IRQ karty"
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr "DMA karty"
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr "IO karty"
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr "IO_0 karty"
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr "IO_1 karty"
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr "Numer Twojego telefonu"
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr "Nazwa dostawcy usЁug (np. Dialog, Netia, TPSA)"
+
+#: ../../netconnect.pm_.c:169
+msgid "Provider phone number"
+msgstr "Numer telefonu dostawcy usЁug"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr "DNS 1 dostawcy"
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr "DNS 2 dostawcy"
+
+#: ../../netconnect.pm_.c:172
+msgid "Dialing mode"
+msgstr "SposСb wybierania"
+
+#: ../../netconnect.pm_.c:174
+msgid "Account Login (user name)"
+msgstr "Konto (nazwa u©ytkownika)"
+
+#: ../../netconnect.pm_.c:175
+msgid "Account Password"
+msgstr "HasЁo:"
+
+#: ../../netconnect.pm_.c:176
+msgid "Confirm Password"
+msgstr "Potwierd╪ hasЁo"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr "Europa (EDSS1)"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world"
+msgstr "Reszta ╤wiata"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr "Reszta ╤wiata - bez kanaЁu D (linie dzier©awione)"
+
+#: ../../netconnect.pm_.c:214
+msgid "Which protocol do you want to use ?"
+msgstr "Jakiego protokoЁu chcesz u©yФ?"
+
+#: ../../netconnect.pm_.c:224
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+msgid "PCI"
+msgstr "PCI"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr "Nie wiem"
+
+#: ../../netconnect.pm_.c:233
+msgid "What kind of card do you have?"
+msgstr "Jaki rodzaj karty posiadasz?"
+
+#: ../../netconnect.pm_.c:239
+msgid "Continue"
+msgstr "Kontynuuj"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr "Przerwij"
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\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 ""
-"Witamy w programie wybierajacym system - LILO\n"
-"\n"
-"By zobaczyc dostepne mozliwosci, nacisnij <TAB>.\n"
"\n"
-"By zaladowac jedna z nich, wpisz jej nazwe i nacisnij <ENTER>\n"
-"lub czekaj %d sekund na domyslny start.\n"
+"Je╤li posiadasz kartЙ ISA, warto╤ci na nastЙpnym ekranie\n"
+"powinny byФ odpowiednie\n"
+"Je╤li posiadasz kartЙ PCMCIA, powiniene╤ znaФ IRQ i IO swojej karty.\n"
+
+#: ../../netconnect.pm_.c:257
+msgid "Which is your ISDN card ?"
+msgstr "Wybierz swoj╠ kartЙ ISDN"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr "Wykryto kartЙ ISDN:\n"
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+"Wykryto kartЙ ISDN PCI nieznanego typu. ProszЙ wybraФ jedn╠ z listy na "
+"kolejnym ekranie."
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+"Nie wykryt╠ ©adnej karty ISDN PCI. ProszЙ wybraФ jedn╠ z listy na kolejnym "
+"ekranie."
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+"Nie wykryto w systemie karty sieciowej.\n"
+"Nie mo©na skonfigurowaФ tego typu poЁ╠czenia."
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+msgid "Choose the network interface"
+msgstr "Wybierz interfejs sieciowy"
+
+#: ../../netconnect.pm_.c:336
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr ""
+"ProszЙ wybraФ, ktСr╠ kartЙ sieciow╠chcesz u©yФ do poЁ╠czenia z Internetem"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr "Interfejs sieciowy"
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
+msgstr ""
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Witamy w programie wybierajacym system - GRUB"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "Nale©y zrestartowaФ interfejs $device. Zgadzasz siЙ?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "U©yj %c i %c klawiszy , aby pod╤wietliФ pozycjЙ."
+#: ../../netconnect.pm_.c:468
+msgid "ADSL configuration"
+msgstr "Konfiguracja ADSL"
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:469
+msgid "Do you want to start your connection at boot?"
+msgstr "Czy chcesz Ё╠czyФ siЙ Internetem przy uruchamianiu komputera?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "SprСbowaФ wykryФ modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Wska© port szeregowy, do ktСrego podЁ╠czony jest modem "
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "Opcje dzwonienia"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nazwa poЁ╠czenia"
+
+#: ../../netconnect.pm_.c:546
+msgid "Phone number"
+msgstr "Numer telefonu"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "Identyfikator"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Autoryzacja"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Oparta o skrypt"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Poprzez terminal"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Domena"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Pierwszy serwer DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Drugi serwer DNS"
+
+#: ../../netconnect.pm_.c:582
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
msgstr ""
-"Naci╤nij Enter, aby zaЁadowaФ wybrany system operacyjny, \n"
-"`e' aby wyedytowaФ"
+"\n"
+"Mo©esz poЁ╠czyФ siЙ z Internetem lub zrekonfigurowaФ poЁ╠czenie."
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can reconfigure your connection."
msgstr ""
-"komendy przed zaЁadowaniem albo `c' , aby pracowaФ\n"
-"w linii poleceЯ"
+"\n"
+"Mo©esz zrekonfigurowaФ poЁ╠czenie."
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Pod╤wietlony system zostanie uruchomiony po %d sekundach."
+#: ../../netconnect.pm_.c:582
+msgid "You are not currently connected to Internet."
+msgstr "Nie jeste╤ teraz poЁ╠czony z Internetem."
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "nie maj ju© miejsca na /boot"
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Mo©esz rozЁ╠czyФ siЙ lub zrekonfigurowaФ poЁ╠czenie."
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Pulpit"
+#: ../../netconnect.pm_.c:586
+msgid "You are currently connected to internet."
+msgstr "Jeste╤ teraz poЁ╠czony z Internetem."
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Menu startowe"
+#: ../../netconnect.pm_.c:590
+msgid "Connect to Internet"
+msgstr "PoЁ╠cz z Internetem"
-#
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Mysz Sun"
+#: ../../netconnect.pm_.c:592
+msgid "Disconnect from Internet"
+msgstr "RozЁ╠cz poЁ╠czenie z Internetem"
-#
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Mysz Apple ADB"
+#: ../../netconnect.pm_.c:594
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Konfiguracja poЁ╠czenia z sieci╠ (LAN lub Internet)"
-#
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Mysz Apple ADB (2 przyciski)"
+#: ../../netconnect.pm_.c:597
+msgid "Internet connection & configuration"
+msgstr "Internet - poЁaczenie i konfiguracja"
-#
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Mysz Apple ADB (3 przyciski lub wiЙcej)"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Nale©y zrestartowaФ urz╠dzenie $netc->{NET_DEVICE}. Zgadzasz siЙ?"
-#
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Mysz USB Apple"
+#: ../../netconnect.pm_.c:641
+msgid "Configure a normal modem connection"
+msgstr "Konfiguracja poЁ╠czenia modemowego"
-#
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Mysz Apple USB (2 przyciski)"
+#: ../../netconnect.pm_.c:661
+msgid "Configure an ISDN connection"
+msgstr "Konfiguracja poЁ╠czenia ISDN"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Mysz USB (3 przyciski lub wiЙcej)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr "WewnЙtrzna karta ISDN"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Mysz standardowa (PS/2)"
+#: ../../netconnect.pm_.c:668
+msgid "External ISDN modem"
+msgstr "ZewnЙtrzny modem ISDN"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (PS/2)"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+msgid "Connect to the Internet"
+msgstr "PoЁ╠czenie z Internetem"
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Mysz standardowa 3-przyciskowa (PS/2)"
+#: ../../netconnect.pm_.c:672
+msgid "What kind is your ISDN connection?"
+msgstr "Okre╤l rodzaj poЁ╠czenia ISDN"
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:691
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Konfiguracja poЁ╠czenia DSL (lub ADSL)"
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:700
+msgid "France"
+msgstr "Francja"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr "Inne kraje"
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr "W jakim kraju przebywasz?"
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr "Modem Alcatel"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:714
+msgid "ECI modem"
+msgstr "Modem ECI"
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr "Je╤li TСj modem to Alcatel, wybierz Alcatel, je╤li nie, wybierz ECI."
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr "u©yj pppoe"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr "nie u©ywaj pppoe"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Microsoft Bus Mouse"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Typowym sposobem poЁ╠cznia przez ADSL jest DHCP+pppoe.\n"
+"Isteniej╠ jednak poЁ╠czenia u©ywaj╠ce wyЁ╠cznie DHCP.\n"
+"Je╤li nie wiesz, wybierz \"u©yj pppoe\""
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Logitech Bus Mouse"
+#: ../../netconnect.pm_.c:765
+msgid "Configure a cable connection"
+msgstr "Konfiguracja poЁ╠czenia przez kablСwkЙ"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Mysz USB"
+#: ../../netconnect.pm_.c:787
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr ""
+"KtСrego klienta DHCP chcesz u©yФ?\n"
+"Domy╤lnym jest dhcpd"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Mysz USB (3 przyciski lub wiЙcej)"
+#: ../../netconnect.pm_.c:800
+msgid "Disable Internet Connection"
+msgstr "WyЁ╠czenie poЁ╠czenia z Internetem"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Brak myszy"
+#: ../../netconnect.pm_.c:811
+msgid "Configure local network"
+msgstr "Konfiguracja sieci lokalnej"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Ver. 2.1A lub wy©sza (szeregowa)"
+#: ../../netconnect.pm_.c:815
+msgid "Network configuration"
+msgstr "Konfiguracja sieci"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech seria CC (szeregowa)"
+#: ../../netconnect.pm_.c:816
+msgid "Do you want to restart the network"
+msgstr "Chcesz zrestartowaФ sieФ?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (szeregowa)"
+#: ../../netconnect.pm_.c:824
+msgid "Disable networking"
+msgstr "WyЁ╠czenie sieci"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (szeregowa)"
+#: ../../netconnect.pm_.c:834
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Konfiguracja poЁ╠czenia z Intenetem / Konfiguracja sieci lokalnej"
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (szeregowa)"
+#: ../../netconnect.pm_.c:835
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr ""
+"SieФ lokalna zostaЁa ju© skonfigurowana.\n"
+"Czy chcesz:"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (szeregowa)"
+#: ../../netconnect.pm_.c:836
+msgid "How do you want to connect to the Internet?"
+msgstr "Jak chcesz Ё╠czyФ siЙ Internetem?"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "Seria MM (szeregowa)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "Konfiguracja sieci"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (szeregowy)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
+"Twoje poЁ╠czenie z Internetem zostaЁo skonfigurowane.\n"
+"Mo©na skonfigurowaФ komputer jako wspСЁdziel╠cy poЁ╠czenie z Internetem\n"
+"Uwaga: wymagana jest dedekowana karta sieciowa wЁ╠czaj╠ca komputer w sieФ "
+"lokaln╠ (LAN)\n"
+"\n"
+"Czy skonfigurowaФ wspСЁdzielenie poЁ╠czenia z Internetem?\n"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mysz Logitech (szeregowa, stary typ C7)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "nie znaleziono karty sieciowej"
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (szeregowa)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Konfiguracja sieci"
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Mysz standardowa (szeregowa)"
+#: ../../network.pm_.c:274
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"ProszЙ wpisaФ nazwЙ komputera, je╤li j╠ znasz\n"
+"NiektСre z serwerСw DHCP wymagaj╠ jej do dziaЁania.\n"
+"Nazwa ta powinna byФ w postaci peЁnej,\n"
+"np. \"mojkomputer.mojadomena.pl\"."
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Kompatybilna z Microsoft (szeregowa)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+msgid "Host name"
+msgstr "Nazwa komputera"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Mysz standardowa 3-przyciskowa (szeregowa)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
+"OSTRZE╞ENIE: Urz╠dzenie to zostaЁo poprzednio skonfigurowane do poЁ╠czenia z "
+"Internetem.\n"
+"Naci╤nij OK by zachowaФ konfiguracjЙ.\n"
+"Modyfikacja pСl poni©ej spowoduje nadpisanie istniej╠cej konfiguracji."
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (szeregowa)"
+#: ../../network.pm_.c:302
+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 ""
+"ProszЙ podaФ konfiguracjЙ IP dla komputera.\n"
+"Ka©da pozycja powinna byФ wpisana w zapisie dziesiЙtnym\n"
+"oddzielonym kropkami (np. 192.168.1.1)."
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "DziaЁa prawidЁowo?"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Konfiguracja urz╠dzenia sieciowego %s"
+
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "Automatyczne IP"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:314
+msgid "IP address"
+msgstr "Adres IP"
+
+#: ../../network.pm_.c:314
+msgid "Netmask"
+msgstr "Maska"
+
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Adres IP powinien byФ w formacie typu 192.168.1.1"
+
+#: ../../network.pm_.c:341
+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 ""
+"ProszЙ wpisaФ nazwЙ komputera.\n"
+"Nazwa ta powinna byФ w postaci peЁnej,\n"
+"np. \"mojkomputer.mojadomena.pl\".\n"
+"Je╤li jest to potrzebne, nale©y wpisaФ te© adres routera."
+
+#: ../../network.pm_.c:346
+msgid "DNS server"
+msgstr "Serwer DNS"
+
+#: ../../network.pm_.c:347
+msgid "Gateway"
+msgstr "Router"
+
+#: ../../network.pm_.c:348
+msgid "Gateway device"
+msgstr "Interfejs (np. eth0)"
+
+#: ../../network.pm_.c:358
+msgid "Proxies configuration"
+msgstr "Konfiguracja po╤rednika"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Po╤rednik HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Po╤rednik FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Nazwa po╤rednika powinna byФ typu: http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Nazwa po╤rednika powinna byФ typu: ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Na tej platformie nie istniej╠ partycje rozszerzone"
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
-"W tablicy partycji jest puste miejsce pomiЙdzy partycjami, ktСrego nie "
-"mo©na\n"
-"wykorzystaФ. Jedynym rozwi╠zaniem jest przesuniЙcie partycji podstawowych,\n"
-"by puste miejsce byЁo obok partycji rozszerzonych"
+"W tablicy partycji jest puste miejsce pomiЙdzy partycjami, ktСrego\n"
+"nie mo©na wykorzystaФ. Jedynym rozwi╠zaniem jest przesuniЙcie\n"
+"partycji podstawowych, by puste miejsce byЁo obok partycji rozszerzonych"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "BЁ╠d odczytu pliku %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Przywracanie z pliku %s nie powiodЁo siЙ: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
-msgstr "ZЁy plik backupu"
+msgstr "ZЁy plik archiwum"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "BЁ╠d zapisu do pliku %s"
@@ -4117,7 +5800,7 @@ msgstr "niezbЙdny"
#: ../../pkgs.pm_.c:21
msgid "must have"
-msgstr "musi byФ"
+msgstr "musisz mieФ"
#: ../../pkgs.pm_.c:22
msgid "important"
@@ -4127,59 +5810,64 @@ msgstr "wa©ny"
msgid "very nice"
msgstr "bardzo fajny"
-#
#: ../../pkgs.pm_.c:25
msgid "nice"
msgstr "fajny"
-#
#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
msgid "interesting"
msgstr "ciekawy"
-#
#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
#: ../../pkgs.pm_.c:31
msgid "maybe"
-msgstr "taka sobie"
+msgstr "taki sobie"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n( wa©ny)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (╤wietny)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (przydatny)"
-#
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Poka© mniej"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Poka© wiЙcej"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Lokalna drukarka"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
-msgstr "Zdalny lpd"
+#: ../../printer.pm_.c:20
+msgid "Remote printer"
+msgstr "Zdalna drukarka"
+
+#: ../../printer.pm_.c:21
+msgid "Remote CUPS server"
+msgstr "Zdalny serwer CUPS"
+
+#: ../../printer.pm_.c:22
+msgid "Remote lpd server"
+msgstr "Zdalny serwer lpd"
+
+#: ../../printer.pm_.c:23
+msgid "Network printer (socket)"
+msgstr "Drukarka sieciowa (socket)"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+msgid "Printer Device URI"
+msgstr "Port drukarki URI:"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Wykrywanie urz╠dzeЯ..."
@@ -4193,12 +5881,11 @@ msgstr "Testowanie portСw"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Wykryto drukarkЙ model \"%s\" na"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Port drukarki lokalnej"
-#
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4206,39 +5893,37 @@ msgstr ""
"Do jakiego portu jest podЁ╠czona drukarka?\n"
"(pamiЙtaj, ©e /dev/lp0 to odpowiednik LPT1:)\n"
-#
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Port drukarki:"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Opcje zdalnej drukarki lpd"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
"By u©ywaФ zdalnej kolejki drukarki, nale©y podaФ\n"
-"nazwЙ hosta serwera wydruku, oraz nazwЙ kolejki na\n"
+"nazwЙ serwera wydruku, oraz nazwЙ kolejki na\n"
"serwerze, do ktСrej kierowane bЙd╠ zadania wydruku."
-#
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
-msgstr "Nazwa zdalnego hosta:"
+msgstr "Nazwa serwera:"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Zdalna kolejka"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcje drukarki SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4249,29 +5934,29 @@ msgstr ""
"By drukowaФ na drukarce SMB, musisz okre╤liФ nazwЙ serwera SMB\n"
"(nie zawsze jest ona rСwnoznaczna z nazw╠ TCP/IP), o ile mo©liwe\n"
"adres IP serwera wydruku,nazwЙ u©ytkownika, grupЙ, hasЁo oraz\n"
-" oczywi╤cie nazwЙ drukarki."
+"oczywi╤cie nazwЙ drukarki."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Nazwa serwera SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP serwera SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Nazwa drukarki"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Grupa"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "Opcje drukarki NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4279,137 +5964,158 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
"By drukowaФ na drukarce NetWare, nale©y podaФ nazwЙ serwera\n"
-"wydruku NetWare (nie zawsze to samo co nazwa hosta TCP/IP!),\n"
-"nazwЙ kolejki drukarki, do ktСrej chcesz uzyskaФ dostЙp, oraz\n"
-"wЁa╤ciw╠ nazwЙ u©ytkownika i hasЁo."
+"wydruku NetWare (nie zawsze to samo co nazwa TCP/IP!),\n"
+"nazwЙ kolejki drukarki, do ktСrej chcesz uzyskaФ dostЙp,\n"
+"oraz wЁa╤ciw╠ nazwЙ u©ytkownika i hasЁo."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Serwer wydruku"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Nazwa kolejki drukarki"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+msgid "Socket Printer Options"
+msgstr "Opcje drukarki sieciowej"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+"By drukowaФ na drukarce sieciowej, nale©y podaФ\n"
+"nazwЙ sieciow╠ drukarki oraz opcjonalnie numer portu."
+
+#: ../../printerdrake.pm_.c:141
+msgid "Printer Hostname"
+msgstr "Nazwa sieciowa drukarki"
+
+#: ../../printerdrake.pm_.c:142
+msgid "Port"
+msgstr "Port"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr "Mo©na bezpo╤rednio podaФ URI okre╤laj╠ce dostЙp do drukarki w CUPS"
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Jaki typ drukarki posiadasz?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "Czy chcesz sprawdziФ drukowanie?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Drukowanie stron/y testowych/ej"
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Strona testowa zostaЁa wysЁana do demona drukowania.\n"
+"Mo©e chwilЙ potrwaФ, zanim pojawi siЙ wydruk\n"
+"Status drukowania:\n"
+"%s\n"
+"\n"
+"Czy wydruk jest prawidЁowy?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Strona testowa zostaЁa wysЁana do demona drukowania.\n"
+"Mo©e chwilЙ potrwaФ, zanim pojawi siЙ wydruk\n"
+"Czy wydruk jest prawidЁowy?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Tak, wydrukuj stronЙ testow╠ ascii"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
-msgstr "Tak, wydrukuj graficznЙ stronЙ testow╠"
+msgstr "Tak, wydrukuj graficzn╠ stronЙ testow╠"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Tak, wydrukuj obie strony testowe"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Konfiguracja drukarki"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Jaki typ drukarki posiadasz?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Opcje drukarki"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Rozmiar papieru"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Wysun╠Ф stronЙ po wydruku?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Opcje sterownika uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Opcje gЁЙbi kolorСw"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "DrukowaФ tekst jako PostScript?"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Odwrotna kolejno╤Ф stron"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Usun╠Ф efekt schodkСw?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Ilo╤Ф stron na stronie wydruku"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Lewy/Prawy margines w punktach (1/72 cala) "
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "GСrny/Dolny margines w punktach (1/72 cala)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
-msgstr "Dodatkowe opcie GhostScriptu"
+msgstr "Dodatkowe opcje GhostScriptu"
-#
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
-msgstr "Dodatowe opcje dla tekstu"
-
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "Czy chcesz sprawdziФ drukowanie?"
+msgstr "Dodatkowe opcje dla tekstu"
-#
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Drukowanie stron/y testowych/ej"
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Strona testowa zostaЁa wysЁana do demona drukowania.\n"
-"Mo©e chwilЙ potrwaФ, zanim pojawi siЙ wydruk\n"
-"Status drukowania:\n"
-"%s\n"
-"\n"
-"Czy wydruk jest prawidЁowy?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Strona testowa zostaЁa wysЁana do demona drukowania.\n"
-"Mo©e chwilЙ potrwaФ, zanim pojawi siЙ wydruk\n"
-"Czy wydruk jest prawidЁowy?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Drukarka"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Czy chcesz skonfigurowaФ drukarkЙ?"
-#
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4417,21 +6123,65 @@ msgstr ""
"Istniej╠ nastЙpuj╠ce kolejki wydruku.\n"
"Mo©esz dodaФ nastЙpne lub zmieniФ istniej╠ce."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+msgid "CUPS starting"
+msgstr "Uruchamianie CUPS"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr "Odczytywanie bazy sterownikСw CUPS..."
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Wybierz sposСb podЁ╠czenia drukarki"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Jak jest podЁ╠czona drukarka?"
-#
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+msgid "Select Remote Printer Connection"
+msgstr "Wybierz sposСb podЁ╠czenia zdalnej drukarki"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+"Przy korzystaniu ze zdalnego serwera CUPS, drukarki\n"
+"zostan╠ automatycznie wykryte, nie ma potrzeby ich konfiguracji.\n"
+"W przypadku w╠tpliow╤ci, wybierz \"Zdalny serwer CUPS\"."
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "Zdalna kolejka"
-#
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Ka©da drukarka wymaga nazwania (na przykЁad lp)\n"
+"Mo©na te© zdefiniowaФ inne parametry jak opis drukarki lub jej lokalizacjЙ\n"
+"Jak╠ nazwЙ u©yФ dla tej drukarki oraz w jaki sposСb jest ona podЁ╠czona?"
+
+#: ../../printerdrake.pm_.c:404
+msgid "Name of printer"
+msgstr "Nazwa drukarki"
+
+#: ../../printerdrake.pm_.c:405
+msgid "Description"
+msgstr "Opis"
+
+#: ../../printerdrake.pm_.c:406
+msgid "Location"
+msgstr "Lokalizacja"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4442,56 +6192,53 @@ msgstr ""
"wymaga nazwania (czЙsto lp) oraz przypisania katalogu na bufor.\n"
"Jak nazwaФ katalog przypisany do kolejki oraz jak drukarka jest podЁ╠czona?"
-#
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nazwa kolejki:"
-#
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Katalog bufora:"
-#
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "PodЁ╠czenie drukarki"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nie mo©na dodaФ partycji do sformatowanego RAID md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
-msgstr "Nie mogЙ zapisaФ pliku $file"
+msgstr "Nie mo©na zapisaФ pliku $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid padЁ"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid padЁ ( mo©e brak raidtools)?"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Za maЁo partycji dla RAID poziom %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
-msgstr "Anacron - program uruchamiaj╠cy okresowo zadania"
+msgstr "Anacron - program uruchamiaj╠cy okresowo zadania."
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-"apmd przekazuje przez syslog informacje o stanie baterii.\n"
-"Umo©liwia tak©e zamkniЙcie systemu, gdy bateria jest zbyt wyЁadowana."
+"apmd przekazuje przez syslog informacje o stanie akumulatorСw.\n"
+"Umo©liwia tak©e zamkniЙcie systemu, gdy s╠ one zbyt wyЁadowane."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4500,18 +6247,18 @@ msgstr ""
"\"at\"\n"
"oraz wykonuje zadania wsadowe, gdy obci╠©enie systemu jest niewielkie."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-"cron jest standartowym programem unixowym, ktСry zarz╠dza wykonywaniem\n"
+"cron jest standardowym programem unixowym, ktСry zarz╠dza wykonywaniem\n"
"programСw u©ytkownika w okre╤lonych przez u©ytkownika porach;\n"
"vixie cron ma dodatkowe opcje, zabezpieczenia i konfiguracji."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4519,10 +6266,10 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
"GPM umo©liwia posЁugiwanie siЙ mysz╠ w aplikacjach,\n"
-"pracuj╠cych pod konsol╠ Linuxa jak n.p. Midnigth Commander.\n"
+"pracuj╠cych pod konsol╠ Linuxa jak np. Midnigth Commander.\n"
"Umo©liwia operacje Wytnij-Wklej oraz wybСr opcji poprzez wyskakuj╠ce menu."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4530,7 +6277,7 @@ msgstr ""
"Apache to serwer WWW. Jest u©ywany do udostЙpniania plikСw \n"
"HTML i CGI w Internecie/Intranecie."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4541,9 +6288,10 @@ msgid ""
msgstr ""
"Internetowy (super)demon, zwany inetd startuje wiele usЁug internetowych,\n"
"takich jak telnet, ftp, rsh i rlogin. WyЁ╠czenie go uniemo©liwia korzystanie "
+"\n"
"z tych usЁug."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4553,23 +6301,23 @@ msgstr ""
"pliku /etc/sysconfig/keyboard. Mog╠ one byФ przeЁ╠czane przy pomocy\n"
"narzЙdzia kbdconfig. Powinien byФ uruchomiony w wiЙkszo╤ci przypadkСw."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"lpd to demon, konieczny do prawidЁowego dziaЁania lpr,a przez to caЁego "
+"lpd to demon, konieczny do prawidЁowego dziaЁania lpr,a przez to caЁego \n"
"systemu drukowania."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
"named (BIND) to DNS -czyli serwer, umo©liwiaj╠cy tЁumaczenie\n"
-"nazw hostСw (komputerСw, podЁ╠czonych do WWW) na ich adresy IP."
+"nazw komputerСw na ich adresy IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4577,24 +6325,24 @@ msgstr ""
"Montuje i odmontowuje wszystkie punkty zamontowania systemСw plikСw \n"
"NFS ( sieciowe systemy plikСw), SMB {LAN Manager/Windows} i NCP ( NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"WЁ╠cza/wyЁ╠cza interfejsy sieciowe skonfigurowane\n"
-"do dziaЁania podczas uruchamiania systemu."
+"WЁ╠cza/wyЁ╠cza skonfigurowane interfejsy sieciowe\n"
+"podczas uruchamiania systemu."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS jest popularnym protokoЁem udostЙpniania plikСw w sieci TCP/IP.\n"
-"UsЁuga uruchamia konfigurowany przez plik /etc.exports serwer NFS."
+"Ta usЁuga uruchamia konfigurowany przez plik /etc/exports serwer NFS."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4602,30 +6350,30 @@ msgstr ""
"NFS jest popularnym protokoЁem udostЙpniania plikСw w sieci TCP/IP.\n"
"Ta usЁuga umo©liwia dziaЁanie w NFS funkcji blokowania plikСw."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
-"PCMCIA uzywany jest zwykle do obsЁugi kart ethernetowych i modemСw\n"
+"PCMCIA u©ywany jest zwykle do obsЁugi kart ethernetowych i modemСw\n"
"w laptopach. Nie jest uruchamiany, je©eli siЙ go nie skonfiguruje\n"
-"a wiЙc bezpiecznie mo©e byФ instalowany nawet na maszynach, ktСre go nie "
+"a wiЙc bezpiecznie mo©e byФ instalowany nawet na maszynach, ktСre go nie \n"
"potrzebuj╠."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-"Portmapper zarz╠dza poЁaczeniami RPC, u©ywanymi przez protokoЁy takie, jak\n"
-"NFS i NIS . Je©eli twoja maszyna jest serwerem dla protokoЁСw, ktСre \n"
-"wykorzystuj╠ RPC, musisz go uruchomiФ na starcie."
+"Portmapper zarz╠dza poЁ╠czeniami RPC, u©ywanymi przez protokoЁy takie, jak\n"
+"NFS i NIS . Je©eli Twoja maszyna jest serwerem dla protokoЁСw, ktСre \n"
+"wykorzystuj╠ RPC, nale©y go uruchomiФ na starcie."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4633,13 +6381,13 @@ msgstr ""
"Postfix to agent pocztowy (MTA),\n"
"przesyЁaj╠cy pocztЙ miЙdzy maszynami."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr "Polepsza generacjЙ liczb pseudolosowych."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4649,97 +6397,261 @@ msgstr ""
"stosowany w maЁych sieciach protokСЁ RIP. W wiЙkszych sieciach stosuje\n"
"siЙ bardziej zЁo©one protokoЁy routingu."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-"ProtokuЁ rstat umo©liwia u©ytkownikowi sieci monitorowanie \n"
+"ProtokСЁ rstat umo©liwia u©ytkownikowi sieci monitorowanie \n"
"wydajno╤ci innych maszyn w sieci."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-"ProtokuЁ rusers pozwala na sprawdzanie, kto jest zalogowany na innych,\n"
+"ProtokСЁ rusers pozwala na sprawdzanie, kto jest zalogowany na innych,\n"
"dostЙpnych maszynach w sieci."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"rwho dziaЁa jak who ( podaje listЙ u©ytkownikСw) dla innych maszyn w sieci.\n"
+"ProtokСЁ rwho dziaЁa jak who ( podaje listЙ u©ytkownikСw) dla innych maszyn "
+"w sieci.\n"
"ktСre maj╠ wЁ╠czony demon rwho (podobny do finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
"Syslog to narzЙdzie, pozwalaj╠ce rС©nym demonom uaktualnianie wpisСw do\n"
-"rС©nych plikСw \"dziennikowych\" ( log files). Jego uruchomienie jest "
-"zalecane."
+"rС©nych plikСw \"dziennikowych\" ( log files).\n"
+"Jego uruchomienie jest zalecane."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
-msgstr "Ten skrypt startowy Ёaduje moduЁ obЁuguj╠cy mysz usb."
+msgstr "Ten skrypt startowy Ёaduje moduЁ obsЁuguj╠cy mysz usb."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-"Uruchamia przy starcie i zatrzymuje przy zamykaniu systemu X serwer fontСw."
+"Uruchamia przy starcie i zatrzymuje przy zamykaniu systemu X serwer czcionek."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "Wybierz usЁugi automatycznie uruchamiane podczas startu"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Witamy w programie wybierajacym system - SILO\n"
-"\n"
-"By zobaczyc dostepne mozliwosci, nacisnij <TAB>.\n"
-"\n"
-"By zaladowac jedna z nich, wpisz jej nazwe i nacisnij <ENTER>\n"
-"lub czekaj %d sekund na domyslny start.\n"
-"\n"
+"Nie mo©na odczytaФ tablicy partycji, jest zbyt uszkodzona :(\n"
+"Mo©na prСbowaФ kontynuowaФ z pustymi partycjami"
-#
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Konfiguracja LILO/GRUB"
-#
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Tworzenie dysku startowego"
-#
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
-msgstr "Formatownie dyskietki"
+msgstr "Formatowanie dyskietki"
-#
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "WybСr"
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalacja LILO nie powiodЁa siЙ. Wyst╠piЁ nastЙpuj╠cy bЁ╠d:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr "WspСЁdzielenie poЁ╠czenia z Internetem jest wЁ╠czone"
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Konfiguracja wspСЁdzielenia poЁ╠czenia z Internetem zostaЁa ju© wykonana.\n"
+"Jest teraz uaktywniona.\n"
+"\n"
+"Co chcesz zrobiФ?"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+msgid "disable"
+msgstr "wyЁ╠czyФ"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr "zwolniФ"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+msgid "reconfigure"
+msgstr "rekonfigurowaФ"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr "WspСЁdzielenie poЁ╠czenia z Internetem jest wyЁ╠czone"
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+"Konfiguracja wspСЁdzielenia poЁ╠czenia z Internetem zostaЁa ju© wykonana.\n"
+"Jest teraz nieaktywna.\n"
+"\n"
+"Co chcesz zrobiФ?"
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+msgid "enable"
+msgstr "wЁ╠czyФ"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr "Zawarto╤Ф pliku konfiguracyjnego nie mo©e zostaФ zinterpretowana."
+
+#: ../../standalone/drakgw_.c:151
+msgid "Internet Connection Sharing"
+msgstr "WspСЁdzielenie poЁ╠czenia z Internetem"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+"Komputer mo©e byФ skonfigurowany do wspСЁdzielenia poЁ╠czenia z Internetem.\n"
+"\n"
+"Uwaga: wymagana jest dedykowana karta sieciowa wЁ╠czaj╠ca komputer w sieФ "
+"lokaln╠ (LAN)\n"
+"\n"
+"Czy skonfigurowaФ wspСЁdzielenie poЁ╠czenia z Internetem?"
+
+#: ../../standalone/drakgw_.c:177
+msgid "using module"
+msgstr "u©ywanie moduЁu"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr "Nie wykryto w systemie karty sieciowej!"
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+"Nie wykryto w systemie karty sieciowej. ProszЙ uruchomiФ program "
+"konfiguracji sprzЙtu."
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+"W Twoim systemie istnieje tylko jedna skonfigurowana karta sieciowa:\n"
+"\n"
+"$interface\n"
+"\n"
+"Czy skonfigurowaФ sieФ lokaln╠ (LAN) przy wykorzystaniu tej karty?"
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+"Wska©, ktСra karta sieciowa bЙdzie poЁ╠czona\n"
+"z sieci╠ lokaln╠ (LAN)."
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+"Uwaga, karta sieciowa zostaЁa ju© skonfigurowana.\n"
+"Czy chcesz j╠ konfigurowaФ ponownie?"
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+"W bie©╠cej konfiguracji wykryto mo©liwy konflikt adresСw sieciowych: $_!\n"
+
+#: ../../standalone/drakgw_.c:268
+msgid "Firewalling configuration detected!"
+msgstr "Wykryto konfiguracjЙ firewalla!"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+"Ostrze©enie! ZostaЁa wykryta istniej╠ca konfiguracja firewalla.Mo©e byФ "
+"konieczne dokonanie kilku rЙcznych poprawek po instalacji. KontynuowaФ?"
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+"Konfiguracja skryptСw, instalowanie programСw, uruchamianie serwerСw..."
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring..."
+msgstr "Konfiguracja..."
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr "Przy pomocy urpmi nie mo©na zainstalowaФ pakietu RPM ipchains."
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr "Przy pomocy urpmi nie mo©na zainstalowaФ pakietu RPM dhcp."
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr "Przy pomocy urpmi nie mo©na zainstalowaФ pakietu RPM linuxconf."
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr "Przy pomocy urpmi nie mo©na zainstalowaФ pakietu RPM bind."
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+"Przy pomocy urpmi nie mo©na zainstalowaФ pakietu RPM caching-nameserver."
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "Gratulacje!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+"Wszytko zostaЁo skonfigurowane.\n"
+"Mo©esz udostЙpniaФ poЁ╠czenie z Internetem innym komputeremw sieci lokalnej, "
+"u©ywaj╠c automatycznej konfiguracji sieci (DHCP)"
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4772,7 +6684,7 @@ msgid ""
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
"To jest standardowy poziom zabezpieczeЯ dla komputera, ktСry bЙdzie\n"
-"korzystaЁ z sieci jako klient."
+"korzystaЁ z sieci jako klient. "
#: ../../standalone/draksec_.c:36
msgid ""
@@ -4782,8 +6694,8 @@ msgid ""
"connections from many clients. "
msgstr ""
"Ten poziom umo©liwia u©ycie komputera jako serwera, ktСry akceptuje\n"
-"poЁaczenia z wieloma klientami przy zachowaniu wysokiego \n"
-"poziomu bezpieczenstwa."
+"poЁ╠czenia z wieloma klientami przy zachowaniu wysokiego \n"
+"poziomu bezpieczeЯstwa."
#: ../../standalone/draksec_.c:39
msgid ""
@@ -4801,27 +6713,34 @@ msgstr "Ustawienie poziomu bezpieczeЯstwa"
msgid "Choose the tool you want to use"
msgstr "WybСr u©ywanych narzЙdzi"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "WybСr ukЁadu klawiatury"
+#: ../../standalone/livedrake_.c:23
+msgid "Change Cd-Rom"
+msgstr "Zmiana CD-ROM"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "WybСr rodzaju myszy"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"WЁС© pЁytЙ Installation CD-Rom do kieszeni czytnika i naci╤nij Ok.\n"
+"Je╤li jej nie masz, naci╤nij Anuluj, by omin╠Ф uaktualnienie."
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr "Nie mo©na uruchomiФ uaktualnienia!!!\n"
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "nie znaleziono serial_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "EmulowaФ ╤rodkowy przycisk?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Do ktСrego portu szeregowego jest podЁ╠czona mysz?"
-#
#: ../../standalone/rpmdrake_.c:25
msgid "reading configuration"
msgstr "odczyt konfiguracji"
@@ -4834,19 +6753,16 @@ msgstr "Plik"
#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
msgid "Search"
-msgstr "Szukaj"
+msgstr "Znajd╪"
-#
#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
msgid "Package"
msgstr "Pakiet"
-#
#: ../../standalone/rpmdrake_.c:51
msgid "Text"
msgstr "Tekst"
-#
#: ../../standalone/rpmdrake_.c:53
msgid "Tree"
msgstr "Drzewo"
@@ -4859,22 +6775,18 @@ msgstr "Sortowanie wg"
msgid "Category"
msgstr "Kategoria"
-#
#: ../../standalone/rpmdrake_.c:58
msgid "See"
msgstr "Widok"
-#
#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
msgid "Installed packages"
msgstr "Zainstalowane pakiety"
-#
#: ../../standalone/rpmdrake_.c:60
msgid "Available packages"
msgstr "DostЙpne pakiety"
-#
#: ../../standalone/rpmdrake_.c:62
msgid "Show only leaves"
msgstr "Poka© tylko pozostaЁe"
@@ -4883,25 +6795,22 @@ msgstr "Poka© tylko pozostaЁe"
msgid "Expand all"
msgstr "RozwiЯ wszystko"
-#
#: ../../standalone/rpmdrake_.c:68
msgid "Collapse all"
msgstr "ZwiЯ wszystko"
-#
#: ../../standalone/rpmdrake_.c:70
msgid "Configuration"
msgstr "Konfiguracja"
#: ../../standalone/rpmdrake_.c:71
msgid "Add location of packages"
-msgstr "Dodaj poЁozenie pakietСw"
+msgstr "Dodaj poЁo©enie pakietСw"
#: ../../standalone/rpmdrake_.c:75
msgid "Update location"
msgstr "Aktualizuj poЁo©enie"
-#
#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
msgid "Remove"
msgstr "UsuЯ"
@@ -4910,7 +6819,6 @@ msgstr "UsuЯ"
msgid "Configuration: Add Location"
msgstr "Konfiguracja: Dodaj poЁo©enie"
-#
#: ../../standalone/rpmdrake_.c:103
msgid "Find Package"
msgstr "Znajdowanie pakietСw"
@@ -4927,12 +6835,10 @@ msgstr "PrzeЁ╠czenie miЙdzy Zainstalowane i DostЙpne"
msgid "Files:\n"
msgstr "Pliki:\n"
-#
#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
msgid "Uninstall"
msgstr "Odinstaluj"
-#
#: ../../standalone/rpmdrake_.c:163
msgid "Choose package to install"
msgstr "WybСr pakietСw do zainstalowania"
@@ -4945,12 +6851,10 @@ msgstr "Sprawdzanie zale©no╤ci"
msgid "Wait"
msgstr "Czekaj"
-#
#: ../../standalone/rpmdrake_.c:209
msgid "The following packages are going to be uninstalled"
msgstr "NastЙpuj╠ce pakiety zostan╠ usuniЙte"
-#
#: ../../standalone/rpmdrake_.c:210
msgid "Uninstalling the RPMs"
msgstr "Usuwanie pakietСw"
@@ -4961,7 +6865,7 @@ msgstr "Wyra©enie regularne"
#: ../../standalone/rpmdrake_.c:229
msgid "Which package are looking for"
-msgstr "Jakiego pakietu szukasz"
+msgstr "Jakiego pakietu szukasz?"
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
@@ -4972,12 +6876,12 @@ msgstr "nie znaleziono %s "
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
msgid "No match"
-msgstr "Nie znaleziono"
+msgstr "Nic nie pasuje"
#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
#: ../../standalone/rpmdrake_.c:278
msgid "No more match"
-msgstr "WiЙcej nie znaleziono"
+msgstr "Nic wiЙcej nie pasuje"
#: ../../standalone/rpmdrake_.c:246
msgid ""
@@ -4985,7 +6889,7 @@ msgid ""
"I'm going to relaunch rpmdrake to allow searching files"
msgstr ""
"Teraz rpmdrake zostanie ponownie uruchomiony,\n"
-"aby umo©liwiФ szukonie zbiorСw."
+"aby umo©liwiФ szukanie zbiorСw."
#: ../../standalone/rpmdrake_.c:253
msgid "Which file are you looking for?"
@@ -4999,7 +6903,6 @@ msgstr "Czego szukasz?"
msgid "Give a name (eg: `extra', `commercial')"
msgstr "Podaj termin (n.p. ``extra'', ``commercial'')"
-#
#: ../../standalone/rpmdrake_.c:291
msgid "Directory"
msgstr "Katalog"
@@ -5022,7 +6925,7 @@ msgstr ""
#: ../../standalone/rpmdrake_.c:302
msgid "Please submit the following information"
-msgstr "Prze╤lij nastЙpuj╠c╠ informacjЙ"
+msgstr "Wy╤lij nastЙpuj╠c╠ informacjЙ"
#: ../../standalone/rpmdrake_.c:304
#, c-format
@@ -5046,3 +6949,167 @@ msgstr "Znajdowanie pozostaЁych"
#: ../../standalone/rpmdrake_.c:360
msgid "Finding leaves takes some time"
msgstr "Znajdowanie pozostaЁych zajmie trochЙ czasu"
+
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr "WiЙcej pulpitСw graficznych (Gnome, IceWM)"
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+"KDE - podstawowe ╤rodowisko graficzne wraz z zestawem towarzysz╠cych narzЙdzi"
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr "Zarz╠dzanie osobistymi informacjami"
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr "NarzЙdzia do tworzenia i nagrywania CD"
+
+msgid "Internet Tools"
+msgstr "NarzЙdzia Internetowe"
+
+msgid "Internet"
+msgstr "Internet"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr "Finanse osobiste"
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itp."
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr "Programy graficzne, np. Gimp"
+
+msgid "Office"
+msgstr "Biuro"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr "Bazy danych (mysql i postgresql)"
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "NarzЙdzia do Palmi Pilota lub Visior"
+
+msgid "Multimedia - Graphics"
+msgstr "Multimedia - Grafika"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr "Odtwarzacze video i edytory"
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr "Programy rozrywkowe: zrЙczno╤ciowe, planszowe, strategiczne, itp."
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+"Programy biurowe: procesory tekstu (kword, abiword), arkusze kalkulacyjne "
+"(kspread, gnumeric), przegl╠darki pdf, itp."
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+"Zestaw narzЙdzi do czytania i wysyЁania poczty i grup dyskusyjnych (pin, "
+"mutt, tin) oraz przegl╠dania sieci Web"
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr "DzwiЙk: odtwarzacze mp3 i midi, miksery, itp."
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+"Rozmowy chat: (IRC lub natychamiastowa komunikacja) programy jak xchat, "
+"licq, gaim, oraz narzЙdzia transferu plikСw"
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr "PodrЙczniki i HOWTO o Linuksie i wolnym oprogramowaniu"
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm, itp"
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+"╕rodowisko graficzne z przyjaznymi dla u©ytkownika zestawami aplikacji i "
+"narzЙdzi"
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Zestawy narzЙdzi dla poczty, WWW, transferu plikСw i chat"
+
+msgid "Multimedia - Video"
+msgstr "Multimedia - Video"
+
+msgid "KDE"
+msgstr "KDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr "Programy do odtwarzania / edycji d╪wiЙku i video"
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr "Inne pulpity graficzne"
+
+msgid "Multimedia - Sound"
+msgstr "Multimedia - D╪wiЙk"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "Dokumentacja"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Programy do zarz╠dzania finansami, np gnucash"
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr "ObrСbka grafiki"
+
+msgid "Games"
+msgstr "Gry"
+
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia - Nagrywanie pЁyt CD"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr "UЁatwienia komunikacyjne"
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr "Bazy danych"
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Okre╤l rozmiar przeznaczony na instalacjЙ"
+
+#~ msgid "Total size: "
+#~ msgstr "CaЁkowity rozmiar: "
+
+#~ msgid "Reconfigure local network"
+#~ msgstr "Rekonfiguracja sieci lokalnej"
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 05b5b2246..1d119568c 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-11-28 23:04-0300\n"
"Last-Translator: Paulo Cardoso <paulo@ejs.is>\n"
"Language-Team: Portuguese\n"
@@ -14,43 +14,91 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Placa GrАfica"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Selecione uma placa grАfica"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Escolha um X server"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "servidor X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Server XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Qual tipo de entrada vocЙ quer adicionar?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "ConfiguraГЦo pСs-instalГЦo"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Selecione o tamanho da memСria de sua placa grАfica"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Escolha as opГУes do server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Escolha um monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -73,39 +121,40 @@ msgstr ""
"monitor.\n"
" Se tiver dЗvida, escolha caracterМsticas conservadoras."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Taxa de atualizaГЦo horizontal"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Taxa de atualizaГЦo vertical"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor nЦo configurado"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Placa grАfica ainda nЦo configurado"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "ResoluГУes ainda nЦo escolhidas"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "VocЙ quer testar a configuraГЦo"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "AtenГЦo: o teste И perigoso nessa placa grАfica"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Testar configuraГЦo"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -113,186 +162,170 @@ msgstr ""
"\n"
"tente mudar alguns parБmetros"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Ocorreu um erro:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Saindo em %d segundos"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
#, fuzzy
msgid "Is this the correct setting?"
msgstr "Isto estА correto?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Ocorreu um erro, tente mudar alguns parБmetros"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "ResoluГУes AutomАticas"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Para encontrar as resoluГУes disponМveis eu irei tentar algumas diferentes.\n"
-"Sua tela vai piscar...\n"
-"VocЙ pode desligА-la se quiser, vocЙ ouvirА um beep quando terminar"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "ResoluГЦo"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Escolha a resoluГЦo e nЗmero de cores"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Placa GrАfica: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Server XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Mostrar tudo"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "ResoluГУes"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Eu posso tentar achar as resoluГУes disponМveis (ex.: 800x600).\n"
-"Algumas vezes, porИm, pode travar o computador.\n"
-"VocЙ quer tentar?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Nenhuma resoluГЦo vАlida encontrada\n"
-"Tente selecionar outra placa de vМdeo ou monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Estilo do teclado: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo do Mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "SincronizaГЦo Horizontal do Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "AtualizaГЦo Vertical do Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Placa GrАfica: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "MemСria grАfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "OpГУes da profundidade das cores"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "ResoluГУes"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Server XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Preparando configuraГЦo X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Mudar Monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Mudar Placa GrАfica"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Mudar opГУes do Server"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Mudar ResoluГЦo"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Procura automАtica de resoluГУes"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Mostrar informaГЦo"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Testar de novo"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Sair"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "O que vocЙ quer fazer?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Esquecer as alteraГУes?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Manter a configuraГЦo IP atual"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Favor relogar em %s para ativar as mudanГas"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Favor fazer um log out (sair) e entЦo usar as teclas Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "X ao iniciar"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -300,231 +333,229 @@ msgstr ""
"Eu posso fazer seu computador automaticamento iniciar no X apСs o boot.\n"
"VocЙ gostaria de inicar o X quando reiniciar?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Eu posso fazer seu computador automaticamento iniciar no X apСs o boot.\n"
+"VocЙ gostaria de inicar o X quando reiniciar?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Escolha o novo tamanho"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Escolha a ferramente que vocЙ quer usar"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 cores (8 bits)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mil cores (15 bits)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mil cores (16 bits)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milhУes de cores (24 bits)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 bilhУes de cores (32 bits)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB ou mais"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA PadrЦo, 640x480 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "CompatМvel com 8514, 1024x768 a 87 Hz entrelaГado (sem 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 a 87 Hz entrelaГado, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Super VGA Extendido, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA NЦo-entrelaГado, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA de Alta FrequЙncia, 1024x768 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequЙncia que pode fazer 1280x1024 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequЙncia que pode fazer 1280x1024 a 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequЙncia que pode fazer 1280x1024 a 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor que pode fazer 1600x1200 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor que pode fazer 1600x1200 a 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "default"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "tie"
-msgstr "Ativo"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "IP AutomАtico"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Primeiro setor da partiГЦo de boot"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Primeiro setor do drive (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "InstalaГЦo do LILO/grub"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Onde vocЙ quer instalar o carregador de boot?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "InstalaГЦo do LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
#, fuzzy
msgid "None"
-msgstr "Pronto"
+msgstr "pronto"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
#, fuzzy
msgid "Which bootloader(s) do you want to use?"
msgstr "Qual setor vocЙ quer mover?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "Principais opГУes do LILO"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Dispositivo de boot"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "Compacto"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Tempo antes de entrar na imagem padrЦo"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Modo de VМdeo"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Tempo antes de entrar na imagem padrЦo"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Senha (de novo)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Restringir opГУes da linha de comando"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "restrito"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
#, fuzzy
msgid "Bootloader main options"
msgstr "Principais opГУes do LILO"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "OpГЦo ``Restringir opГУes da linha de comando'' nЦo tem uso sem senha"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Favor tentar novamente"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "As senhas nЦo conferem"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
#, fuzzy
msgid ""
"Here are the different entries.\n"
@@ -533,167 +564,345 @@ msgstr ""
"A seguir estЦo as entradas do LILO.\n"
"VocЙ pode adicionar mais ou modificar as existentes."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Pronto"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Qual tipo de entrada vocЙ quer adicionar?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
-msgid "Other OS (windows...)"
+#: ../../any.pm_.c:175
+#, fuzzy
+msgid "Other OS (SunOS...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Qual tipo de entrada vocЙ quer adicionar?"
+#: ../../any.pm_.c:175
+msgid "Other OS (windows...)"
+msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Unsafe"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Remover entrada"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "NЦo И permitido label vazio"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Esse label jА estА sendo utilizado"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Interfaces %s %s encontradas"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "VocЙ tem alguma outra?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "VocЙ tem alguma interface %s?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "NЦo"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Sim"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Ver informaГЦo do hardware"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalando driver para %s placa %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(mСdulo %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Qual driver %s eu deveria tentar?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"Em alguns casos, o driver %s precisa de informaГУes extra para funcionar\n"
+"corretamente, mas ele normalmente funciona bem sem essas informaГУes. VocЙ\n"
+"gostaria de especificar opГУes extras ou deixar o driver localizar na sua\n"
+"mАquina as informaГУes que ele precisa? Ocasionalmente, isso poderА travar\n"
+"o computador, mas nЦo deve causar nenhum dano."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Auto localizar"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Especificar opГУes"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Agora vocЙ poder prover as opГУes para o mСdulo %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"Agora vocЙ pode prover as opГУes para o mСdulo %s.\n"
+"As opГУes estЦo no formato ``nome=valor nome2=valor2 ...''\n"
+"Para instБncia, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "OpГУes do mСdulo:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Falha carregando mСdulo %s.\n"
+"VocЙ quer tentar novamente com outros parБmentros?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Bem-vindo ao %s, o selecionador de sistema operacional!\n"
+"\n"
+"Para listar as opcoes possives, tecle <TAB>.\n"
+"\n"
+"Para carregar um deles, escreva o nome e pressione <ENTER>\n"
+"ou aguarde %d segundos para o boot padrao.\n"
+
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr ""
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr ""
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr ""
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr ""
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr ""
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr ""
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr ""
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr ""
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Saindo em %d segundos"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Criar"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Deletar"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tipo"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Ponto de Montagem"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Gravar /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Mudar para modo expert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Mudar para modo normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Restaurar do arquivo"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Salvar no arquivo"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Restaurar do disquete"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Salvar em disquete"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Limpar tudo"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Formatar tudo"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Auto alocar"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Todas as partiГУes primАrias estЦo sendo usadas"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Eu nЦo posso adicionar mais nenhuma partiГЦo"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -701,59 +910,63 @@ msgstr ""
"Para ter mais partiГУes, favor deletar uma para poder criar uma partiГЦo "
"extendida"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Recuperar tabela de partiГЦo"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Desfazer"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Gravar tabela de partiГЦo"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Atualizar"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Vazio"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Outro"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Vazio"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Outro"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tipos de sistema de arquivo:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detalhes"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -765,94 +978,94 @@ msgstr ""
"Eu sugiro vocЙ a primeiro redimensionar a partiГЦo\n"
"(clique nela, depois clique em \"Redimensinar\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Favor primeiro fazer um backup de seus dados"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Ler com atenГЦo!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Erro"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Ponto de montagem: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra do drive no DOS: %s (apena um palpite)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Iniciar: setor: %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Tamanho: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s setores"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cilindro %d ao cilindro %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "NЦo formatado\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr ""
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -860,79 +1073,79 @@ msgstr ""
"PartiГЦo de boot padrЦo\n"
" (para boot do MS-DOS, nЦo para o lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "NМvel %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamanho do bloco %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Favor clicar em uma partiГЦo"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Tamanho: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindros, %s cabeГas, %s setores\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "Gravar tabela de partiГЦo"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "no barramento %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Ativo"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Adicionar ao RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Remover do RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Modificar RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Escolher aГЦo"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -944,7 +1157,7 @@ msgstr ""
"Ou vocЙ usa LILO e ele nЦo funcionarА, ou vocЙ nЦo usarА LILO e vocЙ nЦo "
"precisarА de /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -957,204 +1170,210 @@ msgstr ""
"Se vocЙ quer usar o gerenciador de boot LILO, tenha cuidade para adicinar "
"uma partiГЦo /boot."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' ao invИs"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "todos os dados desta partiГЦo serЦo perdidos"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Sair sem salvar"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Sair sem gravar na tabela de partiГЦo?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Mudar tipo de partiГЦo"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Qual tipo de partiГЦo vocЙ quer?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Qual lМngua vocЙ quer?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Onde vocЙ quer montar o dispositivo %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Onde vocЙ quer montar o dispositivo %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "todos os dados desta partiГЦo serЦo perdidos"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando partiГЦo %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando partiГЦo %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "ApСs formatar todas as partiГУes,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "todos os dados nessas partiГУes serЦo perdidos"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Mover"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
#, fuzzy
msgid "Which disk do you want to move it to?"
msgstr "Qual disco vocЙ quer mover?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Setor"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
#, fuzzy
msgid "Which sector do you want to move it to?"
msgstr "Qual setor vocЙ quer mover?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Movendo"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Movendo partiГЦo..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A tabela de partiГЦo do drive %s estА para ser gravada no disco!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "VocЙ precisarА reiniciar antes que as modificaГУes tenham efeito"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Computando limites do sistema de arquivo FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Qual tipo de partiГЦo vocЙ quer?"
+
+#: ../../diskdrake.pm_.c:597
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "todos os dados desta partiГЦo serЦo perdidos"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "todos os dados desta partiГЦo serЦo perdidos"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Escolha o novo tamanho"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Criar uma nova partiГЦo"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Setor inicial: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Tamanho em MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tipo do Sistema de Arquivos: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PreferЙncia: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
#, fuzzy
msgid "File already exists. Use it?"
msgstr "Uma entrada %s jА existe"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Selecione arquivo"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1162,11 +1381,11 @@ msgstr ""
"O backup da tabela de partiГЦo nЦo tem o mesmo tamanho\n"
"Ainda continuar?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Aviso"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1174,77 +1393,77 @@ msgstr ""
"Insira um disquete no drive\n"
"Todos os dados no disquete serЦo perdidos"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Tentando resgatar tabela de partiГЦo"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "nМvel"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "tamanho do bloco"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Escolha um RAID existente para adicionar"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "novo"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataГЦo de %s falhou"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "NЦo sabe como formatar %s no tipo %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "falhou ao montar nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "falhou ao montar: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Pontos de montagem devem comeГar com uma /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "JА existe uma partiГЦo no ponto de montagem %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro arbindo %s para gravaГЦo: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1252,75 +1471,81 @@ msgstr ""
"Ocorreu um erro - nenhum dispositivo vАlido foi encontrado para criar novos "
"sistema de arquivos. Favor checar seu hardware para a causa desse problema"
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "VocЙ nЦo tem nenhuma partiГЦo!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Escolha linguagem preferido para a instalaГЦo e utilizaГЦo do sistema"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Escolha o tipo de layout correspondente ao seu teclado na lista acima"
-
-#: ../../help.pm_.c:13
-#, fuzzy
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Escolha o tipo de layout correspondente ao seu teclado na lista acima"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Escolha \"Instalar\" se vocЙ nЦo tem versУes anteriores do Linux\n"
-"instaladas, ou se vocЙ deseja usar mЗltiplas distribuiГУes ou versУes.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Escolha \"Atualizar\" se vocЙ deseja atualizar sua versЦo do\n"
-"Linux Mandrake: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 ou 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Selecione:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Recomendado: Se vocЙ nunca instalou Linux antes.\n"
"\n"
-" - Customizado: Se vocЙ jА И familiar com Linux, vocЙ poderА \n"
-"selecionar o tipo de instalaГЦo entre normal, desenvolvimento ou\n"
-"servidor. Escolha \"Normal\" para uma instalaГЦo genИrica no seu\n"
-"computador. VocЙ pode escolher \"Desenvolvimento\" se vocЙ usarА o "
-"computador\n"
-"principalmente para o desenvolvimento de software, ou escolha \"Server\" se\n"
-"vocЙ deseja instalar um servidor genИrico (para correio, impressЦo...).\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Expert: Se vocЙ И fluente com GNU/Linux e quer fazer uma\n"
-"instalaГЦo altamente customizada, esse И o tipo de instalaГЦo para vocЙ.\n"
-"VocЙ poderА escolher a utilizaГЦo do seu sistema como \"Customizado\".\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1328,16 +1553,16 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Selecione:\n"
"\n"
-"\n"
" - Customizado: Se vocЙ jА И familiar com Linux, vocЙ poderА \n"
"selecionar o tipo de instalaГЦo entre normal, desenvolvimento ou\n"
"servidor. Escolha \"Normal\" para uma instalaГЦo genИrica no seu\n"
@@ -1349,313 +1574,517 @@ msgstr ""
"\n"
" - Expert: Se vocЙ И fluente com GNU/Linux e quer fazer uma\n"
"instalaГЦo altamente customizada, esse И o tipo de instalaГЦo para vocЙ.\n"
-"VocЙ poderА escolher a utilizaГЦo do seu sistema como \"Customizado\".\n"
+"VocЙ poderА escolher a utilizaГЦo do seu sistema como \"Customizado\"."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX irА tentar detectar um ou mais adaptador(es) PCI\n"
-"SCSI. Se encontrar algum e tiver o driver dele(s), ele(s) serА(serЦo)\n"
-"instalado(s) automaticamente.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
+"\n"
+"\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
+"\n"
+"\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
+"\n"
+"\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
"\n"
-"Se seu adaptador SCSI estА em uma placa ISA, ou И PCI mas DrakX\n"
-"nЦo saber qual driver utilizar, ou se vocЙ nЦo possui nenhum adaptador\n"
-"SCSI, vocЙ serА perguntado se vocЙ possui algum ou nЦo. Se vocЙ nЦo\n"
-"tiver, escolha \"NЦo\". Se vocЙ tiver um ou mais, responda \"Sim\". Uma\n"
-"lista de drivers vai aparecer, e dela vocЙ deverА escolher qual\n"
-"vocЙ possui.\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"ApСs vocЙ ter selecionado o driver, DrakX irА perguntar se\n"
-"vocЙ quer especificar opГУes para ele. Primeiro, tente e deixe\n"
-"o driver procurar pelo hardware: normalmente funciona.\n"
"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
"\n"
-"Se nЦo, nЦo esqueГa que vocЙ pode conseguir informaГЦo sobre seu\n"
-"hardware pelo Windows (se vocЙ o possui no seu computador), como\n"
-"sugerido pelo guia de instalaГЦo. Essas sЦo as opГУes que vocЙ\n"
-"precisarА para configurar o driver."
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
-#, fuzzy
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
"\n"
-"- Ctrl-d to delete a partition\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"A esse ponto, vocЙ pode escolher qual(is) partiГЦo(Уes) usar para instalar\n"
-"seu sistema Linux-Mandrake se eles jА tiverem sidos definidos (em uma\n"
-"instalaГЦo anterior do Linux ou outra ferramenta de partiГЦo). Em outros\n"
-"casos, devem ser definidas algumas partiГУes. Essa operaГЦo consiste em\n"
-"dividir logicamente o disco rМgido do seu computador em separadas Аreas\n"
-"de uso.\n"
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"Se vocЙ tiver que criar novas partiГУes, use \"Auto alocar\" para "
-"automaticamente\n"
-"criar partiГУes para o Linux. VocЙ pode selecionar o disco para \n"
-"particionamente clicando em \"hda\" para o primeiro drive IDE,\n"
-"\"hdb\" para o segundo ou \"sda\" para o primeiro drive SCSI e assim por\n"
-"diante\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"Duas partiГУes comuns sЦo: a partiГЦo root (/), que И o comeГo da\n"
-"hierarquia do sistema de arquivo e /boot, que contИm todos os arquivos\n"
-"necessАrios para iniciar o sistema operacional quando o\n"
-"computador И ligado.\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Como os efeitos desse processo sЦo normalmente irreversМveis, "
-"particionamento\n"
-"pode ser intimidador e estressante para um usuАrio inexperiente. DiskDrake\n"
-"simplifica o processo para o usuАrio. Consulte a documentaГЦo\n"
-"e nЦo se apresse antes de continuar."
+" * \"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:252
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-"Qualquer nova partiГЦo deve ser formatada para ser utilizada\n"
-"(formatar significa cria sistema de arquivo). A esse ponto, vocЙ pode\n"
-"re-formatar alguma partiГЦo existente para apagar as informaГУes\n"
-"que ela contИm. Nota: nЦo И necessАrio re-formatar partiГУes\n"
-"prИ-existentes, particularmente se eles contИm arquivos que vocЙ deseja "
-"manter.\n"
-"Normalmente as partiГУes mantidas sЦo /home e /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:257
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:267
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE 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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:155
-msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
msgstr ""
-"Os pacotes selecionados estЦo sendo instalados. Essa operaГЦo\n"
-"deve demorar alguns minutos a nЦo ser que vocЙ tenha escolhido\n"
-"atualizar um sistema existente, nesse caso, pode demorar ainda\n"
-"mais tempo antes da atualizaГЦo iniciar."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:303
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
"\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"Se DrakX falhar ao detectar o seu mouse, ou vocЙ checar\n"
-"o que ele fez, vocЙ verА uma lista de mouses acima.\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
"\n"
-"Se vocЙ concordar com os configuraГУes do DrakX, apenas pule para\n"
-"a seГЦo que vocЙ quer clicando no menu na esquerda. Se nЦo, escolha\n"
-"no menu o tipo de mouse mais prСximo ao que vocЙ possui.\n"
"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
-"No caso de um mouse serial, vocЙ terА que dizer ao DrakX\n"
-"a qual porta serial ele estА conectado."
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
+msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:329
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
+"\n"
+"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
-"Favor selecionar a porta correta. Por exemplo, a porta COM1 no MS Windows\n"
-"И chamada ttyS0 no Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:341
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Essa seГЦo И dedicada Ю configuraГЦo a configuraГЦo\n"
-"de uma rede local (LAN) ou de um modem.\n"
-"\n"
-"Escolha \"Rede Local\" e DrakX irА\n"
-"tentar localizar um adaptador Ethernet na sua mАquina. Adaptadores\n"
-"PCI provalvemente serЦo encontrados e inicializados automaticamente.\n"
-"Mesmo assim, se seu perifИrio И ISA, a autodetecГЦo nЦo funcionarА,\n"
-"e vocЙ terА que escolher um driver da lista que irА aparecer.\n"
+
+#: ../../help.pm_.c:358
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
"\n"
-"Para adaptadores SCSI, vocЙ pode deixar o driver procurar pelo\n"
-"adaptador na primeira vez ou vocЙ terА que especificar as\n"
-"configuraГУes do driver que vocЙ deve possuir na documentaГЦo do\n"
-"hardware.\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+#, fuzzy
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Favor selecionar a porta correta. Por exemplo, a porta COM1 no MS Windows\n"
+"И chamada ttyS0 no Linux."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"Se vocЙ instalar o Linux-Mandrake em uma mАquina que jА И parte\n"
-"de uma rede existente, o administrador da rede terА que lhe dar\n"
-"todas as informaГУes necessАrias (endereГo IP, submАscara da rede\n"
-"ou netmak para encurtar e o endereГo do host). Se vocЙ estА criando\n"
-"uma rede pessoal em casa por exemplo, vocЙ deverА escolher os\n"
-"endereГos.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Escolha \"ConexЦo por modem\" e a conexЦo da Internet atravИs do modem\n"
-"serА configurada. Drakx irА tentar localizar seu modem, se ele falhar\n"
-"vocЙ terА que selecionar a porta serial onde seu modem estА conectado."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"Agora vocЙ pode entrar com as opГУes dialup. Se vocЙ nЦo tem certeza sobre\n"
+"o que colocar, a informaГЦo correta pode ser obtida com o seu provedor."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Preencha:\n"
"\n"
@@ -1672,7 +2101,22 @@ msgstr ""
"essa opГЦo. Se selecionada, nenhum valor И necessАrio em \"EndereГo IP\".\n"
"Se vocЙ nЦo tem certeza, pergunte ao administrador de rede.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"Se sua rede usa NIS, selecione \"Usar NIS\". Se vocЙ nЦo sabe, pergunte\n"
+"ao seu administrador de rede."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1680,7 +2124,7 @@ msgstr ""
"Agora vocЙ pode entrar com as opГУes dialup. Se vocЙ nЦo tem certeza sobre\n"
"o que colocar, a informaГЦo correta pode ser obtida com o seu provedor."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1688,13 +2132,15 @@ msgstr ""
"Se vocЙ irА usar proxies, favor configurА-los agora. Se vocЙ nЦo sabe se\n"
"irА usar proxies, pergunte ao seu administrador de rede ou ao seu provedor."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1709,13 +2155,19 @@ msgstr ""
"Note que vocЙ deve escolher o mirror (espelho) e pacotes criptogrАfico de\n"
"acordo com a sua legislaГЦo."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"Agora vocЙ pode selecionar o fuso horАrio de acordo com onde vocЙ vive.\n"
"\n"
@@ -1724,87 +2176,176 @@ msgstr ""
"e\n"
"o traduz de acordo com o fuso horАrio que vocЙ selecionou."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
-#: ../../help.pm_.c:257
-#, fuzzy
+#: ../../help.pm_.c:486
+msgid ""
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
+"\n"
+"\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
+"\n"
+"\n"
+"If you don't have printer, click on \"None\"."
+msgstr ""
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
+"\n"
+"\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
+"\n"
+"\n"
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
+
+#: ../../help.pm_.c:521
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
+"You have to enter some informations here.\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
msgstr ""
-"Linux pode lidar com vАrios tipos de impressora. Cada uma delas\n"
-"requer uma configuraГЦo diferente.\n"
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
"\n"
-"Se sua impressora И conectada diretamente ao seu computador, selecione\n"
-"\"Impressora Local\". VocЙ terА que dizer em qual porta sua impressora\n"
-"estА conectada, e selecionar o filtro apropriado.\n"
"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
"\n"
-"Se vocЙ quiser acessar um impressora em uma mАquina Unix remota,\n"
-"vocЙ terА que selecionar \"Lpd Remoto\". Para fazИ-lo funcionar,\n"
-"nЦo И necessАrio nome de usuАrio ou senha, mas vocЙ terА que saber\n"
-"o nome da fila de impressЦo no servidor.\n"
"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
"\n"
-"Se vocЙ quiser acessar uma impressora SMB (que significa: uma impressora\n"
-"localizada em um servidor Windows 9x/NT), vocЙ terА que especificar seu\n"
-"nome SMB (que nЦo И o nome TCP/IP), e possivelmente seu endereГo IP,\n"
-"mais o nome do usuАrio, grupo de trabalho e senha requeridos para poder\n"
-"acessar a impressora, e И claro o nome da impressora. O mesmo vale para\n"
-"uma impressora NetWare, exceto que vocЙ nЦo precisa da informaГЦo sobre\n"
-"o grupo de trabalho."
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:578
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"Agora vocЙ deve entrar com a senha root do seu sistema Linux-\n"
"Mandrake. A senha deve ser digitada duas vezes para verificar\n"
@@ -1820,7 +2361,7 @@ msgstr ""
"anotada. NЦo faГa a senha muito grande ou muito complicada, vocЙ\n"
"deve se lembrar dela sem muita dificuldade."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1828,7 +2369,7 @@ msgstr ""
"Para ter um sistema mais segura, vocЙ deve escolher \"Usar arquivo shadow\"\n"
"e \"Usar senhas MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1836,7 +2377,7 @@ msgstr ""
"Se sua rede usa NIS, selecione \"Usar NIS\". Se vocЙ nЦo sabe, pergunte\n"
"ao seu administrador de rede."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1880,22 +2421,18 @@ msgstr ""
"que vocЙ criou aqui, e se logar como root somente para propСsitos de\n"
"manutenГЦo e administraГЦo."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"и altamente recomendado que vocЙ responda \"Sim\" aqui. Se vocЙ instalar\n"
-"o Microsoft Windows depois ele poderА sobrescrever o sector de boot.\n"
-"A nЦo ser que vocЙ crie um disquete de boot como sugerido, vocЙ nЦo\n"
-"conseguirА mais entrar no Linux."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1908,7 +2445,7 @@ msgstr ""
"A nЦo ser que vocЙ saiba exatamente o que estА fazendo, escolha \"Primeiro\n"
"setor do drive (MBR)\"."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
#, fuzzy
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
@@ -1917,10 +2454,10 @@ msgstr ""
"A nЦo ser que vocЙ saiba especificamente o contrАrio, a escolha comum И\n"
"(o disco master do canal primАrio)."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1931,7 +2468,8 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1948,7 +2486,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"As principais opГУes do LILO sЦo:\n"
@@ -1978,10 +2518,67 @@ msgstr ""
" * normal: seleciona o modo de texto normal 80x25.\n"
" * <nЗmero>: usa o modo de texto correspondente."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"As principais opГУes do LILO sЦo:\n"
+" - Dispositivo de BOOT: Indica o nome do dispositivo (ex.: uma partiГЦo\n"
+"do disco rМgido) que contИm o setor de boot. A nЦo ser que vocЙ saiba\n"
+"exatamente o que estА fazendo, escolha \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Linear: Cria endereГos de setor linear, ao invИs de endereГos\n"
+"setor/cabeГa/cilindro. EndereГo lineares sЦo traduzidos na hora de\n"
+"execuГЦo e nЦo dependem da geometria do disco. Note que os discos de\n"
+"boot nЦo pode ser \"linear\", porque o BIOS determina a geometria nЦo\n"
+"funcionam corretamente nos discos de boot. Quando usar \"linear\"\n"
+"em discos grandes, /sbin/lilo pode gerar referЙncias Ю Аreas de\n"
+"disco inacessМveis, porque o endereГo do setor 3D nЦo sЦo conhecidos\n"
+"antes da hora do boot\n"
+"\n"
+"\n"
+" - Compacto: Tenta unir os pedidos de leitura Ю setores adjacentes\n"
+"em um Зnico arquivo. Isso reduz drasticamente o tempo de leitura e\n"
+"mantЙm o arquivo pequeno. и recomendado usar \"compacto\" quando se\n"
+"boot por discos de boot\n"
+"\n"
+"\n"
+" - Modo Visual: Isso especifique o modo de texto VGA que deve ser\n"
+"selecionada durante o boot. Os seguintes valores sЦo disponМveis: \n"
+" * normal: seleciona o modo de texto normal 80x25.\n"
+" * <nЗmero>: usa o modo de texto correspondente."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2004,7 +2601,7 @@ msgstr ""
"a configuraГЦo lhe serviu. Se ela nЦo servir, vocЙ pode voltar\n"
"e mudА-las, quantas vezes for necessАrio."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2013,7 +2610,7 @@ msgstr ""
"configurar\n"
"corretamento o Sistema de Janelas X."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2021,43 +2618,47 @@ msgstr ""
"Se vocЙ quiser usar o login grАfico, selecione \"Sim\". Caso contrАrio,\n"
"escolha \"NЦo\"."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
+"\n"
+"\n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
+"\n"
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"VocЙ agora pode fazer algumas opГУes miscelБneas para o seu sistema.\n"
"\n"
@@ -2086,7 +2687,7 @@ msgstr ""
"ativado apСs o boot, selecione essa opГЦo (Nota: o Num Lock ainda nЦo\n"
"funcionarА no X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2100,189 +2701,133 @@ msgstr ""
"mente. Se vocЙ quiser dar boot em outro sistema operacional existente,\n"
"favor ler as instruГУes adicionais."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Escolha sua lМngua"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Selecione a classe da instalaГЦo"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
#, fuzzy
msgid "Hard drive detection"
msgstr "Usar optimizaГЦo do disco rМgido?"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Configurar mouse"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Escolha seu teclado"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "MiscelБneos"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Setup dos sistemas de arquivos"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatar partiГУes"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Escolha pacotes a serem instalados"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalar sistema"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Configurar rede"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "CriptogrАfico"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Configurar fuso horАrio"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
#, fuzzy
msgid "Configure services"
msgstr "Configurar impressora"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Configurar impressora"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Adicionar um usuАrio"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Criar um disco de boot"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Instalar carregador de boot"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "Configurar X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr ""
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Sair da instalaГЦo"
-#: ../../install2.pm_.c:337
-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 ""
-"VocЙ deve ter uma partiГЦo root.\n"
-"Para isso, crie um partiГЦo (ou click em uma existen).\n"
-"EntЦo escolha aГЦo ``Ponto de montagem'' e coloque como `/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Eu nЦo consigo ler sua tabela de partiГЦo, И muito defeituosa\n"
-"para mim. Eu irei tentar continuar limpando as partiГУes defeituosas"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Erro lendo arquivo $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"O DiskDrake falhou na leitura da tabela de partiГЦo.\n"
-"Continue a seu prСprio risco!"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "Que tipo de mouse vocЙ tem?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "Procurando partiГЦo root."
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "Que tipo de mouse vocЙ tem?"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformaГЦo"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Essa nЦo И uma partiГЦo root, favor selecione outra."
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "Nenhuma partiГЦo root encontrada"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NЦo pode usar broadcast sem o domМnio NIS"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Erro lendo arquivo $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"Um erro ocorreu, mas eu nЦo sei como lidar com ele.\n"
-"Continue a seu prСprio risco."
-
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "Ponto de montagem %s duplicado"
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
+"VocЙ deve ter uma partiГЦo root.\n"
+"Para isso, crie um partiГЦo (ou click em uma existen).\n"
+"EntЦo escolha aГЦo ``Ponto de montagem'' e coloque como `/'"
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo Ю %s"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Nenhum drive de disquete disponМvel"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "Entrando no passo `%s'\n"
-
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "VocЙ tem que ter uma partiГЦo swap"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2292,99 +2837,80 @@ msgstr ""
"\n"
"Continuar mesmo assim?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "Escolha o tamanho que vocЙ deseja instalar"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Nome do usuАrio"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "Tamanho total:"
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "VersЦo: %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Formatando partiГЦos"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "Tamanho: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "Tentando resgatar tabela de partiГЦo"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "Escolha os pacotes que vocЙ quer instalar"
+#: ../../install_interactive.pm_.c:87
+msgid "Use the Windows partition for loopback"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "InformaГЦo"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Qual partiГЦo vocЙ quer usar como sua partiГЦo root"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalar"
+#: ../../install_interactive.pm_.c:92
+#, fuzzy
+msgid "Choose the sizes"
+msgstr "Escolha o novo tamanho"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "Instalando"
+#: ../../install_interactive.pm_.c:93
+#, fuzzy
+msgid "Root partition size in MB: "
+msgstr "PartiГЦo Root"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "Por favor aguarde, "
+#: ../../install_interactive.pm_.c:94
+#, fuzzy
+msgid "Swap partition size in MB: "
+msgstr "Tamanho em MB: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Tempo restante "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Tempo total "
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Qual tipo de partiГЦo vocЙ quer?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "Preparando instalaГЦo"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "Computando limites do sistema de arquivo FAT"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Instalando pacote %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "Continuar mesmo assim?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "Houve um erro ordenando os pacotes:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "Usar o configuraГЦo existente para o X11?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "VocЙ nЦo tem nenhuma partiГЦo windows!"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
+#: ../../install_interactive.pm_.c:113
#, fuzzy
-msgid "You don't have any enough room for Lnx4win"
-msgstr "VocЙ nЦo tem nenhuma partiГЦo!"
-
-#: ../../install_steps_gtk.pm_.c:217
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2399,37 +2925,148 @@ msgstr ""
"opcionalmente rodar o defrag) nesta partiГЦo e fazer backup de seus dados.\n"
"Quando tiver certeza, pressione Ok."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "Qual setor vocЙ quer mover?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "PartiГЦo"
+
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "Falha no redimensionamento automАtico"
-#: ../../install_steps_gtk.pm_.c:265
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:150
#, fuzzy
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Qual partiГЦo vocЙ quer usar como sua partiГЦo root"
+msgid "Remove Windows(TM)"
+msgstr "Windows(TM)"
+
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "todos os dados desta partiГЦo serЦo perdidos"
-#: ../../install_steps_gtk.pm_.c:284
+#: ../../install_interactive.pm_.c:164
#, fuzzy
-msgid "Choose the sizes"
-msgstr "Escolha o novo tamanho"
+msgid "Expert mode"
+msgstr "Expert"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:171
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
+#: ../../install_interactive.pm_.c:195
#, fuzzy
-msgid "Root partition size in MB: "
-msgstr "PartiГЦo Root"
+msgid "You don't have enough free space on your Windows partition"
+msgstr "VocЙ nЦo tem nenhuma partiГЦo windows!"
-#: ../../install_steps_gtk.pm_.c:288
+#: ../../install_interactive.pm_.c:210
#, fuzzy
-msgid "Swap partition size in MB: "
-msgstr "Tamanho em MB: "
+msgid "I can't find any room for installing"
+msgstr "Eu nЦo posso adicionar mais nenhuma partiГЦo"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "O particionamento falhou: sem sistema de arquivo root"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "Trazendo (acessando) a rede"
+
+#: ../../install_interactive.pm_.c:238
+#, fuzzy
+msgid "Bringing down the network"
+msgstr "Trazendo (acessando) a rede"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"Um erro ocorreu, mas eu nЦo sei como lidar com ele.\n"
+"Continue a seu prСprio risco."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "Ponto de montagem %s duplicado"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo Ю %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Nenhum drive de disquete disponМvel"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entrando no passo `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2438,7 +3075,7 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2448,104 +3085,190 @@ msgid ""
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "VocЙ serА capaz de escolher mais precisamente no prСximo passo"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
#, fuzzy
msgid "Percentage of packages to install"
msgstr "Escolha pacotes a serem instalados"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "Escolha os pacotes que vocЙ quer instalar"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "InformaГЦo"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalar"
+
+#: ../../install_steps_gtk.pm_.c:272
#, fuzzy
msgid "Automatic dependencies"
msgstr "ResoluГУes AutomАticas"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Pacote defeituoso"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "VersЦo: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "Tamanho: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamanho total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Escolha pacotes a serem instalados"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "Escolha pacotes a serem instalados"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:496
-#, fuzzy
-msgid "The following packages are going to be installed/removed"
-msgstr "Escolha pacotes a serem instalados"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "Por favor aguarde, "
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Tempo restante "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Tempo total "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "Cancelar"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "Preparando instalaГЦo"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pacotes"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalando pacote %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Aceitar usuАrio"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2555,201 +3278,402 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "Redimensionar"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "Continuar mesmo assim?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "Houve um erro ordenando os pacotes:"
+
+#: ../../install_steps_gtk.pm_.c:573
#, fuzzy
msgid "There was an error installing packages:"
msgstr "Houve um erro ordenando os pacotes:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Ocorreu um erro"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
+#, fuzzy
msgid "Please, choose a language to use."
-msgstr ""
+msgstr "Que tipo de mouse vocЙ tem?"
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
#, fuzzy
msgid "Please, choose your keyboard layout."
msgstr "Qual o layout do seu teclado?"
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "PartiГЦo Root"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Qual a partiГЦo root (/) do seu sistema?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Classe de InstalaГЦo"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Qual classe de instalaГЦo vocЙ quer?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instalar/Atualizar"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Isso И uma instalaГЦo ou atualizaГЦo?"
-#: ../../install_steps_interactive.pm_.c:110
-#, fuzzy
-msgid "Automated"
-msgstr "IP AutomАtico"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Recomendado"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Customizado"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Atualizar"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "InformaГЦo"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Desenvolvimento"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:141
+#: ../../install_steps_interactive.pm_.c:228
#, fuzzy
-msgid "Which usage is your system used for ?"
+msgid "What is your system used for?"
msgstr "Qual o seu fuso horАrio?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
#, fuzzy
msgid "Please, choose the type of your mouse."
msgstr "Que tipo de mouse vocЙ tem?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Porta do Mouse"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
#, fuzzy
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Em que porta serial seu mouse estА conectado?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "Configurando cartУes PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Configuring IDE"
msgstr "Testar configuraГЦo"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "sem partiГУes disponМveis"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-#, fuzzy
-msgid "Please choose a partition to use as your root partition."
-msgstr "Qual partiГЦo vocЙ quer usar como sua partiГЦo root"
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Escolha os ponto de montagem"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Eu nЦo consigo ler sua tabela de partiГЦo, И muito defeituosa\n"
+"para mim. Eu irei tentar continuar limpando as partiГУes defeituosas"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"O DiskDrake falhou na leitura da tabela de partiГЦo.\n"
+"Continue a seu prСprio risco!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "PartiГЦo Root"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Qual a partiГЦo root (/) do seu sistema?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"VocЙ precisa reiniciar para que as modificaГУes na tabela de partiГЦo tenham "
"efeito"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Escolha as partiГУes que vocЙ quer formatar"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatando partiГЦos"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Sem swap suficiente para completar a instalaГЦo, favor adicionar mais"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Procurando por pacotes disponМveis"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Procurando pacotes Ю atualizar"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normal"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Recomendado"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Customizado"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "Escolha o tamanho que vocЙ deseja instalar"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "SeleГЦo de Grupo de Pacotes"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
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 ""
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2757,177 +3681,11 @@ msgstr ""
"Instalando pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "ConfiguraГЦo pСs-instalГЦo"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "Manter a configuraГЦo IP atual"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "Reconfigurar rede agora"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "NЦo configurar rede"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "ConfiguraГЦo da Rede"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "A Rede Local jА foi configurado. VocЙ quer:"
-
-#: ../../install_steps_interactive.pm_.c:421
-#, fuzzy
-msgid "Do you want to configure a local network for your system?"
-msgstr "VocЙ quer configurar uma rede para o seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "nenhuma placa de rede encontrada"
-
-#: ../../install_steps_interactive.pm_.c:449
-#, fuzzy
-msgid "Modem Configuration"
-msgstr "Testar configuraГЦo"
-
-#: ../../install_steps_interactive.pm_.c:450
-#, fuzzy
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "VocЙ quer configurar uma rede para o seu sistema?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "Configurando dispositivo de rede %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"Favor entrar com a configuraГЦo IP para esta mАquina.\n"
-"Cada item deve ser entrando como endereГo IP pontilhado-decimal\n"
-"(por exemplo, 1.2.3.4)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP AutomАtico"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "EndereГo IP:"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "Netmask:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "O endereГo IP deve ser no formato 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "Configurando rede"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"Favor entrar com o nome do seu host.\n"
-"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
-"como por exemplo ``mybox.mylab.myco.com'' .\n"
-"VocЙ tambИm pode entrar como o endereГo IP de um gateway se vocЙ tiver um"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Servidor DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Dispositivo de gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Host name (nome do host):"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "Tentar localizar modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-#, fuzzy
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Em qual porta serial seu modem estА conectada?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "OpГУes dialup"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nome da conexЦo"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "NЗmero do telefone"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "ID de Login"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "AutenticaГЦo?"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Baseado em script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Baseado em terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nome do domМnio"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Primeiro Servidor DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Segundo Servidor DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3002,89 +3760,95 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um mirror (espelho) de onde pegar os pacotes"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
"Contactando o mirror (espelho) para pegar a lista de pacotes disponМveis"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "Escolha os pacotes que vocЙ quer instalar."
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
msgstr "Qual o seu fuso horАrio?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "O seu relСgio do hardware estА configurado como GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Qual tipo de partiГЦo vocЙ quer?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Usar arquivo shadow (sombra)"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow (sombra)"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Usar senhas MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "pАginas amarela"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Essa senha И muito simples (deve ter ao menos %d caracteres)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "AutenticaГЦo NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "DomМnio NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Aceitar usuАrio"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Adicionar usuАrio"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(jА adicionado %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3094,63 +3858,90 @@ msgstr ""
"Entre com o usuАrio\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nome real"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Nome do usuАrio"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Essa senha И muito simples"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Favor dar um nome de usuАrio"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"O nome do usuАrio deve conter apenas letras minЗsculas, nЗmeros `-' e `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Esse usuАrio jА foi adicionado"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"Um disco de boot provЙ uma maneira de dar boot no Linux sem depender\n"
+"de um carregador de boot normal. Isso И necessАrio se vocЙ nЦo quiser "
+"instalar\n"
+"o LILO (ou grub) no seu sistema, ou se outro sistema operacionarl remover\n"
+"o LILO, ou o se LILO nЦo funcionar com o seu hardware. Um disco de boot\n"
+"customizado tambИm pode ser usado com uma imagem de backup do Mandrake,\n"
+"fazendo muito mais fАcil recuperar o sistema com danos severos.\n"
+"VocЙ gostaria de criar um disco de boot para o seu sistema?"
+
+#: ../../install_steps_interactive.pm_.c:869
#, fuzzy
msgid "First floppy drive"
msgstr "Primeiro drive"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
#, fuzzy
msgid "Second floppy drive"
msgstr "Segundo drive"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Pular"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3172,187 +3963,149 @@ msgstr ""
"fazendo muito mais fАcil recuperar o sistema com danos severos.\n"
"VocЙ gostaria de criar um disco de boot para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquete disponМvel"
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolha o drive de disquete que vocЙ quer usar para criar o disco de boot"
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Criando disco de boot"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "A InstalaГЦo do LILO falhou. Ocorreram os seguintes erros:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "VocЙ quer usar o SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "Principais opГУes do SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"A seguir estЦo as entradas do SILO.\n"
-"VocЙ pode adicionar mais ou modificar as existentes."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "PartiГЦo"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "Esse label jА estА sendo utilizado"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "A InstalaГЦo do SILO falhou. Ocorreram os seguintes erros:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "Preparando carregador de boot"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "VocЙ quer usar o aboot?"
+msgstr "VocЙ quer usar o SILO?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "ConfiguraГЦo de Proxies"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "Proxy HTTP"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "Proxy FTP"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "O proxy deve ser http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "O proxy deve ser ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "A InstalaГЦo do LILO falhou. Ocorreram os seguintes erros:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Bem-vindo Ю Crackers"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Pobre"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Baixo"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "MИdio"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Alto"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "ParanСico"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "QuestУes miscelБneas"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(pode causar corrupГЦo dos dados)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Usar optimizaГЦo do disco rМgido?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Escolha nМvel de seguranГa"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Especifique o tamanho da RAM se necessАrio (%d MB encontrados)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automontagem de mМdia removМvel"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "Ativar num lock na inicializaГЦo"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "Dar o tamanha da RAM em Mb"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
#, fuzzy
msgid "Can't use supermount in high security level"
msgstr "OpГУes do nМvel de seguranГa"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "Tentar localizar dispositivos PCI?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "Usar o configuraГЦo existente para o X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Preparando instalaГЦo"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3362,7 +4115,7 @@ msgstr ""
"\n"
"VocЙ realmente quer sair agora?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3381,153 +4134,19 @@ msgstr ""
"InformaГЦo sobre configurar seu sistema estА disponМvel no capМtulo\n"
"pСs instalaГЦo do Oficial Guia do UsuАrio Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Desligando"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalando driver para %s placa %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(mСdulo %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Qual driver %s eu deveria tentar?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"Em alguns casos, o driver %s precisa de informaГУes extra para funcionar\n"
-"corretamente, mas ele normalmente funciona bem sem essas informaГУes. VocЙ\n"
-"gostaria de especificar opГУes extras ou deixar o driver localizar na sua\n"
-"mАquina as informaГУes que ele precisa? Ocasionalmente, isso poderА travar\n"
-"o computador, mas nЦo deve causar nenhum dano."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "Auto localizar"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "Especificar opГУes"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "Agora vocЙ poder prover as opГУes para o mСdulo %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Agora vocЙ pode prover as opГУes para o mСdulo %s.\n"
-"As opГУes estЦo no formato ``nome=valor nome2=valor2 ...''\n"
-"Para instБncia, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "OpГУes do mСdulo:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"Falha carregando mСdulo %s.\n"
-"VocЙ quer tentar novamente com outros parБmentros?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "Tentar localizar cartУes PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "Configurando cartУes PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "Tentar localizar dispositivos %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Interfaces %s %s encontradas"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "VocЙ tem alguma outra?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "VocЙ tem alguma interface %s?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "NЦo"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Sim"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Ver informaГЦo do hardware"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "Trazendo (acessando) a rede"
-
-#: ../../install_steps_interactive.pm_.c:1207
-#, fuzzy
-msgid "Bringing down the network"
-msgstr "Trazendo (acessando) a rede"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "InstalaГЦo do Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> move entre opГУes | <EspaГo> seleciona | <F12> prСxima "
"tela "
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Por favor aguarde"
@@ -3537,7 +4156,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Ambiguidade (%s), seja mais preciso\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "MА escolha, tente novamente\n"
@@ -3551,445 +4170,973 @@ msgstr " ? (padrЦo %s) "
msgid "Your choice? (default %s) "
msgstr "Sua escolha? (padrЦo %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Sua escolha? (padrЦo %s digite `none' para nenhum) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Tcheco"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "AlemЦo"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Espanhol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "FilandЙs"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "FrancЙs"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "NorueguЙs"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "PolonЙs"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Russo"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Teclado InglЙs"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Teclado Americano"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "ArmЙnio (FonИtico)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "BЗlgaro"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
#, fuzzy
msgid "Belarusian"
msgstr "BЗlgaro"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "SuМГo (layout AlemЦo)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "SuМГo (layout FrancЙs)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "DinamarquЙs"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "NorueguЙs"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estoniano"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiano (layout \"Russo\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiano (layout \"Latin\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "HЗngaro"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Israelense"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Israelense (FonИtico)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ucraniano"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "IslandЙs"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latino Americano"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "HolandЙs"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "LituБnio AZERTY"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "LituБnio AZERTY"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "LituБnio \"nЗmero de colunas\" QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "LituБnio \"fonИtico\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "PolonЙs (layout QWERTY)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "PolonЙs (layout QWERTZ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "PortuguЙs"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadense (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "Russo (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "EslovЙnio"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "EslovАquio"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "Teclado TailandЙs"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (modelo \"F\" tradicional)"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (modelo moderno \"Q\")"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ucraniano"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "Teclado Americano (Internacional)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "LituБnio \"nЗmero de colunas\" QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "IugoslАvio (layout latin)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-# '\241' is 'М' (iacute) in cp437 encoding
-# '\207' is 'Г' (ccedilla) in cp437 encoding
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Mouse SUN"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan/FistMouse (serial)"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr ""
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "nМvel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serial"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Mouse GenИrico com 2 BotУes"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Mouse GenИrico com 3 BotУes"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech SИrie CC (serial)"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "SИrie MM"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Mouse Logitech (serial, tipo C7 antigo)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "Nenhum Mouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+#, fuzzy
+msgid "none"
+msgstr "pronto"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "Nenhum Mouse"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "Isto estА correto?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "ConfiguraГЦo de Proxies"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "VocЙ quer testar a configuraГЦo"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "Configurar rede"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Qual disco vocЙ quer mover?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
msgid ""
-"Welcome to LILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
-"\n"
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Nome da conexЦo"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "ConfiguraГЦo"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
msgstr ""
-"Bem-vindo ao LILO, o selecionador de sistema operacional!\n"
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "ConfiguraГЦo de Proxies"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "NЗmero do telefone"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Dialup com modem"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Ponto de Montagem"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Senha"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Senha"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Testar configuraГЦo"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "Qual tipo de partiГЦo vocЙ quer?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Qual tipo de impressora vocЙ tem?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "Continuar mesmo assim?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
+msgid ""
"\n"
-"Para listar as op┤oes poss║ves, tecle <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"Para carregar um deles, escreva o nome e pressione <ENTER>\n"
-"ou aguarde %d segundos para o boot padrao.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Qual o seu fuso horАrio?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
msgstr ""
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "Escolha o novo tamanho"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Em que porta serial seu mouse estА conectado?"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
msgstr ""
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
+#: ../../netconnect.pm_.c:352
+msgid ""
+"\n"
+"Do you agree?"
msgstr ""
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "VocЙ quer testar a configuraГЦo"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "ConfiguraГЦo"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "VocЙ quer usar o aboot?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "Tentar localizar modem?"
+
+#: ../../netconnect.pm_.c:539
+#, fuzzy
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Em qual porta serial seu modem estА conectada?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "OpГУes dialup"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nome da conexЦo"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "NЗmero do telefone"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "ID de Login"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "AutenticaГЦo?"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Baseado em script"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Baseado em terminal"
+
+#: ../../netconnect.pm_.c:550
+msgid "Domain name"
+msgstr "Nome do domМnio"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Primeiro Servidor DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Segundo Servidor DNS"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
+"\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Nome da conexЦo"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
+"\n"
+"You can reconfigure your connection."
+msgstr "Configurar rede"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Qual disco vocЙ quer mover?"
+
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Qual disco vocЙ quer mover?"
+
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Nome da conexЦo"
+
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Nome da conexЦo"
+
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "Configurar rede"
+
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "ConeГЦo da Impressora"
+
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr ""
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Mouse SUN"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Mouse ADB Apple"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Mouse ADB Apple (2 botУes)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Mouse ADB Apple (3 botУes ou mais)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Expert"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Mouse USB Apple"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Nome da conexЦo"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Mouse USB Apple (3 botУes ou mais)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "Em que porta serial seu mouse estА conectado?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Mouse USB Apple (3 botУes ou mais)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Mouse GenИrico (PS/2)"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "Cancelar"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Mouse GenИrico com 3 BotУes (PS/2)"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Expert"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Qual tipo de partiГЦo vocЙ quer?"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "ATI Bus Mouse"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Mouse Microsoft Bus"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Mouse Logitech Bus"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ConfiguraГЦo da Rede"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Mouse USB"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "VocЙ quer testar a configuraГЦo"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Mouse USB (3 botУes ou mais)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "Configurar rede"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "Nenhum Mouse"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nome da conexЦo"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft 2.1A ou superior (serial)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "A Rede Local jА foi configurado. VocЙ quer:"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech SИrie CC (serial)"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Qual disco vocЙ quer mover?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serial)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "ConfiguraГЦo da Rede"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serial)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serial)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "nenhuma placa de rede encontrada"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serial)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "Configurando rede"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "SИrie MM (serial)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"Favor entrar com o nome do seu host.\n"
+"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
+"como por exemplo ``mybox.mylab.myco.com'' .\n"
+"VocЙ tambИm pode entrar como o endereГo IP de um gateway se vocЙ tiver um"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serial)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Host name (nome do host):"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Mouse Logitech (serial, tipo C7 antigo)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FistMouse (serial)"
+#: ../../network.pm_.c:302
+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 ""
+"Favor entrar com a configuraГЦo IP para esta mАquina.\n"
+"Cada item deve ser entrando como endereГo IP pontilhado-decimal\n"
+"(por exemplo, 1.2.3.4)."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Mouse GenИrico (serial)"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "Configurando dispositivo de rede %s"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "CompatМvel com Microsoft (serial)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP AutomАtico"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Mouse GenИrico com 3 BotУes (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "EndereГo IP:"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (serial)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "Netmask:"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "Isto estА correto?"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "O endereГo IP deve ser no formato 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"Favor entrar com o nome do seu host.\n"
+"Seu nome do host deve ser um nome de host totalmente qualificado,\n"
+"como por exemplo ``mybox.mylab.myco.com'' .\n"
+"VocЙ tambИm pode entrar como o endereГo IP de um gateway se vocЙ tiver um"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Servidor DNS:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "Gateway:"
+
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Dispositivo de gateway:"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "ConfiguraГЦo pСs-instalГЦo"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "Proxy HTTP"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "Proxy FTP"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "O proxy deve ser http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "O proxy deve ser ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -3999,21 +5146,21 @@ msgstr ""
"A Зnica soluГЦo И mover suas partiГУes primАrias para ter o buraco prСximo "
"das partiГУes extendidas"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo arquivo %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "RestauraГЦo pelo arquivo %s falhou: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Arquivo de backup defeituoso"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Erro gravando no arquivo %s"
@@ -4050,42 +5197,56 @@ msgstr "redimensinando"
msgid "maybe"
msgstr "Image"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr ""
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr ""
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr ""
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Mostrar menos"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Mostrar mais"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "OpГУes da impressora lpd Remota"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Fila remota"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "Lpd remoto"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "OpГУes de ImpressЦo NetWare"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Dispositivo da Impressora"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Detectando dispositivos..."
@@ -4099,11 +5260,11 @@ msgstr "Testar portas"
msgid "A printer, model \"%s\", has been detected on "
msgstr "Uma impressora, modelo \"%s\", foi detectado no "
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Dispositivo da Impressora Local"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4111,15 +5272,15 @@ msgstr ""
"A qual dispositivo sua impressora estА conectada \n"
"(note que /dev/lp0 И equivalente a LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Dispositivo da Impressora"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "OpГУes da impressora lpd Remota"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4129,19 +5290,19 @@ msgstr ""
"dar o nome do host e o servidor de impressЦo e o nome da\n"
" fila naquele servidor na qual as impressУes serem enviadas."
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Nome do host remoto"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Fila remota"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "OpГУes de ImpressЦo SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4157,27 +5318,27 @@ msgstr ""
"qualquer informaГЦo aplicАvel sobre nome de usuАrio, senha e grupo de "
"trabalho."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Host servidor SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Nome compartilhado"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Grupo de trabalho"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "OpГУes de ImpressЦo NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4189,131 +5350,156 @@ msgstr ""
"do host TCP/IP!) como tambИm o nome da fila de impressЦo para a impressora\n"
"que vocЙ deseja acessar como qualquer nome de usuАrio e senha aplicАvel."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Servidor de ImpressЦo"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Nome da Fila de ImpressЦo"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "OpГУes da Impressora Local"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "OpГУes da impressora"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Pobre"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Qual tipo de impressora vocЙ tem?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "VocЙ quer testar a impressЦo?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Imprimindo pАgina(s) de teste..."
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"A(s) pАgina(s) foi(foram) enviada(s) para o daemon de impressЦo.\n"
+"Pode demorar algum tempo antes da impressЦo comeГar.\n"
+"Status da impressЦo:\n"
+"%s\n"
+"\n"
+"Ela estА funcionando corretamente?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"A(s) pАgina(s) foi(foram) enviada(s) para o daemon de impressЦo.\n"
+"Pode demorar algum tempo antes da impressЦo comeГar.\n"
+"Ela estА funcionando corretamente?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Sim, imprimir pАgina de teste ASCII"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Sim, imprimir pАgina de teste PostScript"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Sim, imprimir ambas as pАginas de teste"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Configurar Impressora"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Qual tipo de impressora vocЙ tem?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "OpГУes da impressora"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Tamanho do Papel"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Ejetar pАgina apСs a impressЦo?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "OpГУes do driver Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "OpГУes da profundidade das cores"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr ""
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr ""
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Corrigir texto stair-stepping?"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr ""
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr ""
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr ""
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
#, fuzzy
msgid "Extra Text options"
msgstr "OpГУes da profundidade das cores"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "VocЙ quer testar a impressЦo?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Imprimindo pАgina(s) de teste..."
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"A(s) pАgina(s) foi(foram) enviada(s) para o daemon de impressЦo.\n"
-"Pode demorar algum tempo antes da impressЦo comeГar.\n"
-"Status da impressЦo:\n"
-"%s\n"
-"\n"
-"Ela estА funcionando corretamente?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"A(s) pАgina(s) foi(foram) enviada(s) para o daemon de impressЦo.\n"
-"Pode demorar algum tempo antes da impressЦo comeГar.\n"
-"Ela estА funcionando corretamente?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "VocЙ gostaria de configurar um impressora?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
#, fuzzy
msgid ""
"Here are the following print queues.\n"
@@ -4322,20 +5508,69 @@ msgstr ""
"A seguir estЦo as entradas do LILO.\n"
"VocЙ pode adicionar mais ou modificar as existentes."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Estimando"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "Selecionar ConeГЦo da Impressora"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Como a impressora estА conectada?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "Selecionar ConeГЦo da Impressora"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
#, fuzzy
msgid "Remove queue"
msgstr "Fila remota"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Cada fila de impressЦo (a qual as impressУes sЦo direcionadas) precisa\n"
+"de um nome (normalmente lp) e de um diretСrio spoll associado a ela.\n"
+"Qual o nome e diretСrio deve ser utilizado para este queue?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "Impressora local"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "Especificar opГУes"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "InformaГЦo"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4346,57 +5581,57 @@ msgstr ""
"de um nome (normalmente lp) e de um diretСrio spoll associado a ela.\n"
"Qual o nome e diretСrio deve ser utilizado para este queue?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Nome da fila de impressЦo"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "DiretСrio spool"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "ConeГЦo da Impressora"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "NЦo posso adicionar partiГЦo ao RAID _formatado_ md%d"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "NЦo posso gravar arquivo $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Sem partiГУes suficientes para RAID nМvel %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr ""
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4404,7 +5639,7 @@ msgid ""
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4412,13 +5647,13 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4428,51 +5663,51 @@ msgid ""
"all of the services it is responsible for."
msgstr ""
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4480,7 +5715,7 @@ msgid ""
"it installed on machines that don't need it."
msgstr ""
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4488,106 +5723,245 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr ""
" Escolha quais serviГos devem ser inicializados automaticamente na "
"inicalizaГЦo"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-# '\241' is 'М' (iacute) in cp437 encoding
-# '\207' is 'Г' (ccedilla) in cp437 encoding
-#
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Bem-vindo ao SILO, o selecionador de sistema operacional!\n"
-"\n"
-"Para listar as op┤oes poss║ves, tecle <TAB>.\n"
-"\n"
-"Para carregar um deles, escreva o nome e pressione <ENTER>\n"
-"ou aguarde %d segundos para o boot padrao.\n"
+"Eu nЦo consigo ler sua tabela de partiГЦo, И muito defeituosa\n"
+"para mim. Eu irei tentar continuar limpando as partiГУes defeituosas"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "Configurar LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "Criar um disquete de boot"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "Formatar disquete"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr ""
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "A InstalaГЦo do LILO falhou. Ocorreram os seguintes erros:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "Configurar X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Table"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "ConeГЦo da Impressora"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Dialup com modem"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "Testar configuraГЦo"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "Testar configuraГЦo"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "ParabИns!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4655,23 +6029,30 @@ msgstr "OpГУes do nМvel de seguranГa"
msgid "Choose the tool you want to use"
msgstr "Escolha a ferramente que vocЙ quer usar"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Qual o layout do seu teclado?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "Mudar ResoluГЦo"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Que tipo de mouse vocЙ tem?"
+#: ../../standalone/livedrake_.c:24
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "nenhum usb_serial encontrado\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Deseja emulaГЦo de 3 botУes?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "Em que porta serial seu mouse estА conectado?"
@@ -4891,8 +6272,774 @@ msgstr ""
msgid "Finding leaves takes some time"
msgstr ""
-#~ msgid "Recommended"
-#~ msgstr "Recomendado"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "ConfiguraГЦo de Proxies"
+
+#, fuzzy
+msgid "Internet"
+msgstr "redimensinando"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+#, fuzzy
+msgid "Office"
+msgstr "dispositivo"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "KDE"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "MultimИdia"
+
+#, fuzzy
+msgid "Gnome"
+msgstr "pronto"
+
+#, fuzzy
+msgid "Documentation"
+msgstr "AutenticaГЦo?"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Games"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "MultimИdia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "Escolha o tamanho que vocЙ deseja instalar"
+
+#~ msgid "Total size: "
+#~ msgstr "Tamanho total:"
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "Reconfigurar rede agora"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Nome da conexЦo"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Nome da conexЦo"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Nome da conexЦo"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Nome da conexЦo"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "AlemЦo"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "AlemЦo"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "O que vocЙ quer fazer?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Instalar"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "Redimensionar"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Qual tipo de partiГЦo vocЙ quer?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "Escolha \"Instalar\" se vocЙ nЦo tem versУes anteriores do Linux\n"
+#~ "instaladas, ou se vocЙ deseja usar mЗltiplas distribuiГУes ou versУes.\n"
+#~ "\n"
+#~ "Escolha \"Atualizar\" se vocЙ deseja atualizar sua versЦo do Linux "
+#~ "Mandrake:\n"
+#~ "%s ou %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Selecione:\n"
+#~ "\n"
+#~ " - Recomendado: Se vocЙ nunca instalou Linux antes.\n"
+#~ "\n"
+#~ " - Customizado: Se vocЙ jА И familiar com Linux, vocЙ poderА \n"
+#~ "selecionar o tipo de instalaГЦo entre normal, desenvolvimento ou\n"
+#~ "servidor. Escolha \"Normal\" para uma instalaГЦo genИrica no seu\n"
+#~ "computador. VocЙ pode escolher \"Desenvolvimento\" se vocЙ usarА o "
+#~ "computador\n"
+#~ "principalmente para o desenvolvimento de software, ou escolha \"Server\" se\n"
+#~ "vocЙ deseja instalar um servidor genИrico (para correio, impressЦo...).\n"
+#~ "\n"
+#~ " - Expert: Se vocЙ И fluente com GNU/Linux e quer fazer uma\n"
+#~ "instalaГЦo altamente customizada, esse И o tipo de instalaГЦo para vocЙ.\n"
+#~ "VocЙ poderА escolher a utilizaГЦo do seu sistema como \"Customizado\".\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "A esse ponto, vocЙ pode escolher qual(is) partiГЦo(Уes) usar para instalar\n"
+#~ "seu sistema Linux-Mandrake se eles jА tiverem sidos definidos (em uma\n"
+#~ "instalaГЦo anterior do Linux ou outra ferramenta de partiГЦo). Em outros\n"
+#~ "casos, devem ser definidas algumas partiГУes. Essa operaГЦo consiste em\n"
+#~ "dividir logicamente o disco rМgido do seu computador em separadas Аreas\n"
+#~ "de uso.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vocЙ tiver que criar novas partiГУes, use \"Auto alocar\" para "
+#~ "automaticamente\n"
+#~ "criar partiГУes para o Linux. VocЙ pode selecionar o disco para \n"
+#~ "particionamente clicando em \"hda\" para o primeiro drive IDE,\n"
+#~ "\"hdb\" para o segundo ou \"sda\" para o primeiro drive SCSI e assim por\n"
+#~ "diante\n"
+#~ "\n"
+#~ "\n"
+#~ "Duas partiГУes comuns sЦo: a partiГЦo root (/), que И o comeГo da\n"
+#~ "hierarquia do sistema de arquivo e /boot, que contИm todos os arquivos\n"
+#~ "necessАrios para iniciar o sistema operacional quando o\n"
+#~ "computador И ligado.\n"
+#~ "\n"
+#~ "\n"
+#~ "Como os efeitos desse processo sЦo normalmente irreversМveis, "
+#~ "particionamento\n"
+#~ "pode ser intimidador e estressante para um usuАrio inexperiente. DiskDrake\n"
+#~ "simplifica o processo para o usuАrio. Consulte a documentaГЦo\n"
+#~ "e nЦo se apresse antes de continuar."
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Qualquer nova partiГЦo deve ser formatada para ser utilizada\n"
+#~ "(formatar significa cria sistema de arquivo). A esse ponto, vocЙ pode\n"
+#~ "re-formatar alguma partiГЦo existente para apagar as informaГУes\n"
+#~ "que ela contИm. Nota: nЦo И necessАrio re-formatar partiГУes\n"
+#~ "prИ-existentes, particularmente se eles contИm arquivos que vocЙ deseja "
+#~ "manter.\n"
+#~ "Normalmente as partiГУes mantidas sЦo /home e /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Os pacotes selecionados estЦo sendo instalados. Essa operaГЦo\n"
+#~ "deve demorar alguns minutos a nЦo ser que vocЙ tenha escolhido\n"
+#~ "atualizar um sistema existente, nesse caso, pode demorar ainda\n"
+#~ "mais tempo antes da atualizaГЦo iniciar."
+
+#, fuzzy
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "Se DrakX falhar ao detectar o seu mouse, ou vocЙ checar\n"
+#~ "o que ele fez, vocЙ verА uma lista de mouses acima.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vocЙ concordar com os configuraГУes do DrakX, apenas pule para\n"
+#~ "a seГЦo que vocЙ quer clicando no menu na esquerda. Se nЦo, escolha\n"
+#~ "no menu o tipo de mouse mais prСximo ao que vocЙ possui.\n"
+#~ "\n"
+#~ "\n"
+#~ "No caso de um mouse serial, vocЙ terА que dizer ao DrakX\n"
+#~ "a qual porta serial ele estА conectado."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Essa seГЦo И dedicada Ю configuraГЦo a configuraГЦo\n"
+#~ "de uma rede local (LAN) ou de um modem.\n"
+#~ "\n"
+#~ "Escolha \"Rede Local\" e DrakX irА\n"
+#~ "tentar localizar um adaptador Ethernet na sua mАquina. Adaptadores\n"
+#~ "PCI provalvemente serЦo encontrados e inicializados automaticamente.\n"
+#~ "Mesmo assim, se seu perifИrio И ISA, a autodetecГЦo nЦo funcionarА,\n"
+#~ "e vocЙ terА que escolher um driver da lista que irА aparecer.\n"
+#~ "\n"
+#~ "\n"
+#~ "Para adaptadores SCSI, vocЙ pode deixar o driver procurar pelo\n"
+#~ "adaptador na primeira vez ou vocЙ terА que especificar as\n"
+#~ "configuraГУes do driver que vocЙ deve possuir na documentaГЦo do\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vocЙ instalar o Linux-Mandrake em uma mАquina que jА И parte\n"
+#~ "de uma rede existente, o administrador da rede terА que lhe dar\n"
+#~ "todas as informaГУes necessАrias (endereГo IP, submАscara da rede\n"
+#~ "ou netmak para encurtar e o endereГo do host). Se vocЙ estА criando\n"
+#~ "uma rede pessoal em casa por exemplo, vocЙ deverА escolher os\n"
+#~ "endereГos.\n"
+#~ "\n"
+#~ "\n"
+#~ "Escolha \"ConexЦo por modem\" e a conexЦo da Internet atravИs do modem\n"
+#~ "serА configurada. Drakx irА tentar localizar seu modem, se ele falhar\n"
+#~ "vocЙ terА que selecionar a porta serial onde seu modem estА conectado."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux pode lidar com vАrios tipos de impressora. Cada uma delas\n"
+#~ "requer uma configuraГЦo diferente.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se sua impressora И conectada diretamente ao seu computador, selecione\n"
+#~ "\"Impressora Local\". VocЙ terА que dizer em qual porta sua impressora\n"
+#~ "estА conectada, e selecionar o filtro apropriado.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vocЙ quiser acessar um impressora em uma mАquina Unix remota,\n"
+#~ "vocЙ terА que selecionar \"Lpd Remoto\". Para fazИ-lo funcionar,\n"
+#~ "nЦo И necessАrio nome de usuАrio ou senha, mas vocЙ terА que saber\n"
+#~ "o nome da fila de impressЦo no servidor.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se vocЙ quiser acessar uma impressora SMB (que significa: uma impressora\n"
+#~ "localizada em um servidor Windows 9x/NT), vocЙ terА que especificar seu\n"
+#~ "nome SMB (que nЦo И o nome TCP/IP), e possivelmente seu endereГo IP,\n"
+#~ "mais o nome do usuАrio, grupo de trabalho e senha requeridos para poder\n"
+#~ "acessar a impressora, e И claro o nome da impressora. O mesmo vale para\n"
+#~ "uma impressora NetWare, exceto que vocЙ nЦo precisa da informaГЦo sobre\n"
+#~ "o grupo de trabalho."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "и altamente recomendado que vocЙ responda \"Sim\" aqui. Se vocЙ instalar\n"
+#~ "o Microsoft Windows depois ele poderА sobrescrever o sector de boot.\n"
+#~ "A nЦo ser que vocЙ crie um disquete de boot como sugerido, vocЙ nЦo\n"
+#~ "conseguirА mais entrar no Linux."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Esquecer as alteraГУes?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "ConeГЦo da Impressora"
+
+#~ msgid "Host name:"
+#~ msgstr "Host name (nome do host):"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Que tipo de mouse vocЙ tem?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "ResoluГУes AutomАticas"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Para encontrar as resoluГУes disponМveis eu irei tentar algumas diferentes.\n"
+#~ "Sua tela vai piscar...\n"
+#~ "VocЙ pode desligА-la se quiser, vocЙ ouvirА um beep quando terminar"
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Eu posso tentar achar as resoluГУes disponМveis (ex.: 800x600).\n"
+#~ "Algumas vezes, porИm, pode travar o computador.\n"
+#~ "VocЙ quer tentar?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "Nenhuma resoluГЦo vАlida encontrada\n"
+#~ "Tente selecionar outra placa de vМdeo ou monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Procura automАtica de resoluГУes"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Mouse ADB Apple"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Mouse ADB Apple (2 botУes)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Mouse ADB Apple (3 botУes ou mais)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Mouse USB Apple"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Mouse USB Apple (3 botУes ou mais)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Mouse USB Apple (3 botУes ou mais)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Mouse GenИrico"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Mouse Microsoft Bus"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Mouse Logitech Bus"
+
+#~ msgid "USB Mouse"
+#~ msgstr "Mouse USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "Mouse USB (3 botУes ou mais)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft 2.1A ou superior (serial)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serial)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serial)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serial)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Mouse GenИrico (serial)"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "CompatМvel com Microsoft (serial)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Mouse GenИrico com 3 BotУes (serial)"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "falhou ao montar nfs"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "CriptogrАfico"
+
+#~ msgid "Show less"
+#~ msgstr "Mostrar menos"
+
+#~ msgid "Show more"
+#~ msgstr "Mostrar mais"
+
+#~ msgid "default"
+#~ msgstr "default"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Qual o layout do seu teclado?"
+
+#~ msgid "Normal"
+#~ msgstr "Normal"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Tentar localizar cartУes PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "Tentar localizar dispositivos %s?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Tentar localizar dispositivos PCI?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Procurando partiГЦo root."
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Essa nЦo И uma partiГЦo root, favor selecione outra."
+
+#~ msgid "No root partition found"
+#~ msgstr "Nenhuma partiГЦo root encontrada"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "NЦo pode usar broadcast sem o domМnio NIS"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+# '\241' is 'М' (iacute) in cp437 encoding
+# '\207' is 'Г' (ccedilla) in cp437 encoding
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bem-vindo ao LILO, o selecionador de sistema operacional!\n"
+#~ "\n"
+#~ "Para listar as op┤oes poss║ves, tecle <TAB>.\n"
+#~ "\n"
+#~ "Para carregar um deles, escreva o nome e pressione <ENTER>\n"
+#~ "ou aguarde %d segundos para o boot padrao.\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bem-vindo ao SILO, o selecionador de sistema operacional!\n"
+#~ "\n"
+#~ "Para listar as opcoes possives, tecle <TAB>.\n"
+#~ "\n"
+#~ "Para carregar um deles, escreva o nome e pressione <ENTER>\n"
+#~ "ou aguarde %d segundos para o boot padrao.\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "Principais opГУes do SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "A seguir estЦo as entradas do SILO.\n"
+#~ "VocЙ pode adicionar mais ou modificar as existentes."
+
+#~ msgid "This label is already in use"
+#~ msgstr "Esse label jА estА sendo utilizado"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "A InstalaГЦo do SILO falhou. Ocorreram os seguintes erros:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX irА tentar detectar um ou mais adaptador(es) PCI\n"
+#~ "SCSI. Se encontrar algum e tiver o driver dele(s), ele(s) serА(serЦo)\n"
+#~ "instalado(s) automaticamente.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se seu adaptador SCSI estА em uma placa ISA, ou И PCI mas DrakX\n"
+#~ "nЦo saber qual driver utilizar, ou se vocЙ nЦo possui nenhum adaptador\n"
+#~ "SCSI, vocЙ serА perguntado se vocЙ possui algum ou nЦo. Se vocЙ nЦo\n"
+#~ "tiver, escolha \"NЦo\". Se vocЙ tiver um ou mais, responda \"Sim\". Uma\n"
+#~ "lista de drivers vai aparecer, e dela vocЙ deverА escolher qual\n"
+#~ "vocЙ possui.\n"
+#~ "\n"
+#~ "\n"
+#~ "ApСs vocЙ ter selecionado o driver, DrakX irА perguntar se\n"
+#~ "vocЙ quer especificar opГУes para ele. Primeiro, tente e deixe\n"
+#~ "o driver procurar pelo hardware: normalmente funciona.\n"
+#~ "\n"
+#~ "\n"
+#~ "Se nЦo, nЦo esqueГa que vocЙ pode conseguir informaГЦo sobre seu\n"
+#~ "hardware pelo Windows (se vocЙ o possui no seu computador), como\n"
+#~ "sugerido pelo guia de instalaГЦo. Essas sЦo as opГУes que vocЙ\n"
+#~ "precisarА para configurar o driver."
+
+#~ msgid "Shutting down"
+#~ msgstr "Desligando"
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
@@ -5046,15 +7193,9 @@ msgstr ""
#~ msgid "Bad kickstart file %s (failed %s)"
#~ msgstr "Arquivo de inicializaГЦo rАpida defeituoso %s (falha %s)"
-#~ msgid "Which language do you want?"
-#~ msgstr "Qual lМngua vocЙ quer?"
-
#~ msgid "What usage do you want?"
#~ msgstr "Qual utilizaГЦo vocЙ quer?"
-#~ msgid "Dialup with modem"
-#~ msgstr "Dialup com modem"
-
#~ msgid "Local LAN"
#~ msgstr "LAN Local"
@@ -5099,9 +7240,6 @@ msgstr ""
#~ "Falha ao criar um disco de boot HTP.\n"
#~ "VocЙ pode ter que reiniciar a instalaГЦo e dar um ``%s'' no prompt"
-#~ msgid "Local Printer Options"
-#~ msgstr "OpГУes da Impressora Local"
-
#~ msgid "Password:"
#~ msgstr "Senha:"
@@ -5113,9 +7251,3 @@ msgstr ""
#~ msgid "Going to install %d MB. You can choose to install more programs"
#~ msgstr "Vou instalar %d MB. VocЙ pode escolhar mais programas para instalar"
-
-#~ msgid "Windows(TM)"
-#~ msgstr "Windows(TM)"
-
-#~ msgid "Partitioning failed: no root filesystem"
-#~ msgstr "O particionamento falhou: sem sistema de arquivo root"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 40e15d3e8..189de5d05 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 7.1\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 2000-04-30 2:55+0200\n"
"Last-Translator: Florin Grad <florin@mandrakesoft.com>\n"
"Language-Team: romanian\n"
@@ -14,43 +14,91 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr "Generic"
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Carte graficЦ"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "AlegeЧi o carte graficЦ"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "AlegeЧi un server X"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "Server X"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Server XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Ce tip de intrЦri doriЧi sЦ adЦugaЧi ?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:245
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "ConfiguraЧie post-install"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "AlegeЧi memoria pentru cartea graficЦ"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "AlegeЧi opЧiunile pentru server"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "AlegeЧi un monitor"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -72,39 +120,40 @@ msgstr ""
"distruge monitorul Нn acest fel.\n"
"DacЦ nu sunteЧi sigur, alegeЧi parametri conservativi."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Rata de actualizare orizontalЦ"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Rata de actualizare verticalЦ"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Monitor nu a fost НncЦ configurat"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Cartea graficЦ nu a fost configuratЦ НncЦ"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "RezoluЧia nu a fost НncЦ aleasЦ"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "DoriЧi sЦ testaЧi configuraЧia ?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "AtenЧie: testul e periculos pentru aceastЦ carte graficЦ"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Test de configuraЧie"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -112,183 +161,168 @@ msgstr ""
"\n"
"reНncercaЧi dupЦ ce aЧi modificat ceva parametri"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "A apЦrut o eroare:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Testul se va termina Нn %d secunde"
-#: ../../Xconfigurator.pm_.c:378
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
msgstr "ConfiguraЧia e corectЦ"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Eroare, reНncercaЧi dupЦ ce aЧi modificat ceva parametri"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "RezoluЧii alese Нn mod automat"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Pentru a afla rezoluЧiile disponibile voi Нncerca altele diferite.\n"
-"Ecranul dumneavoastrЦ se va stinge ╨i aprinde de cНteva ori..."
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "RezoluЧie"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "AlegeЧi rezoluЧia ╨i culorile"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Carte graficЦ: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Server XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Afi╨aЧi tot"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "RezoluЧii"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Pot sЦ Нncerc sЦ gЦsesc rezoluЧiile disponibile (eg:800x600).\n"
-"Uneori, totu╨i, aceasta poate bloca calculatorul.\n"
-"DoriЧi sЦ Нncerc ?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"N'am gЦsit moduri valide\n"
-"нncercaЧi cu o altЦ carte video sau alt monitor"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatura : %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip de mouse : %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Periferic pentru mouse: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "FrecvenЧa orizontala pentru monitor : %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FrecvenЧa verticala pentru monitor : %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Carte graficЦ : %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memorie graficЦ : %s KB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "OpЧiuni pentru culori:"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "RezoluЧii"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Server XFree86 : %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "PregЦtesc configuraЧia X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "AlegeЧi un alt tip de monitor"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "AlegeЧi un alt tip de carte graficЦ"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "SchimbaЧi opЧiunile server-ului"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "AlegeЧi o altЦ rezoluЧie"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Configurarea automatЦ a rezoluЧiilor"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Afi╨eazЦ informaЧiile"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "TesteazЦ din nou"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Ie╨ire"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Ce doriЧi sЦ faceЧi ?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "AbandonaЧi schimbЦrile?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "PastraЧi configuraЧia IP curentЦ"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "VЦ rog reconectaЧi-vЦ ca %s pentru a activa schimbЦrile"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "VЦ rog delogaЧi-vЦ ╨i folosiЧi Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Sever X la demaraj"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -296,227 +330,227 @@ msgstr ""
"Pot sЦ configurez calculatorul sa demareze automat X la demaraj.\n"
"DoriЧi sa demaraЧi X cНnd redemaraЧi ?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:1152
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Pot sЦ configurez calculatorul sa demareze automat X la demaraj.\n"
+"DoriЧi sa demaraЧi X cНnd redemaraЧi ?"
+
+#: ../../Xconfigurator.pm_.c:1154
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "AlegeЧi noua mЦrime"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "AlegeЧi unealta pe care doriЧi sЦ o folosiЧi"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 de culori (8 biЧi)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 mii de culori (15 biЧi)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 mii de culori (16 biЧi)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milioane de culori (24 biЧi)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 miliarde de culori (32 biЧi)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB sau mai mult"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 la 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 la 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Compatibil, 1024x768 la 87 Hz НntreЧesut (nu 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 la 87 Hz НntreЧesut, 800x600 la 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Super VGA Extins, 800x600 la 60 Hz, 640x480 la 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Ne-нntreЧesut SVGA, 1024x768 la 60 Hz, 800x600 la 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "нnaltЦ frecvenЧЦ SVGA, 1024x768 la 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frecvenЧЦ care e capabil de 1280x1024 la 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frecvenЧЦ care e capabil de 1280x1024 la 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frecvenЧЦ care e capabil de 1280x1024 la 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor care e capabil de 1600x1200 la 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor care e capabil de 1600x1200 la 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr "cНrlionЧat"
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "standard"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-msgid "tie"
-msgstr "cravatЦ"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr "brunetЦ"
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr "fatЦ"
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr "femeie blondЦ"
-
-#: ../../any.pm_.c:19
-msgid "automagic"
-msgstr "automagic"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Primul sector al partiЧiei de demaraj"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Primul sector al discului (MBR)"
-#: ../../any.pm_.c:65
-msgid "LILO/grub Installation"
+#: ../../any.pm_.c:95
+#, fuzzy
+msgid "SILO Installation"
msgstr "Instalare LILO/grub"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Unde doriЧi sЦ instalaЧi Gestionarul de demaraj ?"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Instalare LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
msgstr "Nici unul"
-#: ../../any.pm_.c:73
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Ce gestionar de demaraj doriЧi sЦ folosiЧi ?"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:125
+#, fuzzy
+msgid "Bootloader installation"
+msgstr "OpЧiunile principale ale gestionarului de demaraj"
+
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Periferic de demaraj"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nu funcЧioneazЦ cu BIOS-urile vechi)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Timp de a╨teptare Нnaintea demarЦrii imaginii standard"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Timp de a╨teptare Нnaintea demarЦrii imaginii standard"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Parola"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Parola (din nou)"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "LimiteazЦ opЧiunile liniei de comandЦ"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "limiteazЦ"
-#: ../../any.pm_.c:98
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
msgstr "OpЧiunile principale ale gestionarului de demaraj"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"OpЧiunea ``LimiteazЦ opЧiunile liniei de comandЦ'' e inutilЦ fЦrЦ parolЦ"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "нncercaЧi din nou"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Parolele nu corespund"
-#: ../../any.pm_.c:112
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -524,167 +558,385 @@ msgstr ""
"Acestea sunt diferitele intrЦrile.\n"
"PuteЧi sЦ mai adЦugaЧi ╨i altele sau sЦ schimbaЧi cele existente."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "AdaugЦ"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Gata"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Ce tip de intrЦri doriЧi sЦ adЦugaЧi ?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Alt SO (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Alt SO (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Ce tip de intrЦri doriЧi sЦ adЦugaЧi ?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Imagine"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Cite╨te-Scrie"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Nesigur"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "EtichetЦ"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ok"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "╙terge intrarea"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Eticheta goalЦ nu e permisЦ"
-#: ../../any.pm_.c:167
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "AceastЦ etichetЦ nu e permisЦ"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Am gЦsit interfaЧele %s %s"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "AveЧi o altЦ interfaЧa?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "AveЧi vreo interfaЧЦ %s ?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Nu"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Da"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "Vezi info hardware"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Instalarea pilotului pentru %s cartea %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(modul %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Care %s pilot sЦ Нncerc?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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 ""
+"нn anumite cazuri, pilotul %s necesitЦ informaЧii suplimentare pentru a\n"
+"funcЧiona corect, dar funcЧioneazЦ bine ╨i fЦrЦ. DoriЧi sЦ specificaЧi\n"
+"opЧiuni suplimentare sau Нi permiteЧi sЦ interogheze calculatorul pentru\n"
+"informaЧiile necesare? Ocazional, interogarea poate bloca calculatorul,\n"
+"dar n-ar trebui sЦ produce nici o deteriorare."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "AutoprobeazЦ"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "SpecificaЧi opЧiunile"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "PuteЧi furniza acum opЧiunile modulului %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"PuteЧi furniza acum opЧiunile modulului %s.\n"
+"OpЧiunile sunt Нn formatul ``nume=valoare nume2=valoare2 ...''.\n"
+"de exemplu, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "OpЧiuni pentru module:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"нncЦcarea modulului %s a e╨uat.\n"
+"DoriЧi sЦНncercaЧi cu alЧi parametri ?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Bun venit la gestionarul de sisteme de operare %s!\n"
+"\n"
+"Pentru a afisa diferitele posibilitati, apasati <TAB>.\n"
+"\n"
+"Pentru a demara unul dintre ele, scrieti-i numele si apasati <ENTER> sau\n"
+"asteptati %d secunde pentru demararea din oficiu.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Folositi tastele %c si %c pentru selectarea intrarii puse in evidenta."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Apasati enter pentru a demara OS-ul selectat, 'e' pentru a edita"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Intrarea selectata va demara dupa %d secunde"
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "nu e destul spaЧiu Нn /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Desktop"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Meniu de Start"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Testul se va termina Нn %d secunde"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "CreazЦ"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "DemonteazЦ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "╙terge"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "FormateazЦ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "RedimensioneazЦ"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Punct de montaj"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Scrie /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Trece Нn mod expert"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Trece Нn mod normal"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "RestaureazЦ din fi╨ierul"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "нnregistreazЦ Нn fi╨ierul"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "RestaureazЦ din dischetЦ"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "нnregistreaza pe dischetЦ"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "╙terge tot"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "FormateazЦ tot"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Auto aloca"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Toate partiЧiile principale sunt alocate"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Imposibil de adЦugat o alta partiЧie"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -692,59 +944,63 @@ msgstr ""
"Pentru a avea mai multe partiЧii, ╨tergeЧi una pentru a putea crea una de "
"tip Extended "
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "SalveazЦ tabelul de partiЧii"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "AnuleazЦ"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Scrie tabloul de partiЧii"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "ReНncarcЦ"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Gol"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Alt tip"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr ""
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Gol"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Alt tip"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Tipul de fi╨iere sistem: "
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Detalii"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -756,17 +1012,17 @@ msgstr ""
"Va sugerez sЦ redimensionaЧi mai НntНi acea partiЧie\n"
"faceЧi clic pe ea ╨i apoi pe \"RedimensioneazЦ\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "VЦ rog faceЧi mai НntНi o copie a datelor dumneavoastrЦ"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "CitiЧi cu atenЧie!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -775,77 +1031,77 @@ msgstr ""
"DacЦ doriЧi sЦ folosiЧi aboot, asiguraЧi-vЦ sЦ lЦsaЧi un spaЧiu liber\n"
"(2048 de sectoare sunt de ajuns) la Нnceputul discului"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "AtenЧie: aceasta operaЧie e periculoasЦ."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Eroare"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Punct de montaj: "
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Periferic: "
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litera perifericului DOS: %s (doar o presupunere)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sector %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "MЦrimea: %d MB"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sectori"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "De la cilindrul %d la cilindrul %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Neformatat\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Montat\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Fi╨ier(e) loopback: %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -853,79 +1109,79 @@ msgstr ""
"PartiЧia demaratЦ din oficiu\n"
" (pentru demaraj MS-DOS, nu pentru lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "MЦrimea porЧiunii %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discuri-RAID %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Numele fi╨ierului loopback: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "VЦ rog faceЧi clic pe o partiЧie"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "MЦrime: %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylinders, %s heads, %s sectors\n"
-#: ../../diskdrake.pm_.c:267
+#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipul tabloul de partiЧii : %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "pe bus-ul %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Montaj"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Activ"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "AdaugЦ la RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "╙terge din RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "ModificЦ RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr "Folose╨te pentru loopback"
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "AlegeЧi acЧiunea"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -937,7 +1193,7 @@ msgstr ""
"Sau folosiЧi LILO soi nu va funcЧiona, sau nu folosiЧi LILO ╨i atunci nu\n"
"aveЧi nevoie de /boot"
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -950,27 +1206,28 @@ msgstr ""
"DacЦ planificaЧi sЦ folosiЧi LILO ca gestionar de demaraj, asiguraЧi-vЦ "
"cЦaЧi adЦugat o partiЧie /boot."
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
+#, fuzzy
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
"AЧi selectat o partiЧie software root en tant que RAID.\n"
"Nici un gestionar de boot nu e capabil sЦ gereze aceasta fЦrЦ\n"
"o partitie /boot. FolosiЧi deci o partiЧie /boot dacЦ doriЧi sЦ folosiЧi\n"
"lilo sau grub."
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Folose╨te ``%s'' Нn loc"
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Folose╨te ``Demontare' mai НntНi"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -978,41 +1235,42 @@ msgstr ""
"DupЦ schimbarea tipului de partiЧie %s, toate datele de pe aceasta "
"partiЧievor fi pierdute"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "ContinuaЧi totu╨i?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Ie╨ire fЦrЦ a Нnregistra"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Ie╨ire din program fЦrЦ a scrie Нn tabloul de partiЧii ?"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "SchimbЦ tipul partiЧiei"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Ce tip de partiЧie doriЧi?"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Ce limbЦ doriЧi ?"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:484
+#: ../../diskdrake.pm_.c:490
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Unde doriЧi sЦ montaЧi fi╨ierul loopback %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Unde doriЧi sЦ montaЧi perifericul %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1021,143 +1279,148 @@ msgstr ""
"folositЦpentru loopback.\n"
"╙tergeЧi loopback-ul mai НntНi"
-#: ../../diskdrake.pm_.c:509
+#: ../../diskdrake.pm_.c:515
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"DupЦ formatarea partiЧiei %s toate datele de pe aceasta partiЧie vor fi "
"pierdute"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Formatare"
-#: ../../diskdrake.pm_.c:512
+#: ../../diskdrake.pm_.c:518
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatarea fi╨ierului loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Formatarea partiЧiei %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "DupЦ formatarea tuturor partiЧiilor,"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "toate datele din aceste partiЧii vor fi pierdute"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "DeplaseazЦ"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "Pe ce disc doriЧi sЦ schimbaЧi ?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "La ce sector doriЧi sa schimbaЧi ?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "SchimbЦ"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "SchimbЦ partiЧia..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabloul de partiЧii al perifericului %s va fi scris pe disc!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Va trebui sЦ redemaraЧi pentru ca schimbЦrile sa fie luate Нn considerare"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "CalculeazЦ salturile de fi╨iere FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "RedimensioneazЦ"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
+#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Ce tip de partiЧie doriЧi?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
msgstr "Toate datele de pe aceasta partiЧie ar trebui salvate mai НntНi"
-#: ../../diskdrake.pm_.c:588
+#: ../../diskdrake.pm_.c:599
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"DupЦ redimensionarea partiЧiei %s toate datele de pe aceasta partiЧie vor fi "
"pierdute"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "AlegeЧi noua mЦrime"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "CreeazЦ o nouЦ partiЧie"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Sector de Нnceput: "
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "MЦrimea Нn MB: "
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Tipul de fi╨iere: "
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "PreferinЧЦ: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
msgstr "AceastЦ partiЧie nu poate fi folositЦ pentru loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
msgstr "Numele fi╨ierului loopback"
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
msgstr "Fi╨ier deja folosit de un alt loopback, alegeЧi un altul"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
msgstr "Fi╨ierul existЦ deja. SЦ-l folosesc ?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "SelecЧioneazЦ fi╨ierul"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1165,11 +1428,11 @@ msgstr ""
"Tabloul de partiЧie salvat nu are aceea╨i mЦrime\n"
"SЦ continui totu╨i ?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Avertisment"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1177,79 +1440,79 @@ msgstr ""
"IntroduceЧi o dischetЦ Нn periferic\n"
"Toate datele de pe aceastЦ dischetЦ vor fi pierdute"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "нncercare de salvare a tabloului de partiЧii"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "periferic: "
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "nivel"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "mЦrimea porЧiunii "
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "AlegeЧi un RAID existent la care sЦ adЦugaЧi"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "nou"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Formatarea %s e╨uatЦ"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nu ╨tiu cum sЦ formatez %s Нn tipul %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "montarea nfs a e╨uat"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "montare e╨uatЦ: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "eroare la demontarea %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Punctele de montaje trebuie sa НnceapЦ cu un /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "O partiЧie cu punctul de montaj %s existЦ deja\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Montaje circulare %s\n"
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
+msgstr ""
+
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"AveЧi nevoie de un sistem de fi╨iere serios (ext2, reiserfs) pentru\n"
"acest punct de montaj.\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eroare la citirea %s pentru a scrie: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1258,75 +1521,81 @@ msgstr ""
"fi╨iere\n"
"sistem. VerificaЧi harware-ul pentru a detecta cauza acestei probleme."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Nu aveЧi nici o partiЧie!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "AlegeЧi limba pentru instalare ╨i folosirea sistemului."
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "AlegeЧi dispoziЧia tastaturii din lista de mai sus"
-
-#: ../../help.pm_.c:13
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "AlegeЧi dispoziЧia tastaturii din lista de mai sus"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"AlegeЧi \"Instalare\" dacЦ nu exista alte versiuni de Linux instalate,\n"
-"sau dacЦ doriЧi sЦ folosiЧi mai multe versiuni sau distribuЧii.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"AlegeЧi \"Actualizare\" dacЦ doriЧi sЦ actualizaЧi o versiune precedentЦ\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 or 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Selectare:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Automatizat: DacЦ n'aЧi mai instalat Linux niciodatЦ, alegeЧi aceasta.\n"
-"NOTц:\n"
-" reЧeaua nu va fi configuratЦ Нn timpul instalЦrii, folosiЧi\n"
-" \"LinuxConf\" pentru a o configura dupЦ ce instalarea s'a terminat.\n"
"\n"
-" - Personalizat: DacЦ sunteЧi destul de familiar cu GNU/Linux, puteЧi\n"
-" atunci sЦ alegeЧi utilizarea principalЦ a calculatorului. Vezi mai jos\n"
-" pentru detalii.\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Expert: Aceasta presupune cЦ sunteЧi foarte familiar cu GNU/Linux ╨i\n"
-" doriЧi sЦ faceЧi o instalare foarte personalizatЦ. Ca ╨i pentru clasa\n"
-" \"Personalizat\", veЧi putea sЦ selectaЧi utilizarea sistemului\n"
-" dumneavoastrЦ.\n"
-" Dar vЦ rog, NU ALEGEчi ACEASTA DECнT DACц ╙TIчI CE FACEчI!.\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1334,12 +1603,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Selectare:\n"
"\n"
@@ -1347,37 +1617,36 @@ msgstr ""
" atunci sЦ alegeЧi utilizarea principalЦ a calculatorului. Vezi mai jos\n"
" pentru detalii.\n"
"\n"
+"\n"
" - Expert: Aceasta presupune cЦ sunteЧi foarte familiar cu GNU/Linux ╨i\n"
" doriЧi sЦ faceЧi o instalare foarte personalizatЦ. Ca ╨i pentru clasa\n"
" \"Personalizat\", veЧi putea sЦ selectaЧi utilizarea sistemului\n"
" dumneavoastrЦ.\n"
-" Dar vЦ rog, NU ALEGEчi ACEASTA DECнT DACц ╙TIчI CE FACEчI!.\n"
+" Dar vЦ rog, NU ALEGEчi ACEASTA DECнT DACц ╙TIчI CE FACEчI!."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
"Diferitele posibilitЦЧi pentru utilizarea calculatorului (furnizate, deci, "
"dacЦ\n"
@@ -1402,158 +1671,347 @@ msgstr ""
"etc.\n"
"Deci nu vЦ a╨teptaЧi la programe de genul KDE, GNOME...\n"
-#: ../../help.pm_.c:70
+#: ../../help.pm_.c:84
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX va Нncerca mai НntНi sЦ caute unul sau mai mulЧi adaptatori PCI\n"
-"sau SCSI. DacЦ cЦutarea e fructuoasЦ ╨i ╨tie ce pilot sЦ foloseascЦ,\n"
-"atunci Нl (le) va instala Нn mod automat.\n"
+
+#: ../../help.pm_.c:108
+msgid ""
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
+"\n"
+"\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"DacЦ adaptatorul este o carte ISA, sau est e o carte PCI ╨i DrakX\n"
-"nu ╨tie ce pilot sЦ foloseascЦ sau dacЦ nu aveЧi nici un adaptator SCSI\n"
-"veЧi fi mai apoi Нntrebat dacЦ aveЧi unul sau nu. DacЦ nu aveЧi nici unul\n"
-"rЦspundeЧi \"Nu\". DacЦ aveЧi unul sau mai multe, rЦspundeti \"Da\".\n"
-"O listЦ cu piloЧi va va permite atunci sЦ alegeЧi unul.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"DupЦ ce aЧi selecЧionat pilotul, DrakX vЦ va Нntreba dacЦ doriЧi\n"
-"sЦ specificaЧi opЧiuni pentru el (ei). Mai НntНi НncercaЧi ╨i lЦsaЧi\n"
-"pilotul sЦ testeze hardware-ul: Нn mod normal aceasta funcЧioneazЦ bine.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"DacЦ nu, nu uitaЧi informaЧiile despre hardware pe care le-aЧi putea gЦsi\n"
-"Нn documentaЧia dumneavoastrЦ sau din Windows (dacЦ l-aveЧi instalat), a╨a\n"
-"cum e sugerat Нn ghidul de instalare. Acestea sunt opЧiuni pe care le veЧi\n"
-"furniza pilotului."
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
+"\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
+"\n"
+"\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
+"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
+"\n"
+"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
+"\n"
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:94
+#: ../../help.pm_.c:160
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"To partition the selected hard drive, you can use these options:\n"
"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
+msgstr ""
+
+#: ../../help.pm_.c:218
+msgid ""
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
+"\n"
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
+msgstr ""
+
+#: ../../help.pm_.c:252
+msgid ""
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
+msgstr ""
+
+#: ../../help.pm_.c:257
+msgid ""
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"нn acest punct, veЧi putea alege partiЧiile pentru a instala sistemul\n"
-"Linux-Mandrake dacЦ acestea au fost deja definite (dintr-o altЦ instalare\n"
-"prealabilЦ a unui sistem Linux sau cu ajutorul unui program departiЧionare). "
-"нn celelalte cazuri, partiЧiile vor trebui sЦ fie create.\n"
-"AceastЦ operaЧie consistЦ Нn divizarea logicЦ a capacitЦЧii discului dur\n"
-"Нn arii separate pentru utilizare.\n"
+
+#: ../../help.pm_.c:267
+msgid ""
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
+"\n"
+"\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
+"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
-"DacЦ aveЧi nevoie sЦ creaЧi noi partiЧii, folosiЧi \"Auto alocare\" \n"
-"pentru o creare automatЦ de partiЧii Linux. PuteЧi selecta discul pentru\n"
-"partiЧionare fЦcНnd clic pe \"hda\" pentru primul disc IDE, \"hdb\" \n"
-"pentru al doilea sau \"sda\" pentru primul disc SCSI ╨i a╨a mai departe.\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
"\n"
-"DouЦ partiЧii obi╨nuite sunt: partiЧia root (/), punctul de plecare\n"
-"al ierarhiei sistemului de fi╨iere ╨i /boot, care conЧine toate fi╨ierele\n"
-"necesare pentru a demara sistemul de operare cНnd calculatorul e aprins.\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
-"Pentru cЦ efectele acestui proces sunt Нn mod uzual reversibile,\n"
-"partiЧionarea poate fi intimidantЦ pentru un utilizator ne-experimentat.\n"
-"De aceea DiskDrake simplificЦ pe cНt posibil acest proces. ConsultaЧi\n"
-"documentaЧia ╨i nu vЦ grЦbiЧi Нnainte de a Нncepe.\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"
-"PuteЧi accede la toate opЧiunile cu ajutorul tastaturii: navigaЧi printre\n"
-"partiЧii folosind tasta Tab ╨i tastele sЦgeЧi Sus/Jos. CНnd o partiЧie\n"
-"e selectatЦ, puteЧi folosi:\n"
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
-"- Ctrl-c pentru a crea o nouЦ partiЧie (cНnd a partiЧie goalЦ e selectatЦ)\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
"\n"
-"- Ctrl-d pentru a ╨terge o partiЧie\n"
"\n"
-"- Ctrl-m pentru a crea un punct de montaj\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:303
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Toate partiЧiile care tocmai au fost definite trebuie sЦ fie formatate\n"
-"Нnainte de a fi utilizate. (formatare НnsemnНnd crearea fi╨ierelor sistem).\n"
-"Poate doriЧi sЦ reformataЧi partiЧii pre-existente pentru a ╨terge \n"
-"informaЧiile conЧinute.\n"
-"Nota: nu este necesar sЦ formataЧi partiЧii mai ales dacЦ doriЧi sЦ\n"
-"conservaЧi informaЧiile ce le conЧin. PartiЧii de acest gen sunt:\n"
-"/home ╨i /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
+"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
msgstr ""
"PuteЧi acum sЦ selectaЧi grupul pachetelor pe care vreЧi sЦ le instalaЧi\n"
"sau actualizaЧi.\n"
@@ -1564,136 +2022,153 @@ msgstr ""
"selectaЧi opЧiunea \"Selectarea individualЦ a pachetelor\"; Нn acest caz\n"
"va trebui va trebui sЦ parcurgeЧi mai mult de 1000 de pachete..."
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:341
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
+"\n"
+"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
+"\n"
+"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
+"\n"
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
+msgstr ""
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
msgstr ""
"DacЦ aveЧi toate CD-urile din lista de mai sus faceЧi clic pe Ok.\n"
"DacЦ nu aveЧi nici unul din aceste Cd-uri, faceЧi clic pe AnuleazЦ.\n"
"DacЦ numai cНteva din aceste Cd-uri lipsesc, de-selectaЧi-le ╨i apoi Ok."
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:363
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
+"\n"
+"\n"
+"Please be patient."
msgstr ""
-"Pachetele selectate sunt acum pe cale de fi instalate. AceastЦ operaЧie\n"
-"ar trebui sЦ ia cНteva minute, excepЧie fЦcНnd Actualizare unei distribuЧii\n"
-"precedente, caz Нn care timpul va fi lung Нnainte ca actualizarea sЦ\n"
-"НnceapЦ."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:371
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
-"\n"
-"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
-"\n"
-"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
msgstr ""
-"DacЦ DrakX nu a reu╨it sЦ detecteze mouse-ul, sau dacЦ doriЧi sЦ verificaЧi\n"
-"ceea ce a fЦcut, vi se va propune lista cu mouse-uri de mai sus.\n"
-"\n"
-"\n"
-"DacЦ sunteЧi de acord cu propunerea lui DrakX, sЦriЧi la secЧiunea doritЦ\n"
-"cu un simple Нn meniu din stНnga. DacЦ nu, alegeЧi tipul de mouse care\n"
-"credeЧi cЦ se apropie mai mult de cel pe care-l aveЧi.\n"
-"\n"
-"\n"
-"нn cazul unui mouse de tip serie, veЧi putea specifica portul serie la\n"
-"care e conectat."
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:376
+#, fuzzy
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"VЦ rog selectaЧi portul corect. De exemplu, portul COM1 din Windows e\n"
"numit ttyS0 Нn Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:380
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
-"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
-"\n"
-"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"AceastЦ secЧiune este dedicatЦ configuraЧiei unei reЧele locale (LAN)\n"
-"sau a unui modem.\n"
-"\n"
-"AlegeЧi \"ReЧea LAN\" ╨i DrakX va Нncerca sЦ detecteze adaptatorul\n"
-"Ethernet pe care-l aveЧi. Adaptatorii PCI sunt Нn general detectaЧi ╨i\n"
-"iniЧializaЧi Нn mod automat.\n"
-"нn cazul unui adaptator ISA, detecЧia automatЦ nu va funcЧiona ╨i veЧi\n"
-"avea atunci de ales pilotul din lista propusЦ.\n"
-"\n"
-"\n"
-"La fel ╨i pentru adaptatorii SCSI, puteЧi lЦsa testul mai НntНi, dacЦ nu\n"
-"puteЧi specifica opЧiunile pentru pilot pe care le-aЧi recuperat Нn \n"
-"documentaЧia hardware-ului.\n"
-"\n"
-"\n"
-"DacЦ instalaЧi sistemul Linux-Mandrake pe un calculator care face parte\n"
-"dintr-o reЧea deja existentЦ, administratorul de reЧea vЦ va da toate\n"
-"informaЧiile necesare (adresЦ IP, sub-mascЦ de reЧea sau netmask mai pe\n"
-"scurt ╨i numele calculatorului). DacЦ configuraЧi o reЧea privatЦ la\n"
-"dumneavoastrЦ acasЦ, de exemplu, va trebui sЦ alegeЧi adresele singur.\n"
-"\n"
-"\n"
-"AlegeЧi \"TelefonaЧi cu modem\" ╨i atunci conexiunea Internet va fi\n"
-"configuratЦ. DrakX va Нncerca sЦ detecteze modemul ╨i dacЦ nu reu╨e╨te\n"
-"vЦ va propune portul serie la care modemul e conectat."
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"
+"or are not sure what to enter, the correct informations can be obtained "
+"from\n"
+"your Internet Service Provider. If you do not enter the DNS (name server)\n"
+"information here, this information will be obtained from your Internet "
+"Service\n"
+"Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:407
+msgid ""
+"If your modem is an external modem, please turn on it now to let DrakX "
+"detect it automatically."
+msgstr ""
+
+#: ../../help.pm_.c:410
+msgid "Please turn on your modem and choose the correct one."
+msgstr ""
+
+#: ../../help.pm_.c:413
+msgid ""
+"If you are not sure if informations above are\n"
+"correct or if you don't know or are not sure what to enter, the correct\n"
+"informations can be obtained from your Internet Service Provider. If you do "
+"not\n"
+"enter the DNS (name server) information here, this information will be "
+"obtained\n"
+"from your Internet Service Provider at connection time."
+msgstr ""
+
+#: ../../help.pm_.c:420
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, the correct informations can be\n"
+"obtained from your Internet Service Provider."
+msgstr ""
+"PuteЧi intra opЧiunile de telefonie. DacЦ nu sunteЧi sigur de ceea ce\n"
+"trebuie sЦ intraЧi, НntrebaЧi ISP-ul dumneavoastrЦ."
+
+#: ../../help.pm_.c:425
+#, fuzzy
+msgid ""
+"You may now configure your network device.\n"
"\n"
-" - Netmask: \"255.255.255.0\" is generally a good choice. If you are not\n"
-"sure, ask your network administrator or ISP.\n"
+" * IP address: if you don't know or are not sure what to enter, ask your "
+"network administrator.\n"
+" You should not enter an IP address if you select the option \"Automatic "
+"IP\" below.\n"
"\n"
+" * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
+"know or are not sure what to enter,\n"
+" ask your network administrator.\n"
"\n"
-" - Automatic IP: If your network uses bootp or dhcp protocol, select \n"
-"this option. If selected, no value is needed in \"IP address\". If you are\n"
-"not sure, ask your network administrator or ISP.\n"
+" * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
+"option. If selected, no value is needed in\n"
+" \"IP address\". If you don't know or are not sure if you need to select "
+"this option, ask your network administrator."
msgstr ""
"Intrare;\n"
"\n"
@@ -1704,7 +2179,22 @@ msgstr ""
" - MascЦ de reЧea: \"255.255.255.0\" e Нn general cea corectЦ. DacЦ nu\n"
"sunteЧi sigur, НntrebaЧi administratorul de reЧea sau ISP.\n"
-#: ../../help.pm_.c:225
+#: ../../help.pm_.c:437
+#, fuzzy
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, ask your network administrator."
+msgstr ""
+"DacЦ reЧeaua dumneavoastrЦ folose╨te NIS, selectaЧi \"Folose╨te NIS\". DacЦ\n"
+"nu ╨tiЧi exact, НntrebaЧi administratorul de reЧea."
+
+#: ../../help.pm_.c:441
+msgid ""
+"You may now enter your host name if needed. If you\n"
+"don't know or are not sure what to enter, leave blank."
+msgstr ""
+
+#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -1712,7 +2202,7 @@ msgstr ""
"PuteЧi intra opЧiunile de telefonie. DacЦ nu sunteЧi sigur de ceea ce\n"
"trebuie sЦ intraЧi, НntrebaЧi ISP-ul dumneavoastrЦ."
-#: ../../help.pm_.c:229
+#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -1720,13 +2210,15 @@ msgstr ""
"DacЦ folosiЧi servere proxy, configuraЧi-le acum. DacЦ nu ╨tiЧi dacЦ ar\n"
"trebuie sЦ folosiЧi un proxy, НntrebaЧi administratorul de reЧea sau ISP-ul."
-#: ../../help.pm_.c:233
+#: ../../help.pm_.c:453
+#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
+"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
@@ -1737,13 +2229,19 @@ msgstr ""
"NotaЧi cЦ va trebui sЦ alegeЧi aceste pachete criptografice corespunzЦtoare\n"
"legislaЧie dumneavoastrЦ."
-#: ../../help.pm_.c:241
+#: ../../help.pm_.c:462
+msgid "You can now select your timezone according to where you live."
+msgstr ""
+
+#: ../../help.pm_.c:465
+#, fuzzy
msgid ""
-"You can now select your timezone according to where you live.\n"
+"GNU/Linux manages time in GMT (Greenwich Manage\n"
+"Time) and translates it in local time according to the time zone you have\n"
+"selected.\n"
"\n"
"\n"
-"Linux manages time in GMT or \"Greenwich Mean Time\" and translates it\n"
-"in local time according to the time zone you have selected."
+"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"PuteЧi selecta acum zona orarЦ Нn funcЧie de locul unde trЦiЧi.\n"
"\n"
@@ -1751,97 +2249,180 @@ msgstr ""
"Linux trateazЦ ora Нn format GMT sau \"Greenwich Mean Time\" ╨i-l traduce\n"
"Нn orЦ localЦ Нn funcЧie de zona orarЦ aleasЦ."
-#: ../../help.pm_.c:248
+#: ../../help.pm_.c:473
+#, fuzzy
msgid ""
-"You may now choose which services you want to see started at boot time.\n"
+"You may now choose which services you want to start at boot time.\n"
+"\n"
+"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
-"Be especially careful in this step if you intend to use your machine as a\n"
-"server: you will probably want not to start any services which you don't\n"
-"want."
+"\n"
+"Be very careful in this step if you intend to use your machine as a server: "
+"you\n"
+"will probably want not to start any services that you don't need. Please\n"
+"remember that several services can be dangerous if they are enable on a "
+"server.\n"
+"In general, select only the services that you really need."
msgstr ""
"PuteЧi alege acum serviciile ce doriЧi sЦ iniЧializaЧi la demararea\n"
"calculatorului. DacЦ plasaЧi mouse-ul deasupra rubricii, un mic balon de\n"
"ajutor va apare pentru a descrie rolul serviciului respectiv."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:486
msgid ""
-"Linux can deal with many types of printer. Each of these\n"
-"types require a different setup. Note however that the print\n"
-"spooler uses 'lp' as the default printer name; so you\n"
-"must have one printer with such a name; but you can give\n"
-"several names, separated by '|' characters, to a printer.\n"
-"So, if you prefer to have a more meaningful name you just have\n"
-"to put it first, eg: \"My Printer|lp\".\n"
-"The printer having \"lp\" in its name(s) will be the default printer.\n"
+"You can configure a local printer (connected to your computer) or remote\n"
+"printer (accessible via a Unix, Netware or Microsoft Windows network)."
+msgstr ""
+
+#: ../../help.pm_.c:490
+msgid ""
+"If you wish to be able to print, please choose one printing system between\n"
+"CUPS and LPR.\n"
"\n"
"\n"
-"If your printer is physically connected to your computer, select\n"
-"\"Local printer\". You will then have to tell which port your\n"
-"printer is connected to, and select the appropriate filter.\n"
+"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
+"means \"Common Unix Printing System\"). It is the default printing system "
+"in\n"
+"Linux-Mandrake.\n"
"\n"
"\n"
-"If you want to access a printer located on a remote Unix machine,\n"
-"you will have to select \"Remote lpd\". In order to make\n"
-"it work, no username or password is required, but you will need\n"
-"to know the name of the printing queue on this server.\n"
+"LPR is the old printing system used in previous Linux-Mandrake "
+"distributions.\n"
"\n"
"\n"
-"If you want to access a SMB printer (which means, a printer located\n"
-"on a remote Windows 9x/NT machine), you will have to specify its\n"
-"SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-"plus the username, workgroup and password required in order to\n"
-"access the printer, and of course the name of the printer. The same goes\n"
-"for a NetWare printer, except that you need no workgroup information."
+"If you don't have printer, click on \"None\"."
msgstr ""
-"Linux poate gera multe tipuri de imprimante. Fiecare din aceste tipuri\n"
-"necesitЦ o instalare diferitЦ. NotaЧi cЦ \"spool\"-ul de imprimantЦ\n"
-"folose╨te \"lp\" pentru numele din oficiu al imprimantei; deci va trebui\n"
-"sЦ aveЧi o imprimantЦ cu un acest nume; dar Нi veЧi putea da mai multe "
-"nume,\n"
-"separate de caractere '|'. Deci, dacЦ doriЧi sЦ aveЧi unele nume mai pline\n"
-"de sens, veЧi putea folosi, de exemplu: \"Imprimanta mea|lp\".\n"
-"Imprimanta care are are \"lp\" printre numele ei va fi consideratЦ ca\n"
-"imprimanta din oficiu.\n"
+
+#: ../../help.pm_.c:505
+msgid ""
+"GNU/Linux can deal with many types of printer. Each of these types requires\n"
+"a different setup.\n"
"\n"
"\n"
-"DacЦ imprimanta e conectatЦ fizic la calculator, selectaЧi atunci\n"
-"\"ImprimantЦ localЦ\". VeЧi avea apoi a intra numele portului de\n"
-"imprimantЦ la care aceasta e conectatЦ ╨i a selecta filtrul apropriat\n"
-"Portul LPT1 devine lp0 Нn Linux\n"
+"If your printer is physically connected to your computer, select \"Local\n"
+"printer\".\n"
"\n"
"\n"
-"DacЦ doriЧi sЦ accedeЧi la un calculator Unix distant, veЧi avea a selecta\n"
-"\"lpd distant\". Pentru a o face sЦ funcЧioneze, nu aveЧi nevoie de parolЦ\n"
-"sau de nume de utilizator, dar va trebui sЦ ╨tiЧi care e numele cozii de\n"
-"imprimare de pe acest server-ului.\n"
+"If you want to access a printer located on a remote Unix machine, select\n"
+"\"Remote printer\".\n"
"\n"
"\n"
-"DacЦ doriЧi sЦ acedeЧi la o imprimantЦ SMB (adicЦ la o imprimantЦ conectatЦ\n"
-"fizic la un calculator distant cu un sistem Windows), va trebui sЦ \n"
-"specificaЧi numele ei SMB (care nu e numele ei TCP/IP) ╨i probabil adresa\n"
-"ei IP, plus numele utilizatorului, al grupului de lucru ╨i parola cerutЦ\n"
-"pentru a accede la imprimantЦ ╨i bineНnЧeles numele imprimantei. Lucrurile\n"
-"sunt similare pentru o imprimantЦ Netware, excepЧie fЦcНnd faptul cЦ nu\n"
-"aveЧi nevoie de informaЧia de grup de lucru."
+"If you want to access a printer located on a remote Microsoft Windows "
+"machine\n"
+"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
+msgstr ""
-#: ../../help.pm_.c:286
+#: ../../help.pm_.c:521
msgid ""
-"You can now enter the root password for your Linux-Mandrake\n"
-"system. The password must be entered twice to verify that both\n"
-"password entries are identical.\n"
+"Please turn on your printer before continuing to let DrakX detect it.\n"
+"\n"
+"You have to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of printer: the print spooler uses \"lp\" as default printer name. "
+"So, you must have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You "
+"just need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer a more meaningful name, you have "
+"to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
"\n"
+" * Description: this is optional but can be useful if several printers are "
+"connected to your computer or if you allow\n"
+" other computers to access to this printer.\n"
"\n"
-"Root is the administrator of the system, and is the only user\n"
-"allowed to modify the system configuration. Therefore, choose\n"
-"this password carefully! Unauthorized use of the root account can\n"
-"be extremely dangerous to the integrity of the system and its data,\n"
-"and other systems connected to it. The password should be a\n"
-"mixture of alphanumeric characters and a least 8 characters long. It\n"
-"should NEVER be written down. Do not make the password too long or\n"
-"complicated, though: you must be able to remember without too much\n"
-"effort."
+"\n"
+" * Location: if you want to put some information on your\n"
+" printer location, put it here (you are free to write what\n"
+" you want, for example \"2nd floor\").\n"
+msgstr ""
+
+#: ../../help.pm_.c:542
+msgid ""
+"You need to enter some informations here.\n"
+"\n"
+"\n"
+" * Name of queue: the print spooler uses \"lp\" as default printer name. "
+"So, you need have a printer named \"lp\".\n"
+" If you have only one printer, you can use several names for it. You just "
+"need to separate them by a pipe\n"
+" character (a \"|\"). So, if you prefer to have a more meaningful name, "
+"you have to put it first, eg: \"My printer|lp\".\n"
+" The printer having \"lp\" in its name(s) will be the default printer.\n"
+"\n"
+" \n"
+" * Spool directory: it is in this directory that printing jobs are stored. "
+"Keep the default choice\n"
+" if you don't know what to use\n"
+"\n"
+"\n"
+" * Printer Connection: If your printer is physically connected to your "
+"computer, select \"Local printer\".\n"
+" If you want to access a printer located on a remote Unix machine, "
+"select \"Remote lpd printer\".\n"
+"\n"
+"\n"
+" If you want to access a printer located on a remote Microsoft Windows "
+"machine (or on Unix machine using SMB\n"
+" protocol), select \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" If you want to acces a printer located on NetWare network, select "
+"\"NetWare\".\n"
+msgstr ""
+
+#: ../../help.pm_.c:567
+msgid ""
+"Your printer has not been detected. Please enter the name of the device on\n"
+"which it is connected.\n"
+"\n"
+"\n"
+"For information, most printers are connected on the first parallel port. "
+"This\n"
+"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
+"Windows."
+msgstr ""
+
+#: ../../help.pm_.c:575
+msgid "You must now select your printer in the above list."
+msgstr ""
+
+#: ../../help.pm_.c:578
+msgid ""
+"Please select the right options according to your printer.\n"
+"Please see its documentation if you don't know what choose here.\n"
+"\n"
+"\n"
+"You will be able to test your configuration in next step and you will be "
+"able to modify it if it doesn't work as you want."
+msgstr ""
+
+#: ../../help.pm_.c:585
+#, fuzzy
+msgid ""
+"You can now enter the root password for your Linux-Mandrake system.\n"
+"The password must be entered twice to verify that both password entries are "
+"identical.\n"
+"\n"
+"\n"
+"Root is the system's administrator and is the only user allowed to modify "
+"the\n"
+"system configuration. Therefore, choose this password carefully. \n"
+"Unauthorized use of the root account can be extemely dangerous to the "
+"integrity\n"
+"of the system, its data and other system connected to it.\n"
+"\n"
+"\n"
+"The password should be a mixture of alphanumeric characters and at least 8\n"
+"characters long. It should never be written down.\n"
+"\n"
+"\n"
+"Do not make the password too long or complicated, though: you must be able "
+"to\n"
+"remember it without too much effort."
msgstr ""
"AlegeЧi parola pentru utilizatorul administrator al sistemului Linux.\n"
"Parola trebuie НnscrisЦ de douЦ ori pentru a se asigura cЦ sunt identice.\n"
@@ -1855,7 +2436,7 @@ msgstr ""
"fie un amestec de caractere alfanumerice ╨i de cel puЧin 8 caractere. Nu-l\n"
"scrieЧi NICIODATц pe ceva ╨i nu-l faceЧi prea lung sau prea greu de reЧinut."
-#: ../../help.pm_.c:302
+#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -1863,7 +2444,7 @@ msgstr ""
"Pentru a crea un sistem НncЦ ╨i mai sigur, ar trebui sЦ alegeЧi \"Folose╨te\n"
"un fi╨ier shadow\" ╨i \"Folose╨te parole MD5\"."
-#: ../../help.pm_.c:306
+#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -1871,7 +2452,7 @@ msgstr ""
"DacЦ reЧeaua dumneavoastrЦ folose╨te NIS, selectaЧi \"Folose╨te NIS\". DacЦ\n"
"nu ╨tiЧi exact, НntrebaЧi administratorul de reЧea."
-#: ../../help.pm_.c:310
+#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -1913,21 +2494,18 @@ msgstr ""
"utilizatorului pe care l-aЧi creat aici ╨i sЦ folosiЧi contul root\n"
"numai pentru administraЧie ╨i scopuri de depanare."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:630
msgid ""
-"It is strongly recommended that you answer \"Yes\" here. If you install\n"
-"Microsoft Windows at a later date it will overwrite the boot sector.\n"
-"Unless you have made a bootdisk as suggested, you will not be able to\n"
-"boot into Linux any more."
+"Creating a boot disk is strongly recommended. If you can't\n"
+"boot your computer, it's the only way to rescue your system without\n"
+"reinstalling it."
msgstr ""
-"E foarte indicat sЦ rЦspundeЧi \"Da\" aici. DacЦ instalaЧi Microsoft \n"
-"Windows mai tНrziu, acest a vЦ va ╨terge sectorul de demaraj al discului.\n"
-"DacЦ nu aveЧi un floppy de demaraj, nu veЧi mai putea demara Linux."
-#: ../../help.pm_.c:335
+#: ../../help.pm_.c:635
+#, fuzzy
msgid ""
"You need to indicate where you wish\n"
-"to place the information required to boot to Linux.\n"
+"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
@@ -1940,7 +2518,7 @@ msgstr ""
"нn general alegeЧi \"Primul sector al discului\". AlegeЧi altceva doar dacЦ "
"╨tiЧi ce faceЧi."
-#: ../../help.pm_.c:343
+#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -1948,10 +2526,11 @@ msgstr ""
"Alegerea obi╨nuitЦ este \"/dev/hda\" pentru un disc maestru principal IDE\n"
"sau \"/dev/sda\" pentru primul disc SCSI."
-#: ../../help.pm_.c:347
+#: ../../help.pm_.c:647
+#, fuzzy
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
-"either Linux or any other operating system present on your computer.\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
@@ -1973,7 +2552,8 @@ msgstr ""
"нn acest ultim caz НnsЦ, veЧi avea nevoie de un floppy de demaraj pentru\n"
"a putea le demara!"
-#: ../../help.pm_.c:359
+#: ../../help.pm_.c:659
+#, fuzzy
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -1990,7 +2570,9 @@ msgid ""
"\n"
" - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
+"\n"
" * normal: select normal 80x25 text mode.\n"
+"\n"
" * <number>: use the corresponding text mode."
msgstr ""
"Principalele opЧiuni ale lui LILO ╨i grub sunt:\n"
@@ -2011,10 +2593,70 @@ msgstr ""
" * normal: selectaЧi normal pentru un mod text de 80x25.\n"
" * <numЦr>: folosiЧi modul text corespunzЦtor."
-#: ../../help.pm_.c:378
+#: ../../help.pm_.c:680
+#, fuzzy
+msgid ""
+"SILO is a bootloader for SPARC: it is able to boot\n"
+"either GNU/Linux or any other operating system present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"You may also want not to give access to these other operating systems to\n"
+"anyone, in which case you can delete the corresponding entries. But\n"
+"in this case, you will need a boot disk in order to boot them!"
+msgstr ""
+"LILO (de la LInux LOader) ╨i Grub sunt gestionare de demaraj. AmНndoi sunt\n"
+"capabili sЦ demareze Linux sau un alt sistem prezent Нn calculator.\n"
+"нn mod normal, aceste alte sisteme de operare sunt detectate ╨i instalate\n"
+"corect. DacЦ cumva nu e cazul, puteЧi adЦuga o intrare manual Нn acest\n"
+"ecran. AveЧi grijЦ sЦ alegeЧi parametrii cei buni.\n"
+"\n"
+"\n"
+"PuteЧi de asemenea sЦ interziceЧi accesul acestor alte sisteme a altor \n"
+"utilizatori, caz Нn care ar trebui sЦ ╨tergeЧi intrЦrile acestor sisteme.\n"
+"нn acest ultim caz НnsЦ, veЧi avea nevoie de un floppy de demaraj pentru\n"
+"a putea le demara!"
+
+#: ../../help.pm_.c:692
+#, fuzzy
+msgid ""
+"SILO main options are:\n"
+" - Bootloader installation: Indicate where you want to place the\n"
+"information required to boot to GNU/Linux. Unless you know exactly\n"
+"what you are doing, choose \"First sector of drive (MBR)\".\n"
+"\n"
+"\n"
+" - Delay before booting default image: Specifies the number in tenths\n"
+"of a second the boot loader should wait before booting the first image.\n"
+"This is useful on systems that immediately boot from the hard disk after\n"
+"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
+"omitted or is set to zero."
+msgstr ""
+"Principalele opЧiuni ale lui LILO ╨i grub sunt:\n"
+" - Periferic de boot: parametreazЦ numele perifericului (e.g. o partiЧie\n"
+"a unui disc dur) care conЧine sectorul de demaraj. нn mod normal e vorba\n"
+"de \"/dev/hda\".\n"
+"\n"
+"\n"
+" - Timp de a╨teptare Нnainte de a demara imaginea din oficiu: SpecificЦ\n"
+"numЦrul de zecimi de secundЦ pentru a a╨tepta Нnaintea demarЦrii primei\n"
+"imagini. Acesta e foarte practic pentru sistemele care demareazЦ de pe\n"
+"disc dur dupЦ activarea tastaturii. Gestionarul de demaraj nu a╨teaptЦ\n"
+"deloc dacЦ secЧiunea \"delay\" e omisЦ sau dacЦ e fixatЦ la zero.\n"
+"\n"
+"\n"
+" - Mod Video: Aceasta specificЦ modul text VGA care ar trebui selectat la\n"
+"demaraj. UrmЦtoarele opЧiuni sunt valabile:\n"
+" * normal: selectaЧi normal pentru un mod text de 80x25.\n"
+" * <numЦr>: folosiЧi modul text corespunzЦtor."
+
+#: ../../help.pm_.c:705
+#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
-"core of the Linux GUI (Graphical User Interface). For this purpose,\n"
+"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
@@ -2036,7 +2678,7 @@ msgstr ""
"convin. DacЦ nu vЦ convin, va puteЧi Нntoarce ╨i sЦ-i schimbaЧi de cНte ori\n"
"e necesar."
-#: ../../help.pm_.c:391
+#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2044,7 +2686,7 @@ msgstr ""
"DacЦ ceva nu e Нn regulЦ cu configuraЧia X, folosiЧi aceste opЧiuni pentru\n"
"a configura Нn mod corect Sistemul X Windows."
-#: ../../help.pm_.c:395
+#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2052,42 +2694,47 @@ msgstr ""
"DacЦ preferaЧi sЦ folosiЧi un login Нn mod grafic, selectaЧi \"Da\" ╨i \n"
"\"Nu\" Нn celЦlalt caz."
-#: ../../help.pm_.c:399
+#: ../../help.pm_.c:726
+#, fuzzy
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
-" - Use hard drive optimizations: this option can improve hard disk "
-"performance\n"
-" but is only for advanced users: some buggy chipsets can ruin your data, "
-"so\n"
-" beware. Note that the kernel has a builtin blacklist of drives and\n"
-" chipsets, but if you want to avoid bad surprises, leave this option "
-"unset.\n"
-"\n"
-" - Choose security level: you can choose a security level for your\n"
-" system. Please refer to the manual for complete information. Basically: "
-"if\n"
-" you don't know, select \"Medium\" ; if you really want to have a secure\n"
-" machine, choose \"Paranoid\" but beware: IN THIS LEVEL, ROOT LOGIN AT\n"
-" CONSOLE IS NOT ALLOWED! If you want to be root, you have to login as a "
-"user\n"
-" and then use \"su\". More generally, do not expect to use your machine\n"
-" for anything but as a server. You have been warned.\n"
+"* Use hard drive optimizations: this option can improve hard disk "
+"performance but is only for advanced users. Some buggy\n"
+" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+"blacklist of drives and chipsets, but if\n"
+" you want to avoid bad surprises, leave this option unset.\n"
+"\n"
+"\n"
+"* Choose security level: you can choose a security level for your system. "
+"Please refer to the manual for complete\n"
+" information. Basically, if you don't know what to choose, keep the default "
+"option.\n"
+"\n"
+"\n"
+"* Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the BIOS about the amount of RAM present in\n"
+" your computer. As consequence, Linux may fail to detect your amount of RAM "
+"correctly. If this is the case, you can\n"
+" specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4 MB between detected memory and memory\n"
+" present in your system is normal.\n"
+"\n"
+"\n"
+"* Removable media automounting: if you would prefer not to manually mount "
+"removable media (CD-Rom, floppy, Zip, etc.) by\n"
+" typing \"mount\" and \"umount\", select this option.\n"
"\n"
-" - Precise RAM size if needed: unfortunately, in today's PC world, there is "
-"no\n"
-" standard method to ask the BIOS about the amount of RAM present in your\n"
-" computer. As a consequence, Linux may fail to detect your amount of RAM\n"
-" correctly. If this is the case, you can specify the correct amount of "
-"RAM\n"
-" here. Note that a difference of 2 or 4 MB is normal.\n"
"\n"
-" - Removable media automounting: if you would prefer not to manually\n"
-" mount removable media (CD-ROM, Floppy, Zip) by typing \"mount\" and\n"
-" \"umount\", select this option. \n"
+"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+"stored in \"/tmp\" when you boot your system,\n"
+" select this option.\n"
"\n"
-" - Enable NumLock at startup: if you want NumLock enabled after booting,\n"
-" select this option (Note: NumLock may or may not work under X)."
+"\n"
+"* Enable num lock at startup: if you want NumLock key enabled after booting, "
+"select this option. Please note that you\n"
+" should not enable this option on laptops and that NumLock may or may not "
+"work under X."
msgstr ""
"PuteЧi alege acum diferite opЧiuni pentru sistemul dumneavoastrЦ.\n"
"\n"
@@ -2123,7 +2770,7 @@ msgstr ""
"demaraj selectaЧi aceastЦ opЧiune (NotaЧi cЦ Numlock poate sau sЦ\n"
"funcЧioneze Нn) mod grafic, X)."
-#: ../../help.pm_.c:428
+#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2138,192 +2785,131 @@ msgstr ""
"sЦ demaraЧi un alt sistem de operare existent, vЦ rog citiЧi instrucЧiunile\n"
"adiЧionale."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "AlegeЧi limba"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "AlegeЧi tipul de instalare"
-#: ../../install2.pm_.c:45
+#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "DetecЧia discului dur"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "ConfiguraЧie mouse"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "AlegeЧi tastatura"
-#: ../../install2.pm_.c:48 ../../install_steps_interactive.pm_.c:318
+#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Diverse"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Instalarea fi╨ierelor sistem"
-#: ../../install2.pm_.c:50
+#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Formatarea partiЧiilor"
-#: ../../install2.pm_.c:51
+#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Alege pachetele de instalat"
-#: ../../install2.pm_.c:52
+#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Instalarea sistemului"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "ConfiguraЧie reЧea"
-#: ../../install2.pm_.c:54
-msgid "Cryptographic"
-msgstr "Criptografie"
-
-#: ../../install2.pm_.c:55
+#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "ConfiguraЧia zonei orare"
-#: ../../install2.pm_.c:56
+#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "ConfiguraЧia serviciilor"
-#: ../../install2.pm_.c:57
+#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "ConfiguraЧia imprimantei"
-#: ../../install2.pm_.c:58 ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:653
+#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:758
+#: ../../install_steps_interactive.pm_.c:759
msgid "Set root password"
msgstr "AlegeЧi parola pentru root"
-#: ../../install2.pm_.c:59
+#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "AdЦugaЧi un utilizator"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "CreaЧi un floppy de demaraj"
-#: ../../install2.pm_.c:63
+#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "InstalaЧi un gestionar de demaraj"
-#: ../../install2.pm_.c:64
+#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "ConfiguraЧi X"
-#: ../../install2.pm_.c:66
+#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Floppy pentru instalare automatЦ"
-#: ../../install2.pm_.c:68
+#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Ie╨ire din instalare"
-#: ../../install2.pm_.c:337
-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 ""
-"Trebuie sЦ aveЧi o partiЧie root.\n"
-"Pentru aceasta, creaЧi o partiЧie (sau faceЧi clic pe un existentЦ).\n"
-"AlegeЧi apoi acЧiunea ``Punct de montaj'' ╨i fixaЧi-o la '/'"
-
-#: ../../install_any.pm_.c:334 ../../standalone/diskdrake_.c:61
-msgid ""
-"I can't read your partition table, it's too corrupted for me :(\n"
-"I'll try to go on blanking bad partitions"
-msgstr ""
-"Nu pot citi tabloul de partiЧii, e prea deteriorat dupЦ mine :(\n"
-"Voi Нncerca sЦ continui ╨tergНnd partiЧiile gre╨ite"
+#: ../../install_any.pm_.c:584
+msgid "Error reading file $f"
+msgstr "Eroare la citirea fi╨ierului $f"
-#: ../../install_any.pm_.c:351
-msgid ""
-"DiskDrake failed to read correctly the partition table.\n"
-"Continue at your own risk!"
-msgstr ""
-"DiskDrake a e╨uat la citirea corectЦ a tabloului de partiЧii.\n"
-"ContinuaЧi pe riscul dumneavoastrЦ!"
+#: ../../install_gtk.pm_.c:426
+#, fuzzy
+msgid "Please test the mouse"
+msgstr "VЦ rog, alegeЧi tipul de mouse?"
-#: ../../install_any.pm_.c:373
-msgid "Searching root partition."
-msgstr "нn cЦutarea partiЧiei root"
+#: ../../install_gtk.pm_.c:427
+#, fuzzy
+msgid "To activate the mouse,"
+msgstr "VЦ rog, alegeЧi tipul de mouse?"
-#: ../../install_any.pm_.c:402
-msgid "Information"
-msgstr "InformaЧie"
+#: ../../install_gtk.pm_.c:428
+msgid "MOVE YOUR WHEEL!"
+msgstr ""
-#: ../../install_any.pm_.c:403
+#: ../../install_interactive.pm_.c:23
#, c-format
-msgid "%s: This is not a root partition, please select another one."
-msgstr "%s: Aceasta nu e o partiЧie root, vЦ rog alegeЧi o alta"
-
-#: ../../install_any.pm_.c:405
-msgid "No root partition found"
-msgstr "N'am gЦsit nici o partiЧie root"
-
-#: ../../install_any.pm_.c:443
-msgid "Can't use broadcast with no NIS domain"
-msgstr "Nu pot sЦ folosesc difuzia fЦrЦ nici un domeniu NIS"
-
-#: ../../install_any.pm_.c:606
-msgid "Error reading file $f"
-msgstr "Eroare la citirea fi╨ierului $f"
-
-#: ../../install_steps.pm_.c:75
msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
-"A apЦrut o eroare pe care nu ╨tiu sЦ o interpretez Нn mod corect.\n"
-"ContinuaЧi pe riscul dumneavoastrЦ."
-
-#: ../../install_steps.pm_.c:176
-#, c-format
-msgid "Duplicate mount point %s"
-msgstr "DuplicaЧi pounctul de montaj %s"
-#: ../../install_steps.pm_.c:323
+#: ../../install_interactive.pm_.c:41
msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl "
-"Mandrake/RPMS/*.rpm\"\n"
+"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 ""
-"CНteva pachete importante nu s-au instalat corect.\n"
-"Sau aveЧi o problemЦ cu perifericul de cdrom sau cu \n"
-"cdrom-ul propriu-zis. FolosiЧi comanda \"rpm -qpl \n"
-"Mandrake/RPMS/*.rpm\" pentru a verifica cdrom-ul pe un\n"
-"sistem instalat.\n"
-
-#: ../../install_steps.pm_.c:390
-#, c-format
-msgid "Welcome to %s"
-msgstr "Bine aЧi venit la %s"
-
-#: ../../install_steps.pm_.c:742
-msgid "No floppy drive available"
-msgstr "Nici dischetЦ disponibilЦ"
-
-#: ../../install_steps_auto_install.pm_.c:18 ../../install_steps_gtk.pm_.c:129
-#: ../../install_steps_stdio.pm_.c:26
-#, c-format
-msgid "Entering step `%s'\n"
-msgstr "нncepe etapa `%s'\n"
+"Trebuie sЦ aveЧi o partiЧie root.\n"
+"Pentru aceasta, creaЧi o partiЧie (sau faceЧi clic pe un existentЦ).\n"
+"AlegeЧi apoi acЧiunea ``Punct de montaj'' ╨i fixaЧi-o la '/'"
-#: ../../install_steps_graphical.pm_.c:259 ../../install_steps_gtk.pm_.c:253
+#: ../../install_interactive.pm_.c:46
msgid "You must have a swap partition"
msgstr "Trebuie sЦ aveЧi o partiЧie swap"
-#: ../../install_steps_graphical.pm_.c:261 ../../install_steps_gtk.pm_.c:255
+#: ../../install_interactive.pm_.c:47
msgid ""
"You don't have a swap partition\n"
"\n"
@@ -2333,98 +2919,78 @@ msgstr ""
"\n"
"SЦ continui totu╨i?"
-#: ../../install_steps_graphical.pm_.c:287
-msgid "Choose the size you want to install"
-msgstr "AlegeЧi mЦrimea pe care vreЧi sЦ o instalaЧi"
+#: ../../install_interactive.pm_.c:68
+#, fuzzy
+msgid "Use free space"
+msgstr "Folose╨te pentru loopback"
-#: ../../install_steps_graphical.pm_.c:334
-msgid "Total size: "
-msgstr "MБrime totalЦ: "
+#: ../../install_interactive.pm_.c:70
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:451
-#: ../../standalone/rpmdrake_.c:136
-#, c-format
-msgid "Version: %s\n"
-msgstr "Versiune: %s\n"
+#: ../../install_interactive.pm_.c:78
+#, fuzzy
+msgid "Use existing partition"
+msgstr "Formatarea partiЧiilor"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:452
-#: ../../standalone/rpmdrake_.c:137
-#, c-format
-msgid "Size: %d KB\n"
-msgstr "MЦrime: %d KB\n"
+#: ../../install_interactive.pm_.c:80
+#, fuzzy
+msgid "There is no existing partition to use"
+msgstr "нncercare de salvare a tabloului de partiЧii"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:364
-msgid "Choose the packages you want to install"
-msgstr "AlegeЧi pachetele pe care doriЧi sЦ le instalaЧi"
+#: ../../install_interactive.pm_.c:87
+#, fuzzy
+msgid "Use the Windows partition for loopback"
+msgstr "Folose╨te pentru loopback"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:367
-msgid "Info"
-msgstr "Info"
+#: ../../install_interactive.pm_.c:90
+#, fuzzy
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "Ce partiЧe doriЧi sЦ folosiiЧ pentru a instala Linux4Win?"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:372
-#: ../../install_steps_interactive.pm_.c:129 ../../standalone/rpmdrake_.c:161
-msgid "Install"
-msgstr "Instalare"
+#: ../../install_interactive.pm_.c:92
+msgid "Choose the sizes"
+msgstr "AlegeЧi mЦrimile"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:537
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Installing"
-msgstr "нn curs de instalare"
+#: ../../install_interactive.pm_.c:93
+msgid "Root partition size in MB: "
+msgstr "MЦrimea partiЧiei root Нn MB:"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:543
-msgid "Please wait, "
-msgstr "AsteptaЧi, vЦ rog"
+#: ../../install_interactive.pm_.c:94
+msgid "Swap partition size in MB: "
+msgstr "MЦrimea partiЧiei swap Нn MB:: "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:545
-msgid "Time remaining "
-msgstr "Timp rЦmas "
+#: ../../install_interactive.pm_.c:102
+msgid "Use the free space on the Windows partition"
+msgstr ""
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:546
-msgid "Total time "
-msgstr "Timp total "
+#: ../../install_interactive.pm_.c:105
+#, fuzzy
+msgid "Which partition do you want to resize?"
+msgstr "Ce tip de partiЧie doriЧi?"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:555
-#: ../../install_steps_interactive.pm_.c:382
-msgid "Preparing installation"
-msgstr "PregЦtesc instalarea"
+#: ../../install_interactive.pm_.c:107
+#, fuzzy
+msgid "Computing Windows filesystem bounds"
+msgstr "CalculeazЦ salturile de fi╨iere FAT"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:570
+#: ../../install_interactive.pm_.c:109
#, c-format
-msgid "Installing package %s"
-msgstr "Instalarea pachetului %s"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-#: ../../install_steps_gtk.pm_.c:615
-msgid "Go on anyway?"
-msgstr "SЦ continui totu╨i?"
-
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:611
-msgid "There was an error ordering packages:"
-msgstr "O eroare a apЦrut la ordonarea pachetelor:"
-
-#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:999
-msgid "Use existing configuration for X11?"
-msgstr "SЦ folosesc configuraЧia existentЦ pentru X11?"
-
-#: ../../install_steps_gtk.pm_.c:158
-msgid "Please, choose one of the following classes of installation:"
-msgstr "VЦ rog alegeЧi unul din urmЦtoarele tipuri de instalare"
-
-#: ../../install_steps_gtk.pm_.c:199
-msgid "You don't have any windows partitions!"
-msgstr "Nu aveЧi nici o partiЧie Windows"
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:201
-msgid "You don't have any enough room for Lnx4win"
-msgstr "Nu aveЧi destul spaЧiu pentru Lnx4win"
+#: ../../install_interactive.pm_.c:112
+msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_interactive.pm_.c:113
+#, fuzzy
msgid ""
"WARNING!\n"
"\n"
-"DrakX now needs to resize your Windows partition. Be careful: this operation "
-"is\n"
+"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
@@ -2439,33 +3005,155 @@ msgstr ""
"reНncepeЧi instalarea. Ar trebui de asemenea sЦ faceЧi o copie a datelor\n"
"dumneavoastrЦ. DacЦ sunteЧi sigur, apЦsaЧi Ok."
-#: ../../install_steps_gtk.pm_.c:236
-msgid "Automatic resizing failed"
+#: ../../install_interactive.pm_.c:122
+#, fuzzy
+msgid "Which size do you want to keep for windows on"
+msgstr "La ce sector doriЧi sa schimbaЧi ?"
+
+#: ../../install_interactive.pm_.c:123
+#, fuzzy, c-format
+msgid "partition %s"
+msgstr "PartiЧie"
+
+#: ../../install_interactive.pm_.c:129
+#, fuzzy, c-format
+msgid "FAT resizing failed: %s"
msgstr "Redimensionarea automatЦ a e╨uat"
-#: ../../install_steps_gtk.pm_.c:265
-msgid "Which partition do you want to use to put Linux4Win?"
-msgstr "Ce partiЧe doriЧi sЦ folosiiЧ pentru a instala Linux4Win?"
+#: ../../install_interactive.pm_.c:144
+msgid ""
+"There is no FAT partitions to resize or to use as loopback (or not enough "
+"space left)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:284
-msgid "Choose the sizes"
-msgstr "AlegeЧi mЦrimile"
+#: ../../install_interactive.pm_.c:150
+msgid "Erase entire disk"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:286
-msgid "Root partition size in MB: "
-msgstr "MЦrimea partiЧiei root Нn MB:"
+#: ../../install_interactive.pm_.c:150
+msgid "Remove Windows(TM)"
+msgstr ""
-#: ../../install_steps_gtk.pm_.c:288
-msgid "Swap partition size in MB: "
-msgstr "MЦrimea partiЧiei swap Нn MB:: "
+#: ../../install_interactive.pm_.c:153
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:156
+#, fuzzy, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+"DupЦ redimensionarea partiЧiei %s toate datele de pe aceasta partiЧie vor fi "
+"pierdute"
+
+#: ../../install_interactive.pm_.c:164
+#, fuzzy
+msgid "Expert mode"
+msgstr "Expert"
+
+#: ../../install_interactive.pm_.c:164
+msgid "Use diskdrake"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:168
+msgid "Use fdisk"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:171
+#, fuzzy, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
+msgstr ""
+"PuteЧi partiЧiona acum discul %s dumneavoastrЦ dur\n"
+"CНnd aЧi terminat, nu uitaЧi sЦ НnregistraЧi folosind `w'"
+
+#: ../../install_interactive.pm_.c:195
+#, fuzzy
+msgid "You don't have enough free space on your Windows partition"
+msgstr "Nu aveЧi nici o partiЧie Windows"
+
+#: ../../install_interactive.pm_.c:210
+#, fuzzy
+msgid "I can't find any room for installing"
+msgstr "Imposibil de adЦugat o alta partiЧie"
+
+#: ../../install_interactive.pm_.c:213
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../../install_interactive.pm_.c:218
+#, fuzzy, c-format
+msgid "Partitioning failed: %s"
+msgstr "Tipul tabloul de partiЧii : %s\n"
+
+#: ../../install_interactive.pm_.c:233
+msgid "Bringing up the network"
+msgstr "ConfiguraЧie reЧea"
+
+#: ../../install_interactive.pm_.c:238
+msgid "Bringing down the network"
+msgstr "Oprire reЧea"
+
+#: ../../install_steps.pm_.c:74
+msgid ""
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
+msgstr ""
+"A apЦrut o eroare pe care nu ╨tiu sЦ o interpretez Нn mod corect.\n"
+"ContinuaЧi pe riscul dumneavoastrЦ."
+
+#: ../../install_steps.pm_.c:196
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "DuplicaЧi pounctul de montaj %s"
+
+#: ../../install_steps.pm_.c:375
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
+msgstr ""
+"CНteva pachete importante nu s-au instalat corect.\n"
+"Sau aveЧi o problemЦ cu perifericul de cdrom sau cu \n"
+"cdrom-ul propriu-zis. FolosiЧi comanda \"rpm -qpl \n"
+"Mandrake/RPMS/*.rpm\" pentru a verifica cdrom-ul pe un\n"
+"sistem instalat.\n"
+
+#: ../../install_steps.pm_.c:450
+#, c-format
+msgid "Welcome to %s"
+msgstr "Bine aЧi venit la %s"
+
+#: ../../install_steps.pm_.c:662
+msgid "No floppy drive available"
+msgstr "Nici dischetЦ disponibilЦ"
+
+#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_stdio.pm_.c:23
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "нncepe etapa `%s'\n"
+
+#: ../../install_steps_gtk.pm_.c:136
+msgid ""
+"Your system is low on resource. You may have some problem installing\n"
+"Linux-Mandrake. 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_.c:150
+msgid "Please, choose one of the following classes of installation:"
+msgstr "VЦ rog alegeЧi unul din urmЦtoarele tipuri de instalare"
-#: ../../install_steps_gtk.pm_.c:320
+#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "MЦrimea totalЦ a grupurilor selectate e Нn jur de %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:322
+#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -2479,7 +3167,7 @@ msgstr ""
"Un procent slab va instala numai pachetele cele mai inmportante;\n"
"un procent de 100% va instala toate pachetele selectate."
-#: ../../install_steps_gtk.pm_.c:327
+#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -2496,58 +3184,100 @@ msgstr ""
"Un procent slab nu va installa decНt pachetele cele mai importante;\n"
"un procent de %d%% va instala cНt de multe pachete va fi posibil."
-#: ../../install_steps_gtk.pm_.c:333
+#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "VeЧi putea sЦ le alegeЧi mai Нn detaliu la etapa urmЦtoare."
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Procentul pachetelor de instalat"
-#: ../../install_steps_gtk.pm_.c:376
+#: ../../install_steps_gtk.pm_.c:260
+msgid "Choose the packages you want to install"
+msgstr "AlegeЧi pachetele pe care doriЧi sЦ le instalaЧi"
+
+#: ../../install_steps_gtk.pm_.c:263
+msgid "Info"
+msgstr "Info"
+
+#: ../../install_steps_gtk.pm_.c:268 ../../install_steps_interactive.pm_.c:216
+#: ../../standalone/rpmdrake_.c:161
+msgid "Install"
+msgstr "Instalare"
+
+#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "DependenЧe automate"
-#: ../../install_steps_gtk.pm_.c:429 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "ExpandaЧi Arborele"
-#: ../../install_steps_gtk.pm_.c:430 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "нnchideЧi Arborele"
-#: ../../install_steps_gtk.pm_.c:431
+#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "BasculaЧi Нntre plat ╨i triere Нn funcЧie de grup"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Pachet defectuos"
-#: ../../install_steps_gtk.pm_.c:450
+#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "Nume: %s\n"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:353 ../../standalone/rpmdrake_.c:136
+#, c-format
+msgid "Version: %s\n"
+msgstr "Versiune: %s\n"
+
+#: ../../install_steps_gtk.pm_.c:354 ../../standalone/rpmdrake_.c:137
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "MЦrime: %d KB\n"
+
+#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "ImportanЧЦ: %s\n"
-#: ../../install_steps_gtk.pm_.c:461
+#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "MЦrime totalЦ: %d / %d MB "
-#: ../../install_steps_gtk.pm_.c:471
+#: ../../install_steps_gtk.pm_.c:382
+msgid ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "Nu aveЧi destul spaЧiu pentru a instala acest pachet"
+
+#: ../../install_steps_gtk.pm_.c:386
+#, fuzzy
+msgid "The following packages are going to be installed"
+msgstr "Pachetele urmЦtoare urmeazЦ sЦ fie dezinstalate"
+
+#: ../../install_steps_gtk.pm_.c:387
+#, fuzzy
+msgid "The following packages are going to be removed"
+msgstr "UrmЦtoare pachete vor fi instalate/╨terse"
+
+#: ../../install_steps_gtk.pm_.c:397
+msgid "You can't select/unselect this package"
+msgstr "Nu puteЧi selecta/deselecta acest pachet"
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Acesta este un pachet indispensabil ╨i nu poate fi deselectat"
-#: ../../install_steps_gtk.pm_.c:473
+#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Nu puteЧi deselecta aces pachet. E deja instalat"
-#: ../../install_steps_gtk.pm_.c:477
+#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -2555,44 +3285,89 @@ msgstr ""
"Acest pachet trebuie actualizat\n"
"SunteЧi sigur cЦ doriЧi sЦ-l deselectaЧi ?"
-#: ../../install_steps_gtk.pm_.c:480
+#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Nu puteЧi deselecta acest pachet. Trebuie acualizat."
-#: ../../install_steps_gtk.pm_.c:493
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr "Nu aveЧi destul spaЧiu pentru a instala acest pachet"
-
-#: ../../install_steps_gtk.pm_.c:496
-msgid "The following packages are going to be installed/removed"
-msgstr "UrmЦtoare pachete vor fi instalate/╨terse"
-
-#: ../../install_steps_gtk.pm_.c:505
-msgid "You can't select/unselect this package"
-msgstr "Nu puteЧi selecta/deselecta acest pachet"
+#: ../../install_steps_gtk.pm_.c:466 ../../install_steps_interactive.pm_.c:594
+msgid "Installing"
+msgstr "нn curs de instalare"
-#: ../../install_steps_gtk.pm_.c:540
+#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Estimare"
-#: ../../install_steps_gtk.pm_.c:552 ../../interactive.pm_.c:84
-#: ../../interactive.pm_.c:223 ../../interactive_newt.pm_.c:49
-#: ../../interactive_newt.pm_.c:98 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:201 ../../my_gtk.pm_.c:459
+#: ../../install_steps_gtk.pm_.c:472
+msgid "Please wait, "
+msgstr "AsteptaЧi, vЦ rog"
+
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Time remaining "
+msgstr "Timp rЦmas "
+
+#: ../../install_steps_gtk.pm_.c:475
+msgid "Total time "
+msgstr "Timp total "
+
+#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
+#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
+#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
+#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "AnuleazЦ"
-#: ../../install_steps_gtk.pm_.c:565
+#: ../../install_steps_gtk.pm_.c:484 ../../install_steps_interactive.pm_.c:594
+msgid "Preparing installation"
+msgstr "PregЦtesc instalarea"
+
+#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d pachete"
-#: ../../install_steps_gtk.pm_.c:565
-msgid ", %U MB"
-msgstr ", %U MB"
+#: ../../install_steps_gtk.pm_.c:500
+#, c-format
+msgid "Installing package %s"
+msgstr "Instalarea pachetului %s"
-#: ../../install_steps_gtk.pm_.c:596
+#: ../../install_steps_gtk.pm_.c:531
+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_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Accept"
+msgstr "Acceptare utilizator"
+
+#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -2607,184 +3382,388 @@ msgstr ""
"DacЦ nu-l aveЧi, apЦsaЧi AnuleazЦ pentru a evita instalarea de pe acest "
"Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#, fuzzy
+msgid "Refuse"
+msgstr "RedimensioneazЦ"
+
+#: ../../install_steps_gtk.pm_.c:569 ../../install_steps_gtk.pm_.c:573
+msgid "Go on anyway?"
+msgstr "SЦ continui totu╨i?"
+
+#: ../../install_steps_gtk.pm_.c:569
+msgid "There was an error ordering packages:"
+msgstr "O eroare a apЦrut la ordonarea pachetelor:"
+
+#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "A fost o eroare la instalarea pachetelor:"
-#: ../../install_steps_interactive.pm_.c:40
+#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "A apЦrut o eroare"
-#: ../../install_steps_interactive.pm_.c:57
+#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "VЦ rog, alegeЧi o limbЦ."
-#: ../../install_steps_interactive.pm_.c:72
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:70
+msgid "License agreement"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:71
+msgid ""
+"Introduction\n"
+"\n"
+"The operating system and the different components available in the "
+"Linux-Mandrake 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 Linux-Mandrake distribution.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft 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"
+"MandrakeSoft 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 MandrakeSoft S.A. has been advised of the possibility or "
+"occurance 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, MandrakeSoft 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 Linux-Mandrake 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 MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft 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"
+"MandrakeSoft 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"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft 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 MandrakeSoft S.A. \n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:154
+#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "TastaturЦ"
-#: ../../install_steps_interactive.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:155
+#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "AlegeЧi tastatura."
-#: ../../install_steps_interactive.pm_.c:81
+#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "PuteЧi sЦ alegeЧi alte limbi care vor fi disponibile dupЦ instalare"
-#: ../../install_steps_interactive.pm_.c:91
-msgid "Root Partition"
-msgstr "PartiЧia Root"
-
-#: ../../install_steps_interactive.pm_.c:92
-msgid "What is the root partition (/) of your system?"
-msgstr "Care e partiЧia root (/) a sistemului dumneavoastrЦ?"
+#: ../../install_steps_interactive.pm_.c:173
+#: ../../install_steps_interactive.pm_.c:520
+msgid "All"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:100
-#: ../../install_steps_interactive.pm_.c:140
+#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Tip de instalare"
-#: ../../install_steps_interactive.pm_.c:100
+#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Ce tip de instalare doriЧi?"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Install/Upgrade"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Install/Update"
msgstr "Instalare/Actualizare"
-#: ../../install_steps_interactive.pm_.c:102
-msgid "Is this an install or an upgrade?"
+#: ../../install_steps_interactive.pm_.c:183
+#, fuzzy
+msgid "Is this an install or an update?"
msgstr "Este vorba de o instalare sau de o actualizare ?"
-#: ../../install_steps_interactive.pm_.c:110
-msgid "Automated"
-msgstr "Automatizat"
+#: ../../install_steps_interactive.pm_.c:192
+msgid "Recommended"
+msgstr "Recomandat"
-#: ../../install_steps_interactive.pm_.c:112
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:195
+#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Personalizat"
-#: ../../install_steps_interactive.pm_.c:113
-#: ../../install_steps_interactive.pm_.c:124
+#: ../../install_steps_interactive.pm_.c:196
+#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:122
+#: ../../install_steps_interactive.pm_.c:206
+#, fuzzy
msgid ""
"Are you sure you are an expert? \n"
-"You will be allowed to make powerfull but dangerous things here."
+"You will be allowed to make powerful but dangerous things here.\n"
+"\n"
+"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+"are you ready to answer that kind of questions?"
msgstr ""
"SunteЧi sigur ca sunteЧi un expert?\n"
"Ei, nu-i glumЦ, veЧi putea face lucruri serioase dar periculoase aici."
-#: ../../install_steps_interactive.pm_.c:129
-msgid "Upgrade"
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "Update"
msgstr "Actualizare"
-#: ../../install_steps_interactive.pm_.c:135
-msgid "Normal"
-msgstr "Normal"
+#: ../../install_steps_interactive.pm_.c:222
+#, fuzzy
+msgid "Workstation"
+msgstr "InformaЧie"
-#: ../../install_steps_interactive.pm_.c:136
+#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Programator"
-#: ../../install_steps_interactive.pm_.c:137
+#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Server"
-#: ../../install_steps_interactive.pm_.c:141
-msgid "Which usage is your system used for ?"
+#: ../../install_steps_interactive.pm_.c:228
+#, fuzzy
+msgid "What is your system used for?"
msgstr "Care e folosinЧa sistemului dumneavoastrЦ?"
-#: ../../install_steps_interactive.pm_.c:152
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "VЦ rog, alegeЧi tipul de mouse?"
-#: ../../install_steps_interactive.pm_.c:160 ../../standalone/mousedrake_.c:38
+#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:161
+#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Pe ce port serie este conectat mouse-ul?"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:271
+msgid "Configuring PCMCIA cards..."
+msgstr "ConfiguraЧie cartele PCMCIA..."
+
+#: ../../install_steps_interactive.pm_.c:271
+msgid "PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "ConfiguraЧia IDE"
-#: ../../install_steps_interactive.pm_.c:172
+#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "nici o partiЧie disponibilЦ"
-#: ../../install_steps_interactive.pm_.c:184
-#, c-format
-msgid "(%dMB)"
-msgstr "(%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:191
-msgid "Please choose a partition to use as your root partition."
-msgstr "VЦ rog alegeЧi o partiЧie pentru a o folosi ca partiЧie root?."
+#: ../../install_steps_interactive.pm_.c:291
+msgid "Scanning partitions to find mount points"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:198
+#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "AlegeЧi punctele de montaj"
-#: ../../install_steps_interactive.pm_.c:210
+#: ../../install_steps_interactive.pm_.c:316
+#, fuzzy, c-format
+msgid ""
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
+"The other solution is to disallow DrakX to modify the partition table.\n"
+"(the error is %s)\n"
+"\n"
+"Do you agree to loose all the partitions?\n"
+msgstr ""
+"Nu pot citi tabloul de partiЧii, e prea deteriorat dupЦ mine :(\n"
+"Voi Нncerca sЦ continui ╨tergНnd partiЧiile gre╨ite"
+
+#: ../../install_steps_interactive.pm_.c:329
+msgid ""
+"DiskDrake failed to read correctly the partition table.\n"
+"Continue at your own risk!"
+msgstr ""
+"DiskDrake a e╨uat la citirea corectЦ a tabloului de partiЧii.\n"
+"ContinuaЧi pe riscul dumneavoastrЦ!"
+
+#: ../../install_steps_interactive.pm_.c:337
+msgid "Root Partition"
+msgstr "PartiЧia Root"
+
+#: ../../install_steps_interactive.pm_.c:338
+msgid "What is the root partition (/) of your system?"
+msgstr "Care e partiЧia root (/) a sistemului dumneavoastrЦ?"
+
+#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Trebuie sЦ redemaraЧi pentru a Нnregistra modificЦrile tabloului de partiЧii"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "AlegeЧi partiЧiile pe care doriЧi sa le formataЦi"
-#: ../../install_steps_interactive.pm_.c:240
+#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "SЦ verific blocurile defectuoase?"
-#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Formatarea partiЧiilor"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "Crearea ╨i formatarea fi╨ierului %s"
-#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Swap insuficient pentru a termina instalarea, mai adЦugaЧi ceva"
-#: ../../install_steps_interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "CЦutarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:267
+#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Cautarea pachetelor de actualizat"
-#: ../../install_steps_interactive.pm_.c:284
-msgid "Your system has not enough space left for installation or upgrade"
+#: ../../install_steps_interactive.pm_.c:433
+#, fuzzy, c-format
+msgid ""
+"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"Sistemul dumneavoastrЦ nu ar destul spaЧiu disponibil pentru instalare\n"
"sau actualizare"
-#: ../../install_steps_interactive.pm_.c:317
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Complete (%dMB)"
+msgstr "Normal"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Minimum (%dMB)"
+msgstr "(%dMB)"
+
+#: ../../install_steps_interactive.pm_.c:449
+#, fuzzy, c-format
+msgid "Recommended (%dMB)"
+msgstr "Recomandat"
+
+#: ../../install_steps_interactive.pm_.c:455
+#, fuzzy
+msgid "Custom"
+msgstr "Personalizat"
+
+#: ../../install_steps_interactive.pm_.c:462
+#, fuzzy
+msgid "Select the size you want to install"
+msgstr "AlegeЧi mЦrimea pe care vreЧi sЦ o instalaЧi"
+
+#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../install_steps_interactive.pm_.c:320
+#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Selectare individualЦ a pachetelor"
-#: ../../install_steps_interactive.pm_.c:360
+#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -2795,12 +3774,12 @@ msgstr ""
"DacЦ nu vЦ lispsesc decНt cНteva CD-uri, deselectaЧi-le ╨i faceЧi click pe "
"Ok."
-#: ../../install_steps_interactive.pm_.c:363
+#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etichetat \"%s\""
-#: ../../install_steps_interactive.pm_.c:391
+#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
@@ -2808,173 +3787,11 @@ msgstr ""
"instalarea pachetului %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:400
+#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "ConfiguraЧie post-install"
-#: ../../install_steps_interactive.pm_.c:410
-msgid "Keep the current IP configuration"
-msgstr "PastraЧi configuraЧia IP curentЦ"
-
-#: ../../install_steps_interactive.pm_.c:411
-msgid "Reconfigure network now"
-msgstr "ReconfiguraЧi reЧeaua"
-
-#: ../../install_steps_interactive.pm_.c:412
-msgid "Do not set up networking"
-msgstr "Nu configuraЧi reЧeaua"
-
-#: ../../install_steps_interactive.pm_.c:415
-#: ../../install_steps_interactive.pm_.c:420
-msgid "Network Configuration"
-msgstr "ConfiguraЧia reЧelei"
-
-#: ../../install_steps_interactive.pm_.c:416
-msgid "Local networking has already been configured. Do you want to:"
-msgstr "ReЧeaua LAN a fost deja configuratЦ. DoriЧi sЦ :"
-
-#: ../../install_steps_interactive.pm_.c:421
-msgid "Do you want to configure a local network for your system?"
-msgstr "DoriЧi sa configuraЧi reЧeaua LAN pentru sistemul dumneavoastrЦ?"
-
-#: ../../install_steps_interactive.pm_.c:427
-msgid "no network card found"
-msgstr "n'am gЦsit nici o carte de reЧea"
-
-#: ../../install_steps_interactive.pm_.c:449
-msgid "Modem Configuration"
-msgstr "ConfiguraЧie modem"
-
-#: ../../install_steps_interactive.pm_.c:450
-msgid ""
-"Do you want to configure a dialup connection with modem for your system?"
-msgstr "DoriЧi sa configuraЧi o conexiune telefonicЦ prin modem?"
-
-#: ../../install_steps_interactive.pm_.c:462
-#: ../../install_steps_interactive.pm_.c:463
-#, c-format
-msgid "Configuring network device %s"
-msgstr "ConfiguraЧia cЦrЧii de reЧea %s"
-
-#: ../../install_steps_interactive.pm_.c:464
-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 ""
-"VЦ rog intraЧi configuraЧia IP pentru acest calculator.\n"
-"Fiecare rubrica va trebui sa fie completatЦ ca o adresЦ IP Нn format\n"
-"zecimal-punctat (de exemplu 192.168.1.55)."
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Automatic IP"
-msgstr "IP automat"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "IP address:"
-msgstr "AdresЦ IP"
-
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Netmask:"
-msgstr "MascЦ de reЧea:"
-
-#: ../../install_steps_interactive.pm_.c:468
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
-
-#: ../../install_steps_interactive.pm_.c:474 ../../printerdrake.pm_.c:89
-msgid "IP address should be in format 1.2.3.4"
-msgstr "Adresa IP ar trebui sЦ fie Нn formatul 1.2.3.4"
-
-#: ../../install_steps_interactive.pm_.c:492
-msgid "Configuring network"
-msgstr "ConfiguraЧie reЧea"
-
-#: ../../install_steps_interactive.pm_.c:493
-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 ""
-"VЦ rog intraЧi numele calculatorului.\n"
-"Numele calculatorului ar trebui sЦ fie un nume Нntreg-calificat,\n"
-"ca de exemplu ``calculatorulmeu.laboratorulmeu.Нntreprindereamea.com''.\n"
-"PuteЧi de asemenea intra adresa IP a pasarelei dacЦ aveЧi una"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "DNS server:"
-msgstr "Server DNS:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway device:"
-msgstr "Periferic pasarelЦ:"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Gateway:"
-msgstr "PasarelЦ"
-
-#: ../../install_steps_interactive.pm_.c:497
-msgid "Host name:"
-msgstr "Numele calculatorului:"
-
-#: ../../install_steps_interactive.pm_.c:510
-msgid "Try to find a modem?"
-msgstr "SЦ caut un modem?"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Please choose which serial port your modem is connected to."
-msgstr "Pe ce port serial este conectat modemul dumneavoastrЦ?"
-
-#: ../../install_steps_interactive.pm_.c:527
-msgid "Dialup options"
-msgstr "OpЧuni de telefonie"
-
-#: ../../install_steps_interactive.pm_.c:528
-msgid "Connection name"
-msgstr "Nume de conexiune"
-
-#: ../../install_steps_interactive.pm_.c:529
-msgid "Phone number"
-msgstr "NumЦr de telefon"
-
-#: ../../install_steps_interactive.pm_.c:530
-msgid "Login ID"
-msgstr "ID de login"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Authentication"
-msgstr "Autentificare"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "CHAP"
-msgstr "CHAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "PAP"
-msgstr "PAP"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Script-based"
-msgstr "Bazat-pe-un-script"
-
-#: ../../install_steps_interactive.pm_.c:532
-msgid "Terminal-based"
-msgstr "Bazat-pe-un-terminal"
-
-#: ../../install_steps_interactive.pm_.c:533
-msgid "Domain name"
-msgstr "Nume de domeniu"
-
-#: ../../install_steps_interactive.pm_.c:535
-msgid "First DNS Server"
-msgstr "Primul server DNS"
-
-#: ../../install_steps_interactive.pm_.c:536
-msgid "Second DNS Server"
-msgstr "Al doilea server DNS"
-
-#: ../../install_steps_interactive.pm_.c:549
+#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3041,89 +3858,95 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:580
+#: ../../install_steps_interactive.pm_.c:668
msgid "Choose a mirror from which to get the packages"
msgstr "AlegeЧi o oglindЦ de la care sЦ recuperaЧi pachetele"
-#: ../../install_steps_interactive.pm_.c:588
+#: ../../install_steps_interactive.pm_.c:676
msgid "Contacting the mirror to get the list of available packages"
msgstr "Contactarea oglinzii pentru recuperarea pachetelor disponibile"
-#: ../../install_steps_interactive.pm_.c:592
+#: ../../install_steps_interactive.pm_.c:679
msgid "Please choose the packages you want to install."
msgstr "VЦ rog alegeЧi pachetele pe care doriЧi sЦ le instalaЧi"
-#: ../../install_steps_interactive.pm_.c:606
+#: ../../install_steps_interactive.pm_.c:691
+#, fuzzy
msgid "Which is your timezone?"
-msgstr "Care e zona dumneavoastrЦ orarЦ?"
+msgstr "Care e folosinЧa sistemului dumneavoastrЦ?"
-#: ../../install_steps_interactive.pm_.c:607
+#: ../../install_steps_interactive.pm_.c:693
msgid "Is your hardware clock set to GMT?"
msgstr "Ceasul dumneavoastrЦ hardware e fixat la GMT?"
-#: ../../install_steps_interactive.pm_.c:652
+#: ../../install_steps_interactive.pm_.c:731
+#, fuzzy
+msgid "Which printing system do you want to use?"
+msgstr "Ce tip de partiЧie doriЧi?"
+
+#: ../../install_steps_interactive.pm_.c:758
msgid "No password"
msgstr "Nici o parolЦ"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "Use shadow file"
msgstr "Folose╨te un fi╨ier shadow"
-#: ../../install_steps_interactive.pm_.c:657
+#: ../../install_steps_interactive.pm_.c:763
msgid "shadow"
msgstr "shadow"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "MD5"
msgstr "MD5"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:764
msgid "Use MD5 passwords"
msgstr "Folose╨te parole MD5"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "Use NIS"
msgstr "Folose╨te NIS"
-#: ../../install_steps_interactive.pm_.c:660
+#: ../../install_steps_interactive.pm_.c:766
msgid "yellow pages"
msgstr "Pagini galbene"
-#: ../../install_steps_interactive.pm_.c:666
+#: ../../install_steps_interactive.pm_.c:772
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"AceastЦ parole e prea simplЦ (ar trebui sЦ fie de cel puЧin %d caractere)"
-#: ../../install_steps_interactive.pm_.c:673
+#: ../../install_steps_interactive.pm_.c:779
msgid "Authentification NIS"
msgstr "Autentificare NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Domain"
msgstr "Domeniu NIS"
-#: ../../install_steps_interactive.pm_.c:674
+#: ../../install_steps_interactive.pm_.c:780
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Acceptare utilizator"
-#: ../../install_steps_interactive.pm_.c:699
+#: ../../install_steps_interactive.pm_.c:805
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "AdЦugaЧi un utilizator"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(deja adЦugat %s)"
-#: ../../install_steps_interactive.pm_.c:700
+#: ../../install_steps_interactive.pm_.c:806
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
@@ -3133,37 +3956,37 @@ msgstr ""
"IntraЧi un utilizator\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:702
+#: ../../install_steps_interactive.pm_.c:808
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Nume real"
-#: ../../install_steps_interactive.pm_.c:703 ../../printerdrake.pm_.c:84
-#: ../../printerdrake.pm_.c:109 ../../standalone/adduserdrake_.c:40
+#: ../../install_steps_interactive.pm_.c:809 ../../printerdrake.pm_.c:93
+#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Numele utilizatorului"
-#: ../../install_steps_interactive.pm_.c:708
+#: ../../install_steps_interactive.pm_.c:814
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Shell"
-#: ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "IcoanЦ"
-#: ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_interactive.pm_.c:826
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Aceasta parolЦ e prea simplЦ"
-#: ../../install_steps_interactive.pm_.c:721
+#: ../../install_steps_interactive.pm_.c:827
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Va rog НnscrieЧi numele utilizatorului"
-#: ../../install_steps_interactive.pm_.c:722
+#: ../../install_steps_interactive.pm_.c:828
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
@@ -3171,24 +3994,51 @@ msgstr ""
"Numele utilizatorului trebuie sa conЧinЦ numai caractere minuscule, numere, "
"`-' ╨i `_'"
-#: ../../install_steps_interactive.pm_.c:723
+#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Acest nume de utilizator e deja adЦugat"
-#: ../../install_steps_interactive.pm_.c:747
+#: ../../install_steps_interactive.pm_.c:853
+#, fuzzy
+msgid ""
+"A custom bootdisk provides a way of booting into your Linux system without\n"
+"depending on the normal bootloader. This is useful if you don't want to "
+"install\n"
+"SILO on your system, or another operating system removes SILO, or SILO "
+"doesn't\n"
+"work with your hardware configuration. A custom bootdisk can also be used "
+"with\n"
+"the Mandrake rescue image, making it much easier to recover from severe "
+"system\n"
+"failures.\n"
+"\n"
+"If you want to create a bootdisk for your system, insert a floppy in the "
+"first\n"
+"drive and press \"Ok\"."
+msgstr ""
+"O dischetЦ personalizatЦ de demaraj permite un mod de a accede la sistemul\n"
+"vostru Linux fЦrЦ a depinde de gestionarul de demaraj normal. Acesta este \n"
+"util dacЦ nu doriЧi sЦ instalaЧi LILO (sau grub) Нn sistem sau dacБ alte \n"
+"sisteme ╨terg LILO sau dacЦ LILO nu funcЧioneazЦ Нn sistemul dumneavoastrЦ.\n"
+"O dischetЦ personalizatЦ poate fi de asemena folositЦ ca o imagine de\n"
+"depanaj, ceea ce permite recuperЦri mult mai u╨oare Нn urmЦ unor pane "
+"severe.\n"
+"DoriЧi sЦ creaЧi o dischetЦ de demaraj pentru sistemul dumneavoastrЦ ?"
+
+#: ../../install_steps_interactive.pm_.c:869
msgid "First floppy drive"
msgstr "Primul periferic de dichetЦ"
-#: ../../install_steps_interactive.pm_.c:748
+#: ../../install_steps_interactive.pm_.c:870
msgid "Second floppy drive"
msgstr "Al doilea periferic de dischetЦ"
-#: ../../install_steps_interactive.pm_.c:749
+#: ../../install_steps_interactive.pm_.c:871
msgid "Skip"
msgstr "Sari peste"
-#: ../../install_steps_interactive.pm_.c:755
+#: ../../install_steps_interactive.pm_.c:876
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -3210,65 +4060,34 @@ msgstr ""
"severe.\n"
"DoriЧi sЦ creaЧi o dischetЦ de demaraj pentru sistemul dumneavoastrЦ ?"
-#: ../../install_steps_interactive.pm_.c:764
+#: ../../install_steps_interactive.pm_.c:885
msgid "Sorry, no floppy drive available"
msgstr "нmi pare rЦu dar nu gЦsesc nici un periferic de dischetЦ disponibil."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:888
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"AlegeЧi perifericul pe care-l doriЧi pentru a realiza un disc de demaraj."
-#: ../../install_steps_interactive.pm_.c:772
+#: ../../install_steps_interactive.pm_.c:894
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "IntroduceЧi o dischetЦ Нn perifericul %s"
-#: ../../install_steps_interactive.pm_.c:773
+#: ../../install_steps_interactive.pm_.c:897
msgid "Creating bootdisk"
msgstr "Crearea dischetei de demaraj"
-#: ../../install_steps_interactive.pm_.c:785 ../../standalone/drakboot_.c:58
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Instalarea lui LILO a e╨uat. UrmЦtoarea eroare a apЦrut:"
-
-#: ../../install_steps_interactive.pm_.c:806
-msgid "Do you want to use SILO?"
-msgstr "VreЧi sЦ folosiЧi SILO?"
-
-#: ../../install_steps_interactive.pm_.c:817
-msgid "SILO main options"
-msgstr "OpЧinunile principale ale lui SILO"
-
-#: ../../install_steps_interactive.pm_.c:830
-msgid ""
-"Here are the following entries in SILO.\n"
-"You can add some more or change the existing ones."
-msgstr ""
-"IatЦ urmЦtoarele intrЦri din SILO.\n"
-"PuteЧi adЦuga mai multe sau schimba cele existente."
-
-#: ../../install_steps_interactive.pm_.c:858
-msgid "Partition"
-msgstr "PartiЧie"
-
-#: ../../install_steps_interactive.pm_.c:878
-msgid "This label is already in use"
-msgstr "AceastЦ etichetЦ e deja utilizatЦ"
-
-#: ../../install_steps_interactive.pm_.c:892
-msgid "Installation of SILO failed. The following error occured:"
-msgstr "Instalarea lui SILO a e╨uat. UrmЦtoarea eroare a apЦrut:"
-
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid "Preparing bootloader"
msgstr "PegЦtirea gestionalului de demaraj"
-#: ../../install_steps_interactive.pm_.c:910
+#: ../../install_steps_interactive.pm_.c:913
+#, fuzzy
msgid "Do you want to use aboot?"
-msgstr "Doriti sЦ folosiЧi aboot?"
+msgstr "VreЧi sЦ folosiЧi SILO?"
-#: ../../install_steps_interactive.pm_.c:913
+#: ../../install_steps_interactive.pm_.c:916
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -3276,127 +4095,114 @@ msgstr ""
"Eroare la instalrea lui aboot,\n"
"sЦ Нncerc sЦ forЧaЧi instalarea chiar dacЦ aceasta distruge prima partiЧie ?"
-#: ../../install_steps_interactive.pm_.c:930
-msgid "Proxies configuration"
-msgstr "ConfiguraЧie proxy"
-
-#: ../../install_steps_interactive.pm_.c:931
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:932
-msgid "FTP proxy"
-msgstr "FTP proxy"
-
-#: ../../install_steps_interactive.pm_.c:938
-msgid "Proxy should be http://..."
-msgstr "Proxy-ul ar trebui sЦ fie http://..."
-
-#: ../../install_steps_interactive.pm_.c:939
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ul ar trebui sЦ fie ftp://..."
+#: ../../install_steps_interactive.pm_.c:925
+#, fuzzy
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "Instalarea lui LILO a e╨uat. UrmЦtoarea eroare a apЦrut:"
-#: ../../install_steps_interactive.pm_.c:949 ../../standalone/draksec_.c:20
+#: ../../install_steps_interactive.pm_.c:939 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Bun venit PiraЧilor"
-#: ../../install_steps_interactive.pm_.c:950 ../../standalone/draksec_.c:21
+#: ../../install_steps_interactive.pm_.c:940 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Slab"
-#: ../../install_steps_interactive.pm_.c:951 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:941 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "ScЦzut"
-#: ../../install_steps_interactive.pm_.c:952 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:942 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Mediu"
-#: ../../install_steps_interactive.pm_.c:953 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Ridicat"
-#: ../../install_steps_interactive.pm_.c:954 ../../standalone/draksec_.c:25
+#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoiac"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:958
msgid "Miscellaneous questions"
msgstr "нntrebЦri diverse"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "(may cause data corruption)"
msgstr "(poate cauza deteriorarea datelor)"
-#: ../../install_steps_interactive.pm_.c:968
+#: ../../install_steps_interactive.pm_.c:959
msgid "Use hard drive optimisations?"
msgstr "Sa folosesc optimizЦrile penrtu disc dur?"
-#: ../../install_steps_interactive.pm_.c:969 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:960 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "AlegeЧi nivelul de securitate"
-#: ../../install_steps_interactive.pm_.c:970
+#: ../../install_steps_interactive.pm_.c:961
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "PrecizeazЦ cantintatea de RAM dacЦ e necesar (am gЦsit %d MB)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:963
msgid "Removable media automounting"
msgstr "Automontare automatЦ a perifericelor extractibile"
-#: ../../install_steps_interactive.pm_.c:974
+#: ../../install_steps_interactive.pm_.c:965
msgid "Clean /tmp at each boot"
msgstr "CurЦЧЦ /tmp la fiecare demaraj"
-#: ../../install_steps_interactive.pm_.c:977
+#: ../../install_steps_interactive.pm_.c:968
msgid "Enable multi profiles"
msgstr "ActiveazЦ profilurile multiple"
-#: ../../install_steps_interactive.pm_.c:979
+#: ../../install_steps_interactive.pm_.c:970
msgid "Enable num lock at startup"
msgstr "ActiveazЦ num lock la demaraj"
-#: ../../install_steps_interactive.pm_.c:982
+#: ../../install_steps_interactive.pm_.c:973
msgid "Give the ram size in MB"
msgstr "IntroduceЧi cantintatea de RAM Нn MB"
-#: ../../install_steps_interactive.pm_.c:984
+#: ../../install_steps_interactive.pm_.c:975
msgid "Can't use supermount in high security level"
msgstr "Nu pot sЦ folosesc supermount Нn nivelul de securitate ridicat"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:977
msgid ""
-"DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-"By default, the 3.3 server is used because it works on more graphic cards.\n"
-"\n"
-"Do you want to try XFree 4.0?"
+"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+"If you want to be root, you have to login as a user and then use \"su\".\n"
+"More generally, do not expect to use your machine for anything but as a "
+"server.\n"
+"You have been warned."
msgstr ""
-"DrakX va genera fi╨ierele de configuraЧie pentru XFree 3.3 ╨i pentru \n"
-"XFree 4.0.\n"
-"Din oficiu, folosim versiunea 3.3 a server-ului pentru cЦ funcЧioneazЦ\n"
-"cu mai multe cЦrЧi grafice.\n"
-"\n"
-"DoriЧi sЦ folosiЧi XFree 4.0 ?"
-#: ../../install_steps_interactive.pm_.c:1017
-msgid "Try to find PCI devices?"
-msgstr "SЦ Нncerc sЦ gЦsesc periferice PCI?"
+#: ../../install_steps_interactive.pm_.c:982
+msgid ""
+"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+"give digits instead of normal letters (eg: pressing `p' gives `6')"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:999
+msgid "Use existing configuration for X11?"
+msgstr "SЦ folosesc configuraЧia existentЦ pentru X11?"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "DoriЧi sЦ creaЧi un floppy pentru o instalare automatЦ de replicare?"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1030
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "IntroduceЧi uo dischetЦ goalЦ Нn perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1075
msgid "Creating auto install floppy"
msgstr "Creati discheta de autoinstalare"
-#: ../../install_steps_interactive.pm_.c:1070
+#: ../../install_steps_interactive.pm_.c:1100
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -3406,7 +4212,7 @@ msgstr ""
"\n"
"Chiar vreЧi sЦ terminaЧi acum?"
-#: ../../install_steps_interactive.pm_.c:1077
+#: ../../install_steps_interactive.pm_.c:1109
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -3429,153 +4235,18 @@ msgstr ""
"capitolul referitor la post instalare din \n"
"Oficial Linux Mandrake User's Guide."
-#: ../../install_steps_interactive.pm_.c:1086
-msgid "Shutting down"
-msgstr "Oprire"
-
-#: ../../install_steps_interactive.pm_.c:1098
-#, c-format
-msgid "Installing driver for %s card %s"
-msgstr "Instalarea pilotului pentru %s cartea %s"
-
-#: ../../install_steps_interactive.pm_.c:1099
-#, c-format
-msgid "(module %s)"
-msgstr "(modul %s)"
-
-#: ../../install_steps_interactive.pm_.c:1109
-#, c-format
-msgid "Which %s driver should I try?"
-msgstr "Care %s pilot sЦ Нncerc?"
-
-#: ../../install_steps_interactive.pm_.c:1117
-#, c-format
-msgid ""
-"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without. 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 ""
-"нn anumite cazuri, pilotul %s necesitЦ informaЧii suplimentare pentru a\n"
-"funcЧiona corect, dar funcЧioneazЦ bine ╨i fЦrЦ. DoriЧi sЦ specificaЧi\n"
-"opЧiuni suplimentare sau Нi permiteЧi sЦ interogheze calculatorul pentru\n"
-"informaЧiile necesare? Ocazional, interogarea poate bloca calculatorul,\n"
-"dar n-ar trebui sЦ produce nici o deteriorare."
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Autoprobe"
-msgstr "AutoprobeazЦ"
-
-#: ../../install_steps_interactive.pm_.c:1122
-msgid "Specify options"
-msgstr "SpecificaЧi opЧiunile"
-
-#: ../../install_steps_interactive.pm_.c:1126
-#, c-format
-msgid "You may now provide its options to module %s."
-msgstr "PuteЧi furniza acum opЧiunile modulului %s."
-
-#: ../../install_steps_interactive.pm_.c:1132
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"PuteЧi furniza acum opЧiunile modulului %s.\n"
-"OpЧiunile sunt Нn formatul ``nume=valoare nume2=valoare2 ...''.\n"
-"de exemplu, ``io=0x300 irq=7''"
-
-#: ../../install_steps_interactive.pm_.c:1135
-msgid "Module options:"
-msgstr "OpЧiuni pentru module:"
-
-#: ../../install_steps_interactive.pm_.c:1145
-#, c-format
-msgid ""
-"Loading module %s failed.\n"
-"Do you want to try again with other parameters?"
-msgstr ""
-"нncЦcarea modulului %s a e╨uat.\n"
-"DoriЧi sЦНncercaЧi cu alЧi parametri ?"
-
-#: ../../install_steps_interactive.pm_.c:1158
-msgid "Try to find PCMCIA cards?"
-msgstr "SЦ Нncerc sЦ gЦsesc cartelele PCMCIA?"
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "Configuring PCMCIA cards..."
-msgstr "ConfiguraЧie cartele PCMCIA..."
-
-#: ../../install_steps_interactive.pm_.c:1159
-msgid "PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../install_steps_interactive.pm_.c:1171
-#, c-format
-msgid "Try to find %s devices?"
-msgstr "SЦ Нncerc sЦ gЦsesc periferice %s?"
-
-#: ../../install_steps_interactive.pm_.c:1180
-#, c-format
-msgid "Found %s %s interfaces"
-msgstr "Am gЦsit interfaЧele %s %s"
-
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Do you have another one?"
-msgstr "AveЧi o altЦ interfaЧa?"
-
-#: ../../install_steps_interactive.pm_.c:1182
-#, c-format
-msgid "Do you have any %s interfaces?"
-msgstr "AveЧi vreo interfaЧЦ %s ?"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458 ../../printerdrake.pm_.c:124
-msgid "No"
-msgstr "Nu"
-
-#: ../../install_steps_interactive.pm_.c:1184 ../../interactive.pm_.c:79
-#: ../../my_gtk.pm_.c:458
-msgid "Yes"
-msgstr "Da"
-
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "See hardware info"
-msgstr "Vezi info hardware"
-
-#: ../../install_steps_interactive.pm_.c:1202
-msgid "Bringing up the network"
-msgstr "ConfiguraЧie reЧea"
-
-#: ../../install_steps_interactive.pm_.c:1207
-msgid "Bringing down the network"
-msgstr "Oprire reЧea"
-
-#: ../../install_steps_newt.pm_.c:21
+#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Instalare Linux-Mandrake %s"
-#: ../../install_steps_newt.pm_.c:32
+#: ../../install_steps_newt.pm_.c:33
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
" <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul ecran"
-#: ../../install_steps_newt.pm_.c:43
-#, c-format
-msgid ""
-"You can now partition your %s hard drive\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-"PuteЧi partiЧiona acum discul %s dumneavoastrЦ dur\n"
-"CНnd aЧi terminat, nu uitaЧi sЦ НnregistraЧi folosind `w'"
-
-#: ../../interactive.pm_.c:244
+#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "PuЧinticЦ rЦbdare"
@@ -3585,7 +4256,7 @@ msgid "Ambiguity (%s), be more precise\n"
msgstr "Ambiguitate (%s), fiЧi mai precis\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
-#: ../../interactive_stdio.pm_.c:70
+#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Alegere gre╨itЦ, НncercaЧi din nou\n"
@@ -3599,447 +4270,969 @@ msgstr " ? (din oficiu %s) "
msgid "Your choice? (default %s) "
msgstr "Ce alegeЧi? (din oficiu %s) "
-#: ../../interactive_stdio.pm_.c:71
+#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Ce alegeЧi ? (din oficiu %s enter `niciuna' pentru niciuna) "
-#: ../../keyboard.pm_.c:90 ../../keyboard.pm_.c:118
+#: ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:134
msgid "Czech"
msgstr "Ceh"
-#: ../../keyboard.pm_.c:91 ../../keyboard.pm_.c:104 ../../keyboard.pm_.c:119
+#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:135
msgid "German"
msgstr "German"
-#: ../../keyboard.pm_.c:92 ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:106
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:93 ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:107 ../../keyboard.pm_.c:141
msgid "Spanish"
msgstr "Spaniol"
-#: ../../keyboard.pm_.c:94 ../../keyboard.pm_.c:125
+#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:142
msgid "Finnish"
msgstr "Finlandez"
-#: ../../keyboard.pm_.c:95 ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:126
+#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:143
msgid "French"
msgstr "Francez"
-#: ../../keyboard.pm_.c:96 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:162
msgid "Norwegian"
msgstr "Norvegian"
-#: ../../keyboard.pm_.c:97
+#: ../../keyboard.pm_.c:111
msgid "Polish"
msgstr "Polonez"
-#: ../../keyboard.pm_.c:98 ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:112 ../../keyboard.pm_.c:167
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:99 ../../keyboard.pm_.c:159
+#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:176
msgid "UK keyboard"
msgstr "Tastatura UK"
-#: ../../keyboard.pm_.c:100 ../../keyboard.pm_.c:103 ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:117 ../../keyboard.pm_.c:177
msgid "US keyboard"
msgstr "Tastatura US"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:121
msgid "Armenian (old)"
msgstr "Armenian (vechi)"
-#: ../../keyboard.pm_.c:108
+#: ../../keyboard.pm_.c:122
msgid "Armenian (typewriter)"
msgstr "Armenian (ma╨inЦ de scris)"
-#: ../../keyboard.pm_.c:109
+#: ../../keyboard.pm_.c:123
msgid "Armenian (phonetic)"
msgstr "Armenian (fonetic)"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:126
+msgid "Azerbaidjani (latin)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:127
+msgid "Azerbaidjani (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:128
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:113
+#: ../../keyboard.pm_.c:129
msgid "Bulgarian"
msgstr "Bulgar"
-#: ../../keyboard.pm_.c:114
+#: ../../keyboard.pm_.c:130
msgid "Brazilian (ABNT-2)"
msgstr "Brazilian (ABNT-2)"
-#: ../../keyboard.pm_.c:115
+#: ../../keyboard.pm_.c:131
msgid "Belarusian"
msgstr "Bielorus"
-#: ../../keyboard.pm_.c:116
+#: ../../keyboard.pm_.c:132
msgid "Swiss (German layout)"
msgstr "ElveЧian (dispoziЧie germanБ)"
-#: ../../keyboard.pm_.c:117
+#: ../../keyboard.pm_.c:133
msgid "Swiss (French layout)"
msgstr "ElveЧian (dispoziЧie francezБ)"
-#: ../../keyboard.pm_.c:120
+#: ../../keyboard.pm_.c:136
msgid "German (no dead keys)"
msgstr "German (fЦra taste moarte)"
-#: ../../keyboard.pm_.c:121
+#: ../../keyboard.pm_.c:137
msgid "Danish"
msgstr "Danez"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:138
+#, fuzzy
+msgid "Dvorak (US)"
+msgstr "Dvorak"
+
+#: ../../keyboard.pm_.c:139
+#, fuzzy
+msgid "Dvorak (Norwegian)"
+msgstr "Norvegian"
+
+#: ../../keyboard.pm_.c:140
msgid "Estonian"
msgstr "Estonian"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:144
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgian (dispoziЧie \"RusЦ\")"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:145
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgian (dispoziЧie \"LatinЦ\")"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:146
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:147
msgid "Hungarian"
msgstr "Ungar"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:148
msgid "Croatian"
msgstr "Croat"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:149
msgid "Israeli"
msgstr "Izraelian"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:150
msgid "Israeli (Phonetic)"
msgstr "Izraelian (fonetic)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:151
+#, fuzzy
+msgid "Iranian"
+msgstr "Ukrainian"
+
+#: ../../keyboard.pm_.c:152
msgid "Icelandic"
msgstr "Islandez"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:153
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:154
+msgid "Japanese 106 keys"
+msgstr ""
+
+#: ../../keyboard.pm_.c:155
msgid "Latin American"
msgstr "Latin American"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:156
msgid "Dutch"
msgstr "Olandez"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:157
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanian AZERTY (vechi)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:159
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanian AZERTY (nou)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:160
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanian QWERTY"
-#: ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:161
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuanian \"fonetic\" QWERTY"
-#: ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:163
msgid "Polish (qwerty layout)"
msgstr "Polonez (dispoziЧie qwerty)"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:164
msgid "Polish (qwertz layout)"
msgstr "Polonez (dispoziЧie qwertz)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:165
msgid "Portuguese"
msgstr "Portughez"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:166
msgid "Canadian (Quebec)"
msgstr "Canadian (Quebec)"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:168
msgid "Russian (Yawerty)"
msgstr "us (Yawerty)"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:169
msgid "Swedish"
msgstr "Suedez"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:170
msgid "Slovenian"
msgstr "Sloven"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:171
msgid "Slovakian"
msgstr "Slovac"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:172
msgid "Thai keyboard"
msgstr "TastaturЦ Thai"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:173
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradiЧional model \"F\")"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:174
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:175
msgid "Ukrainian"
msgstr "Ukrainian"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:178
msgid "US keyboard (international)"
msgstr "TastaturЦ US (internaЧional)"
-#: ../../keyboard.pm_.c:162
+#: ../../keyboard.pm_.c:179
+#, fuzzy
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "Lituanian QWERTY"
+
+#: ../../keyboard.pm_.c:180
msgid "Yugoslavian (latin layout)"
msgstr "Iugoslav (dispoziЧie latinБ)"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is then suggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-# When possible cp437 accentuated letters can be used too.
-#
-#: ../../lilo.pm_.c:176
-#, c-format
+#: ../../mouse.pm_.c:25
+msgid "Sun - Mouse"
+msgstr "Mouse - Sun"
+
+#: ../../mouse.pm_.c:31
+msgid "Standard"
+msgstr ""
+
+#: ../../mouse.pm_.c:32
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
+
+#: ../../mouse.pm_.c:33 ../../mouse.pm_.c:51
+msgid "Microsoft IntelliMouse"
+msgstr "Microsoft IntelliMouse"
+
+#: ../../mouse.pm_.c:34
+msgid "GlidePoint"
+msgstr "GlidePoint"
+
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+msgid "Kensington Thinking Mouse"
+msgstr "Kensington Thinking Mouse"
+
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+msgid "Genius NetMouse"
+msgstr "Genius NetMouse"
+
+#: ../../mouse.pm_.c:38
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
+
+#: ../../mouse.pm_.c:43
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../mouse.pm_.c:44
+#, fuzzy
+msgid "Wheel"
+msgstr "nivel"
+
+#: ../../mouse.pm_.c:47
+msgid "serial"
+msgstr "serie"
+
+#: ../../mouse.pm_.c:49
+msgid "Generic 2 Button Mouse"
+msgstr "Mouse generic cu 2 butoane"
+
+#: ../../mouse.pm_.c:50
+msgid "Generic 3 Button Mouse"
+msgstr "Mouse generic cu 3 butoane"
+
+#: ../../mouse.pm_.c:52
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm_.c:53
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm_.c:55
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm_.c:56
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
+
+#: ../../mouse.pm_.c:58
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm_.c:59
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm_.c:60
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serie, tip vechi C7)"
+
+#: ../../mouse.pm_.c:64
+#, fuzzy
+msgid "busmouse"
+msgstr "FЦrЦ mouse"
+
+#: ../../mouse.pm_.c:66
+msgid "2 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:67
+msgid "3 buttons"
+msgstr ""
+
+#: ../../mouse.pm_.c:70
+msgid "none"
+msgstr "nici unul"
+
+#: ../../mouse.pm_.c:72
+msgid "No mouse"
+msgstr "FЦrЦ mouse"
+
+#: ../../my_gtk.pm_.c:243
+msgid "Next ->"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:486
+msgid "Is this correct?"
+msgstr "E corect ?"
+
+#: ../../netconnect.pm_.c:93
+#, fuzzy
+msgid "Internet configuration"
+msgstr "ConfiguraЧie proxy"
+
+#: ../../netconnect.pm_.c:94
+#, fuzzy
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "DoriЧi sЦ testaЧi configuraЧia ?"
+
+#: ../../netconnect.pm_.c:101
+#, fuzzy
+msgid "Testing your connection..."
+msgstr "ConfiguraЧie reЧea"
+
+#: ../../netconnect.pm_.c:106
+#, fuzzy
+msgid "The system is now connected to Internet."
+msgstr "Pe ce disc doriЧi sЦ schimbaЧi ?"
+
+#: ../../netconnect.pm_.c:107
+#, fuzzy
+msgid ""
+"The system doesn't seem to be connected to internet.\n"
+"Try to reconfigure your connection."
+msgstr "Nume de conexiune"
+
+#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
+#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
+#: ../../netconnect.pm_.c:256
+#, fuzzy
+msgid "ISDN Configuration"
+msgstr "ConfiguraЧie"
+
+#: ../../netconnect.pm_.c:141
+msgid ""
+"Select your provider.\n"
+" If it's not in the list, choose Unlisted"
+msgstr ""
+
+#: ../../netconnect.pm_.c:158
+#, fuzzy
+msgid "Connection Configuration"
+msgstr "ConfiguraЧie proxy"
+
+#: ../../netconnect.pm_.c:159
+msgid "Please fill or check the field below"
+msgstr ""
+
+#: ../../netconnect.pm_.c:161
+msgid "Card IRQ"
+msgstr ""
+
+#: ../../netconnect.pm_.c:162
+msgid "Card mem (DMA)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:163
+msgid "Card IO"
+msgstr ""
+
+#: ../../netconnect.pm_.c:164
+msgid "Card IO_0"
+msgstr ""
+
+#: ../../netconnect.pm_.c:165
+msgid "Card IO_1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:166
+msgid "Your personal phone number"
+msgstr ""
+
+#: ../../netconnect.pm_.c:168
+msgid "Provider name (ex provider.net)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:169
+#, fuzzy
+msgid "Provider phone number"
+msgstr "NumЦr de telefon"
+
+#: ../../netconnect.pm_.c:170
+msgid "Provider dns 1"
+msgstr ""
+
+#: ../../netconnect.pm_.c:171
+msgid "Provider dns 2"
+msgstr ""
+
+#: ../../netconnect.pm_.c:172
+#, fuzzy
+msgid "Dialing mode"
+msgstr "Nume de domeniu"
+
+#: ../../netconnect.pm_.c:174
+#, fuzzy
+msgid "Account Login (user name)"
+msgstr "Punct de montaj"
+
+#: ../../netconnect.pm_.c:175
+#, fuzzy
+msgid "Account Password"
+msgstr "Parola"
+
+#: ../../netconnect.pm_.c:176
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Parola"
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe"
+msgstr ""
+
+#: ../../netconnect.pm_.c:208
+msgid "Europe (EDSS1)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:210
+#, fuzzy
+msgid "Rest of the world"
+msgstr "Test de configuraЧie"
+
+#: ../../netconnect.pm_.c:210
+msgid "Rest of the world - no D-Channel (leased lines)"
+msgstr ""
+
+#: ../../netconnect.pm_.c:214
+#, fuzzy
+msgid "Which protocol do you want to use ?"
+msgstr "Ce tip de partiЧie doriЧi?"
+
+#: ../../netconnect.pm_.c:224
+#, fuzzy
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:226
+#, fuzzy
+msgid "PCI"
+msgstr "PCMCIA"
+
+#: ../../netconnect.pm_.c:228
+msgid "I don't know"
+msgstr ""
+
+#: ../../netconnect.pm_.c:233
+#, fuzzy
+msgid "What kind of card do you have?"
+msgstr "Ce tip de imprimanta aveЧi?"
+
+#: ../../netconnect.pm_.c:239
+#, fuzzy
+msgid "Continue"
+msgstr "ContinuaЧi totu╨i?"
+
+#: ../../netconnect.pm_.c:241
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:245
msgid ""
-"Welcome to LILO the operating system chooser!\n"
"\n"
-"To list the possible choices, press <TAB>.\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"To load one of them, write its name and press <ENTER> or wait %d seconds for "
-"default boot.\n"
+"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:257
+#, fuzzy
+msgid "Which is your ISDN card ?"
+msgstr "Care e zona dumneavoastrЦ orarЦ?"
+
+#: ../../netconnect.pm_.c:281
+msgid "I have found an ISDN Card:\n"
+msgstr ""
+
+#: ../../netconnect.pm_.c:287
+msgid ""
+"I have detected an ISDN PCI Card, but I don't know the type. Please select "
+"one PCI card on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:299
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr ""
+
+#: ../../netconnect.pm_.c:331
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
+msgstr ""
+
+#: ../../netconnect.pm_.c:335 ../../standalone/drakgw_.c:222
+#, fuzzy
+msgid "Choose the network interface"
+msgstr "AlegeЧi noua mЦrime"
+
+#: ../../netconnect.pm_.c:336
+#, fuzzy
+msgid ""
+"Please choose which network adapter you want to use to connect to Internet"
+msgstr "Pe ce port serie este conectat mouse-ul?"
+
+#: ../../netconnect.pm_.c:351 ../../netconnect.pm_.c:623
+#: ../../netconnect.pm_.c:754 ../../standalone/drakgw_.c:217
+msgid "Network interface"
+msgstr ""
+
+#: ../../netconnect.pm_.c:352
+msgid ""
"\n"
+"Do you agree?"
msgstr ""
-"Bun venit la gestionarul de sisteme de operare LILO!\n"
-"Pentru a lista posibilitЦЧile, apЦsaЧi <TAB>.\n"
+
+#: ../../netconnect.pm_.c:352
+#, fuzzy
+msgid "I'm about to restart the network device:\n"
+msgstr "DoriЧi sЦ testaЧi configuraЧia ?"
+
+#: ../../netconnect.pm_.c:468
+#, fuzzy
+msgid "ADSL configuration"
+msgstr "ConfiguraЧie"
+
+#: ../../netconnect.pm_.c:469
+#, fuzzy
+msgid "Do you want to start your connection at boot?"
+msgstr "Doriti sЦ folosiЧi aboot?"
+
+#: ../../netconnect.pm_.c:529
+msgid "Try to find a modem?"
+msgstr "SЦ caut un modem?"
+
+#: ../../netconnect.pm_.c:539
+msgid "Please choose which serial port your modem is connected to."
+msgstr "Pe ce port serial este conectat modemul dumneavoastrЦ?"
+
+#: ../../netconnect.pm_.c:544
+msgid "Dialup options"
+msgstr "OpЧuni de telefonie"
+
+#: ../../netconnect.pm_.c:545
+msgid "Connection name"
+msgstr "Nume de conexiune"
+
+#: ../../netconnect.pm_.c:546
+#, fuzzy
+msgid "Phone number"
+msgstr "NumЦr de telefon"
+
+#: ../../netconnect.pm_.c:547
+msgid "Login ID"
+msgstr "ID de login"
+
+#: ../../netconnect.pm_.c:549
+msgid "Authentication"
+msgstr "Autentificare"
+
+#: ../../netconnect.pm_.c:549
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../netconnect.pm_.c:549
+msgid "Script-based"
+msgstr "Bazat-pe-un-script"
+
+#: ../../netconnect.pm_.c:549
+msgid "Terminal-based"
+msgstr "Bazat-pe-un-terminal"
+
+#: ../../netconnect.pm_.c:550
+#, fuzzy
+msgid "Domain name"
+msgstr "Nume de conexiune"
+
+#: ../../netconnect.pm_.c:552
+msgid "First DNS Server"
+msgstr "Primul server DNS"
+
+#: ../../netconnect.pm_.c:553
+msgid "Second DNS Server"
+msgstr "Al doilea server DNS"
+
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid ""
"\n"
-"Pentru a lansa unul dintre ele, scrieЧii numele ╨i apЦsaЧi <ENTER> sau\n"
-"a╨teptaЧi %d secunde pentru demararea din oficiu.\n"
+"You can connect to Internet or reconfigure your connection."
+msgstr "Nume de conexiune"
+
+#: ../../netconnect.pm_.c:582 ../../netconnect.pm_.c:586
+#, fuzzy
+msgid ""
"\n"
+"You can reconfigure your connection."
+msgstr "ConfiguraЧie reЧea"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../lilo.pm_.c:431
-msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
+#: ../../netconnect.pm_.c:582
+#, fuzzy
+msgid "You are not currently connected to Internet."
+msgstr "Pe ce disc doriЧi sЦ schimbaЧi ?"
-#: ../../lilo.pm_.c:432
-#, c-format
-msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "FolosiЧi tastele %c ╨i %c pentru selectarea intrЦrii puse Нn evidenЧЦ."
+#: ../../netconnect.pm_.c:586
+msgid ""
+"\n"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../lilo.pm_.c:433
-msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "ApЦsaЧi enter pentru a demara OS-ul selectat, 'e' pentru a edita"
+#: ../../netconnect.pm_.c:586
+#, fuzzy
+msgid "You are currently connected to internet."
+msgstr "Pe ce disc doriЧi sЦ schimbaЧi ?"
-#: ../../lilo.pm_.c:434
-msgid "commands before booting, or 'c' for a command-line."
-msgstr "comandele Нnainte de a demara, sau 'c' pentru linia de comandЦ."
+#: ../../netconnect.pm_.c:590
+#, fuzzy
+msgid "Connect to Internet"
+msgstr "Nume de conexiune"
-#: ../../lilo.pm_.c:435
-#, c-format
-msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Intrarea selectatЦ va demara dupЦ %d secunde"
+#: ../../netconnect.pm_.c:592
+#, fuzzy
+msgid "Disconnect from Internet"
+msgstr "Nume de conexiune"
-#: ../../lilo.pm_.c:439
-msgid "not enough room in /boot"
-msgstr "nu e destul spaЧiu Нn /boot"
+#: ../../netconnect.pm_.c:594
+#, fuzzy
+msgid "Configure network connection (LAN or Internet)"
+msgstr "ConfiguraЧie reЧea"
-#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../lilo.pm_.c:518
-msgid "Desktop"
-msgstr "Desktop"
+#: ../../netconnect.pm_.c:597
+#, fuzzy
+msgid "Internet connection & configuration"
+msgstr "SelectaЧi Conexiunea de imprimantЦ"
-#: ../../lilo.pm_.c:518
-msgid "Start Menu"
-msgstr "Meniu de Start"
+#: ../../netconnect.pm_.c:624 ../../netconnect.pm_.c:755
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
-#: ../../mouse.pm_.c:21
-msgid "Sun - Mouse"
-msgstr "Mouse - Sun"
+#: ../../netconnect.pm_.c:641
+#, fuzzy
+msgid "Configure a normal modem connection"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:23
-msgid "Apple ADB Mouse"
-msgstr "Mouse Apple ADB"
+#: ../../netconnect.pm_.c:661
+#, fuzzy
+msgid "Configure an ISDN connection"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:24
-msgid "Apple ADB Mouse (2 Buttons)"
-msgstr "Mouse Apple ADB (2 Butoane)"
+#: ../../netconnect.pm_.c:666
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../mouse.pm_.c:25
-msgid "Apple ADB Mouse (3+ Buttons)"
-msgstr "Mouse Apple ADB (3+ Butoane)"
+#: ../../netconnect.pm_.c:668
+#, fuzzy
+msgid "External ISDN modem"
+msgstr "Expert"
-#: ../../mouse.pm_.c:26
-msgid "Apple USB Mouse"
-msgstr "Mouse Apple USB"
+#: ../../netconnect.pm_.c:671 ../../netconnect.pm_.c:705
+#: ../../netconnect.pm_.c:717 ../../netconnect.pm_.c:741
+#: ../../netconnect.pm_.c:786
+#, fuzzy
+msgid "Connect to the Internet"
+msgstr "Nume de conexiune"
-#: ../../mouse.pm_.c:27
-msgid "Apple USB Mouse (2 Buttons)"
-msgstr "Mouse Apple USB (2 Butoane)"
+#: ../../netconnect.pm_.c:672
+#, fuzzy
+msgid "What kind is your ISDN connection?"
+msgstr "La ce port serial este conectat mouse-ul?"
-#: ../../mouse.pm_.c:28
-msgid "Apple USB Mouse (3+ Buttons)"
-msgstr "Mouse Apple USB (3+ Butoane)"
+#: ../../netconnect.pm_.c:691
+#, fuzzy
+msgid "Configure a DSL (or ADSL) connection"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:30
-msgid "Generic Mouse (PS/2)"
-msgstr "Mouse PS/2 generic"
+#: ../../netconnect.pm_.c:700
+#, fuzzy
+msgid "France"
+msgstr "AnuleazЦ"
-#: ../../mouse.pm_.c:31
-msgid "Logitech MouseMan/FirstMouse (ps/2)"
-msgstr "Logitech MouseMan/FirstMouse (ps/2)"
+#: ../../netconnect.pm_.c:702
+msgid "Other countries"
+msgstr ""
-#: ../../mouse.pm_.c:32
-msgid "Generic 3 Button Mouse (PS/2)"
-msgstr "Mouse generic PS/2 cu 3 butoane"
+#: ../../netconnect.pm_.c:706
+msgid "In which country are you located ?"
+msgstr ""
-#: ../../mouse.pm_.c:33
-msgid "ALPS GlidePoint (PS/2)"
-msgstr "ALPS GlidePoint (PS/2)"
+#: ../../netconnect.pm_.c:712
+msgid "Alcatel modem"
+msgstr ""
-#: ../../mouse.pm_.c:34
-msgid "Logitech MouseMan+/FirstMouse+ (PS/2)"
-msgstr "Logitech MouseMan+/FirstMouse+ (PS/2)"
+#: ../../netconnect.pm_.c:714
+#, fuzzy
+msgid "ECI modem"
+msgstr "Expert"
-#: ../../mouse.pm_.c:35
-msgid "Kensington Thinking Mouse (PS/2)"
-msgstr "Kensington Thinking Mouse (PS/2)"
+#: ../../netconnect.pm_.c:718
+msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+msgstr ""
-#: ../../mouse.pm_.c:36
-msgid "ASCII MieMouse (PS/2)"
-msgstr "ASCII MieMouse (PS/2)"
+#: ../../netconnect.pm_.c:736
+msgid "use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:37
-msgid "Genius NetMouse (PS/2)"
-msgstr "Genius NetMouse (PS/2)"
+#: ../../netconnect.pm_.c:738
+msgid "don't use pppoe"
+msgstr ""
-#: ../../mouse.pm_.c:38
-msgid "Genius NetMouse Pro (PS/2)"
-msgstr "Genius NetMouse Pro (PS/2)"
+#: ../../netconnect.pm_.c:742
+msgid ""
+"The most common way to connect with adsl is dhcp + pppoe.\n"
+"However, some connections only use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../mouse.pm_.c:39
-msgid "Genius NetScroll (PS/2)"
-msgstr "Genius NetScroll (PS/2)"
+#: ../../netconnect.pm_.c:765
+#, fuzzy
+msgid "Configure a cable connection"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:40
-msgid "Microsoft IntelliMouse (PS/2)"
-msgstr "Microsoft IntelliMouse (PS/2)"
+#: ../../netconnect.pm_.c:787
+#, fuzzy
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpd"
+msgstr "Ce tip de partiЧie doriЧi?"
-#: ../../mouse.pm_.c:41
-msgid "ATI Bus Mouse"
-msgstr "Mouse ATI Bus"
+#: ../../netconnect.pm_.c:800
+#, fuzzy
+msgid "Disable Internet Connection"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:42
-msgid "Microsoft Bus Mouse"
-msgstr "Mouse Microsoft Bus"
+#: ../../netconnect.pm_.c:811
+#, fuzzy
+msgid "Configure local network"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:43
-msgid "Logitech Bus Mouse"
-msgstr "Mouse Logitech Bus"
+#: ../../netconnect.pm_.c:815
+#, fuzzy
+msgid "Network configuration"
+msgstr "ConfiguraЧia reЧelei"
-#: ../../mouse.pm_.c:44
-msgid "USB Mouse"
-msgstr "Mouse USB"
+#: ../../netconnect.pm_.c:816
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "DoriЧi sЦ testaЧi configuraЧia ?"
-#: ../../mouse.pm_.c:45
-msgid "USB Mouse (3 buttons or more)"
-msgstr "Mouse USB (3 butoane sau mai multe)"
+#: ../../netconnect.pm_.c:824
+#, fuzzy
+msgid "Disable networking"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:47
-msgid "No Mouse"
-msgstr "FЦrЦ mouse"
+#: ../../netconnect.pm_.c:834
+#, fuzzy
+msgid "Configure the Internet connection / Configure local Network"
+msgstr "Nume de conexiune"
-#: ../../mouse.pm_.c:48
-msgid "Microsoft Rev 2.1A or higher (serial)"
-msgstr "Microsoft Rev 2.1A sau mai mult (serie)"
+#: ../../netconnect.pm_.c:835
+#, fuzzy
+msgid ""
+"Local networking has already been configured.\n"
+"Do you want to:"
+msgstr "ReЧeaua LAN a fost deja configuratЦ. DoriЧi sЦ :"
-#: ../../mouse.pm_.c:49
-msgid "Logitech CC Series (serial)"
-msgstr "Logitech CC Series (serie)"
+#: ../../netconnect.pm_.c:836
+#, fuzzy
+msgid "How do you want to connect to the Internet?"
+msgstr "Pe ce disc doriЧi sЦ schimbaЧi ?"
-#: ../../mouse.pm_.c:50
-msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-msgstr "Logitech MouseMan+/FirstMouse+ (serie)"
+#: ../../netconnect.pm_.c:858
+msgid "Network Configuration"
+msgstr "ConfiguraЧia reЧelei"
-#: ../../mouse.pm_.c:51
-msgid "ASCII MieMouse (serial)"
-msgstr "ASCII MieMouse (serie)"
+#: ../../netconnect.pm_.c:859
+msgid ""
+"Now that your Internet connection is configured,\n"
+"your computer can be configured to share its Internet connection.\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?\n"
+msgstr ""
-#: ../../mouse.pm_.c:52
-msgid "Genius NetMouse (serial)"
-msgstr "Genius NetMouse (serie)"
+#: ../../network.pm_.c:253
+msgid "no network card found"
+msgstr "n'am gЦsit nici o carte de reЧea"
-#: ../../mouse.pm_.c:53
-msgid "Microsoft IntelliMouse (serial)"
-msgstr "Microsoft IntelliMouse (serie)"
+#: ../../network.pm_.c:273 ../../network.pm_.c:340
+msgid "Configuring network"
+msgstr "ConfiguraЧie reЧea"
-#: ../../mouse.pm_.c:54
-msgid "MM Series (serial)"
-msgstr "MM Series (serie)"
+#: ../../network.pm_.c:274
+#, fuzzy
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
+msgstr ""
+"VЦ rog intraЧi numele calculatorului.\n"
+"Numele calculatorului ar trebui sЦ fie un nume Нntreg-calificat,\n"
+"ca de exemplu ``calculatorulmeu.laboratorulmeu.Нntreprindereamea.com''.\n"
+"PuteЧi de asemenea intra adresa IP a pasarelei dacЦ aveЧi una"
-#: ../../mouse.pm_.c:55
-msgid "MM HitTablet (serial)"
-msgstr "MM HitTablet (serie)"
+#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#, fuzzy
+msgid "Host name"
+msgstr "Numele calculatorului:"
-#: ../../mouse.pm_.c:56
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serie, tip vechi C7)"
+#: ../../network.pm_.c:297
+msgid ""
+"WARNING: This device has been previously configured to connect to the "
+"Internet.\n"
+"Simply press OK to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
+msgstr ""
-#: ../../mouse.pm_.c:57
-msgid "Logitech MouseMan/FirstMouse (serial)"
-msgstr "Logitech MouseMan/FirstMouse (serie)"
+#: ../../network.pm_.c:302
+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 ""
+"VЦ rog intraЧi configuraЧia IP pentru acest calculator.\n"
+"Fiecare rubrica va trebui sa fie completatЦ ca o adresЦ IP Нn format\n"
+"zecimal-punctat (de exemplu 192.168.1.55)."
-#: ../../mouse.pm_.c:58
-msgid "Generic Mouse (serial)"
-msgstr "Mouse serie generic"
+#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#, c-format
+msgid "Configuring network device %s"
+msgstr "ConfiguraЧia cЦrЧii de reЧea %s"
-#: ../../mouse.pm_.c:59
-msgid "Microsoft compatible (serial)"
-msgstr "Mouse Microsoft compatibil (serie)"
+#: ../../network.pm_.c:314
+msgid "Automatic IP"
+msgstr "IP automat"
-#: ../../mouse.pm_.c:60
-msgid "Generic 3 Button Mouse (serial)"
-msgstr "Mouse serie generic cu 3 butoane"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "IP address"
+msgstr "AdresЦ IP"
-#: ../../mouse.pm_.c:61
-msgid "Mouse Systems (serial)"
-msgstr "Mouse Systems (serie)"
+#: ../../network.pm_.c:314
+#, fuzzy
+msgid "Netmask"
+msgstr "MascЦ de reЧea:"
-#: ../../my_gtk.pm_.c:459
-msgid "Is this correct?"
-msgstr "E corect ?"
+#: ../../network.pm_.c:315
+msgid "(bootp/dhcp)"
+msgstr "(bootp/dhcp)"
+
+#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
+msgid "IP address should be in format 1.2.3.4"
+msgstr "Adresa IP ar trebui sЦ fie Нn formatul 1.2.3.4"
+
+#: ../../network.pm_.c:341
+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 ""
+"VЦ rog intraЧi numele calculatorului.\n"
+"Numele calculatorului ar trebui sЦ fie un nume Нntreg-calificat,\n"
+"ca de exemplu ``calculatorulmeu.laboratorulmeu.Нntreprindereamea.com''.\n"
+"PuteЧi de asemenea intra adresa IP a pasarelei dacЦ aveЧi una"
+
+#: ../../network.pm_.c:346
+#, fuzzy
+msgid "DNS server"
+msgstr "Server DNS:"
+
+#: ../../network.pm_.c:347
+#, fuzzy
+msgid "Gateway"
+msgstr "PasarelЦ"
-#: ../../partition_table.pm_.c:528
+#: ../../network.pm_.c:348
+#, fuzzy
+msgid "Gateway device"
+msgstr "Periferic pasarelЦ:"
+
+#: ../../network.pm_.c:358
+#, fuzzy
+msgid "Proxies configuration"
+msgstr "ConfiguraЧie post-install"
+
+#: ../../network.pm_.c:359
+msgid "HTTP proxy"
+msgstr "HTTP proxy"
+
+#: ../../network.pm_.c:360
+msgid "FTP proxy"
+msgstr "FTP proxy"
+
+#: ../../network.pm_.c:366
+msgid "Proxy should be http://..."
+msgstr "Proxy-ul ar trebui sЦ fie http://..."
+
+#: ../../network.pm_.c:367
+msgid "Proxy should be ftp://..."
+msgstr "Proxy-ul ar trebui sЦ fie ftp://..."
+
+#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "PartiЧiile extended nu sunt suportatet pe aceastЦ platformЦ "
-#: ../../partition_table.pm_.c:546
+#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -4049,21 +5242,21 @@ msgstr ""
"Singura soluЧie e sЦ deplasaЧi partiЧia principalЦ pentru a avea gaura "
"lНngЦpartiЧia extinsЦ"
-#: ../../partition_table.pm_.c:635
+#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "Eroare la citirea fi╨ierului %s"
-#: ../../partition_table.pm_.c:642
+#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurarea din fi╨ierul %s a e╨uat: %s"
-#: ../../partition_table.pm_.c:644
+#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Backup defectuos"
-#: ../../partition_table.pm_.c:665
+#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "Eroare la scrierea Нn fi╨ierul %s"
@@ -4097,42 +5290,56 @@ msgstr "Interesant"
msgid "maybe"
msgstr "poate"
-#: ../../pkgs.pm_.c:33
+#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (important)"
-#: ../../pkgs.pm_.c:34
+#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (foarte simpatic)"
-#: ../../pkgs.pm_.c:35
+#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (simpatic)"
-#: ../../placeholder.pm_.c:5
-msgid "Show less"
-msgstr "Afi╨aЧi mai puЧin"
-
-#: ../../placeholder.pm_.c:6
-msgid "Show more"
-msgstr "Afi╨aЧi mai mult"
-
-#: ../../printer.pm_.c:244
+#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "ImprimantЦ localЦ"
-#: ../../printer.pm_.c:245
-msgid "Remote lpd"
+#: ../../printer.pm_.c:20
+#, fuzzy
+msgid "Remote printer"
+msgstr "OpЧiuni pentru imprimanta lpd distantЦ"
+
+#: ../../printer.pm_.c:21
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "CoadЦ distantЦ:"
+
+#: ../../printer.pm_.c:22
+#, fuzzy
+msgid "Remote lpd server"
msgstr "lpd distant:"
-#: ../../printer.pm_.c:246
+#: ../../printer.pm_.c:23
+#, fuzzy
+msgid "Network printer (socket)"
+msgstr "OpЧiunea imprimantei NetWare"
+
+#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:247
+#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"
+#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
+#: ../../printerdrake.pm_.c:156
+#, fuzzy
+msgid "Printer Device URI"
+msgstr "Periferic imprimantЦ:"
+
#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "DetecЧia perifericelor..."
@@ -4146,11 +5353,11 @@ msgstr "Test porturi"
msgid "A printer, model \"%s\", has been detected on "
msgstr "O imprimantЦ, modelul \"%s\", a fost detactЦ Нn"
-#: ../../printerdrake.pm_.c:44
+#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Periferic local de imprimantЦ"
-#: ../../printerdrake.pm_.c:45
+#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -4158,15 +5365,15 @@ msgstr ""
"La ce periferic aЧi conectat imprimanta \n"
"(notaЧi cЦ /dev/lp0 e echivalent cu LPT1:)?\n"
-#: ../../printerdrake.pm_.c:47
+#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Periferic imprimantЦ:"
-#: ../../printerdrake.pm_.c:62
+#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "OpЧiuni pentru imprimanta lpd distantЦ"
-#: ../../printerdrake.pm_.c:63
+#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -4175,19 +5382,19 @@ msgstr ""
"pentru a folosi a coadЦ de impresie lpd distantЦ, aveЧi nevoie sЦ furnizaЧi\n"
"numele calculatorului serverului de imprimantЦ Цi lista de a╨teptare"
-#: ../../printerdrake.pm_.c:66
+#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Numele calculator distant"
-#: ../../printerdrake.pm_.c:67
+#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "CoadЦ distantЦ:"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "OpЧiuni pentru imprimanta SMB/Windows 95/NT"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -4201,27 +5408,27 @@ msgstr ""
"numele de access ╨i numele de utilizator, parola ╨i informaЧia grupului de "
"lucru."
-#: ../../printerdrake.pm_.c:81
+#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "Numele serverului SMB"
-#: ../../printerdrake.pm_.c:82
+#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "Adresa IP a serverului SMB"
-#: ../../printerdrake.pm_.c:83
+#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Numele de access"
-#: ../../printerdrake.pm_.c:86
+#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Numele de grup"
-#: ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "OpЧiunea imprimantei NetWare"
-#: ../../printerdrake.pm_.c:103
+#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -4233,130 +5440,155 @@ msgstr ""
"cНt ╨i numele listei de a╨teptare ╨i eventual utilizatorii care vor avea\n"
"access ╨i parolele."
-#: ../../printerdrake.pm_.c:107
+#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Server de imprimantЦ"
-#: ../../printerdrake.pm_.c:108
+#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Lista de a╨teptare a imprimantei"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:138
+#, fuzzy
+msgid "Socket Printer Options"
+msgstr "OpЧiunea imprimantei NetWare"
+
+#: ../../printerdrake.pm_.c:139
+msgid ""
+"To print to a socket printer, you need to provide the\n"
+"hostname of the printer and optionally the port number."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:141
+#, fuzzy
+msgid "Printer Hostname"
+msgstr "OpЧiuni imprimantЦ"
+
+#: ../../printerdrake.pm_.c:142
+#, fuzzy
+msgid "Port"
+msgstr "Slab"
+
+#: ../../printerdrake.pm_.c:155
+msgid "You can specify directly the URI to access the printer with CUPS."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+msgid "What type of printer do you have?"
+msgstr "Ce tip de imprimanta aveЧi?"
+
+#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+msgid "Do you want to test printing?"
+msgstr "DoriЧi sЦ testaЧi imprimarea ?"
+
+#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+msgid "Printing test page(s)..."
+msgstr "Imprimarea pagin(ei/lor) de test"
+
+#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Printing status:\n"
+"%s\n"
+"\n"
+"Does it work properly?"
+msgstr ""
+"Pagin(a/ile) de test a/au fost trimisЦ la procesul de impresie.\n"
+"Aceasta va dura puЧin timp Нnaintea pornirii imprimЦrii\n"
+"Starea ImprimЦrii:\n"
+"%s\n"
+"\n"
+"FuncЧioneazЦ cum trebuie?"
+
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+msgid ""
+"Test page(s) have been sent to the printer daemon.\n"
+"This may take a little time before printer start.\n"
+"Does it work properly?"
+msgstr ""
+"Pagin(a/ile) de test a/au fost trimisЦ la procesul de impresie.\n"
+"Aceasta va dura puЧin timp Нnaintea pornirii imprimЦrii\n"
+"FuncЧioneazЦ cum trebuie?"
+
+#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Da, imprimЦ o paginЦ de test ASCII"
-#: ../../printerdrake.pm_.c:122
+#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Da, imprimЦ o pagina de test Postscript"
-#: ../../printerdrake.pm_.c:123
+#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Da, imprimЦ amНndouЦ paginile de test"
-#: ../../printerdrake.pm_.c:130
+#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "ConfiguraЧia imprimantei"
-#: ../../printerdrake.pm_.c:131
-msgid "What type of printer do you have?"
-msgstr "Ce tip de imprimanta aveЧi?"
-
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "OpЧiuni imprimantЦ"
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "MЦrimea hНrtiei"
-#: ../../printerdrake.pm_.c:165
+#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "Ejectarea paginei dupЦ lucru?"
-#: ../../printerdrake.pm_.c:170
+#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "OpЧiuni pilot Uniprint"
-#: ../../printerdrake.pm_.c:171
+#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "OpЧiuni pentru culori:"
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "ImprimЦ text ca Postscript"
-#: ../../printerdrake.pm_.c:174
+#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "incerseazЦ ordinea paginilor"
-#: ../../printerdrake.pm_.c:176
+#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "ReparЦ efectul de scarЦ al textului"
-#: ../../printerdrake.pm_.c:179
+#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "NumЦr de pagini"
-#: ../../printerdrake.pm_.c:180
+#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Marginile Dreapta/StНnga Нn puncte (1/72 inci)"
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Marginile Sus/Jos Нn puncte (1/72 inci)"
-#: ../../printerdrake.pm_.c:184
+#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "OpЧiuni Gostscript suplimentare"
-#: ../../printerdrake.pm_.c:187
+#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "OpЧinuni Text suplimentare"
-#: ../../printerdrake.pm_.c:198
-msgid "Do you want to test printing?"
-msgstr "DoriЧi sЦ testaЧi imprimarea ?"
-
-#: ../../printerdrake.pm_.c:210
-msgid "Printing test page(s)..."
-msgstr "Imprimarea pagin(ei/lor) de test"
-
-#: ../../printerdrake.pm_.c:218
-#, c-format
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Printing status:\n"
-"%s\n"
-"\n"
-"Does it work properly?"
-msgstr ""
-"Pagin(a/ile) de test a/au fost trimisЦ la procesul de impresie.\n"
-"Aceasta va dura puЧin timp Нnaintea pornirii imprimЦrii\n"
-"Starea ImprimЦrii:\n"
-"%s\n"
-"\n"
-"FuncЧioneazЦ cum trebuie?"
-
-#: ../../printerdrake.pm_.c:222
-msgid ""
-"Test page(s) have been sent to the printer daemon.\n"
-"This may take a little time before printer start.\n"
-"Does it work properly?"
-msgstr ""
-"Pagin(a/ile) de test a/au fost trimisЦ la procesul de impresie.\n"
-"Aceasta va dura puЧin timp Нnaintea pornirii imprimЦrii\n"
-"FuncЧioneazЦ cum trebuie?"
-
-#: ../../printerdrake.pm_.c:238
+#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "ImprimantЦ"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "DoriЧi sЦ configuraЧi o imprimantЦ?"
-#: ../../printerdrake.pm_.c:243
+#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -4364,19 +5596,69 @@ msgstr ""
"IatЦ urmЦtoarele cozi de imprimare\n"
"PuteЧi sЦ adЦugaЧi altele sau sЦ modificaЧi cele existente."
-#: ../../printerdrake.pm_.c:266 ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:365
+#, fuzzy
+msgid "CUPS starting"
+msgstr "Estimare"
+
+#: ../../printerdrake.pm_.c:365
+msgid "Reading CUPS drivers database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:411 ../../printerdrake.pm_.c:418
msgid "Select Printer Connection"
msgstr "SelectaЧi Conexiunea de imprimantЦ"
-#: ../../printerdrake.pm_.c:267
+#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:412
msgid "How is the printer connected?"
msgstr "Cum e conectatЦ imprimanta ?"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:387
+#, fuzzy
+msgid "Select Remote Printer Connection"
+msgstr "SelectaЧi Conexiunea de imprimantЦ"
+
+#: ../../printerdrake.pm_.c:388
+msgid ""
+"With a remote CUPS server, you do not have to configure\n"
+"any printer here; printers will be automatically detected.\n"
+"In case of doubt, select \"Remote CUPS server\"."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:418
msgid "Remove queue"
msgstr "╙terge coada"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:400
+#, fuzzy
+msgid ""
+"Every printer need a name (for example lp).\n"
+"Other parameters such as the description of the printer or its location\n"
+"can be defined. What name should be used for this printer and\n"
+"how is the printer connected?"
+msgstr ""
+"Fiecare coadЦ (la care activitЦЧile de imprimare sunt trimise) are nevoie\n"
+"de un nume (adesea lp) ╨i de un directoriu de spool asociat. Ce nume\n"
+"╨i directoriu doriЧi sЦ utilizaЧi pentru aceastЦ coadЦ ╨i cum e "
+"conectatЦimprimanta?"
+
+#: ../../printerdrake.pm_.c:404
+#, fuzzy
+msgid "Name of printer"
+msgstr "ImprimantЦ localЦ"
+
+#: ../../printerdrake.pm_.c:405
+#, fuzzy
+msgid "Description"
+msgstr "SpecificaЧi opЧiunile"
+
+#: ../../printerdrake.pm_.c:406
+#, fuzzy
+msgid "Location"
+msgstr "InformaЧie"
+
+#: ../../printerdrake.pm_.c:419
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
@@ -4388,45 +5670,45 @@ msgstr ""
"╨i directoriu doriЧi sЦ utilizaЧi pentru aceastЦ coadЦ ╨i cum e "
"conectatЦimprimanta?"
-#: ../../printerdrake.pm_.c:276
+#: ../../printerdrake.pm_.c:422
msgid "Name of queue"
msgstr "Numele cozii:"
-#: ../../printerdrake.pm_.c:277
+#: ../../printerdrake.pm_.c:423
msgid "Spool directory"
msgstr "Dosar de Spool:"
-#: ../../printerdrake.pm_.c:278
+#: ../../printerdrake.pm_.c:424
msgid "Printer Connection"
msgstr "SelectaЧi Conexiunea de imprimantЦ"
-#: ../../raid.pm_.c:36
+#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nu pot adЦuga partiЧia la md%d _formatat_RAID"
-#: ../../raid.pm_.c:106
+#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "Nu pot scrie fi╨ierul $file"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid a e╨uat"
-#: ../../raid.pm_.c:131
+#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid a e╨uat (poate vЦ lipsesc raidtools?)"
-#: ../../raid.pm_.c:147
+#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nu aveЧi destule partiЧii pentru nivelul RAID %d\n"
-#: ../../services.pm_.c:14
+#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron un orar de comandЦ periodicЦ"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -4435,7 +5717,7 @@ msgstr ""
"Poate de asemenea fi folosit pentru oprirea calculatorului dacЦ bateria e\n"
"slabЦ."
-#: ../../services.pm_.c:17
+#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -4444,7 +5726,7 @@ msgstr ""
"demararea lui at ╨i lanseazЦ comenzi batch atunci cНnd media de НncЦrcare\n"
"e suficient de scЦzutЦ."
-#: ../../services.pm_.c:19
+#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -4457,7 +5739,7 @@ msgstr ""
"╨i\n"
"opЧiuni de configuraЧie mai avansate."
-#: ../../services.pm_.c:22
+#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -4468,7 +5750,7 @@ msgstr ""
"El permite de asemenea operaЧii cu mouse-ul de copiere/lipire ╨i include\n"
"suportul meniurilor contextuale Нn consolЦ."
-#: ../../services.pm_.c:25
+#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -4476,7 +5758,7 @@ msgstr ""
"Apache e un server World Wide Web. E folosit pentru a servi fi╨iere HTML\n"
"╨i CGI."
-#: ../../services.pm_.c:27
+#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -4489,7 +5771,7 @@ msgstr ""
"de servicii, incluzНnd telnet, ftp, rsh ╨i rlogin. Dezactivarea lui telnet\n"
"dezactiveazЦ toate serviciile de care e responsabil."
-#: ../../services.pm_.c:31
+#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -4499,7 +5781,7 @@ msgstr ""
"/etc/sysconfig/keyboard. Aceasta poate fi selectatЦ folosind kbdconfig.\n"
"Ar trebuie sЦ-l lЦsaЧi activat pentru majoritatea calculatoarelor."
-#: ../../services.pm_.c:34
+#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -4507,7 +5789,7 @@ msgstr ""
"lpd este procesul de imprimare necesar pentru ca lpr sЦ funcЧioneze corect.\n"
"E un server care arbitreazЦ activitatea imprimantei(lor)."
-#: ../../services.pm_.c:36
+#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -4515,7 +5797,7 @@ msgstr ""
"named (BIND) e un Server de Nume de Domeniu (DNS) care e folosit la\n"
"rezolvarea adreselor IP."
-#: ../../services.pm_.c:38
+#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -4524,7 +5806,7 @@ msgstr ""
"ReЧea\n"
"(NFS), SMB (LanManager/Windows ╨i NCP (NetWare)."
-#: ../../services.pm_.c:40
+#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -4532,7 +5814,7 @@ msgstr ""
"ActiveazЦ/DezactiveazЦ toate interfeЧele de reЧea configurate pentru fi\n"
"iniЧializate la demaraj."
-#: ../../services.pm_.c:42
+#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -4542,7 +5824,7 @@ msgstr ""
"TCP/IP. Acest serviciu furnizeazЦ funcЧionalitatea server-ului NFS, care e\n"
"configuratЦ via fi╨ierului /etc/exports."
-#: ../../services.pm_.c:45
+#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -4550,7 +5832,7 @@ msgstr ""
"NFS e un protocol popular pentru a НmpЦrЧi fi╨iere de-a lungul reЧelelor\n"
"TCP/IP. Acest serviciu furnizeazЦ funcЧionalitatea blocЦrii fi╨ierelor NFS."
-#: ../../services.pm_.c:47
+#: ../../services.pm_.c:48
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -4561,7 +5843,7 @@ msgstr ""
"laptop-uri. Nu va demara decНt dacЦ e configurat deci nu e nici o problemЦ\n"
"dacЦ e instalat pe calculatoare care nu au nevoie de acesta."
-#: ../../services.pm_.c:50
+#: ../../services.pm_.c:51
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -4573,7 +5855,7 @@ msgstr ""
"ca NFS ╨i NIS. Server-ul portmap trebuie demarat pe calculatoare care \n"
"funcЧioneazЦ ca servere pentru protocoluri care folosesc mecanismul RPC."
-#: ../../services.pm_.c:53
+#: ../../services.pm_.c:54
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -4581,7 +5863,7 @@ msgstr ""
"Postfix est un Agent de Transport de Mail (MTA), care e programul care\n"
"permite deplasarea mail-ului de la un calculator la altul."
-#: ../../services.pm_.c:55
+#: ../../services.pm_.c:56
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -4589,7 +5871,7 @@ msgstr ""
"SalveazЦ ╨i restaureazЦ entropia sistemului pentru o mai mare calitate\n"
"a generЦrii de numere aleatoare."
-#: ../../services.pm_.c:57
+#: ../../services.pm_.c:58
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -4600,7 +5882,7 @@ msgstr ""
" protocolului RIP. нn timp de RIP este folosit pentru reЧele mici,\n"
"alte protocoluri mai complexe sunt folosite pentru reЧele mai complexe."
-#: ../../services.pm_.c:60
+#: ../../services.pm_.c:61
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -4608,7 +5890,7 @@ msgstr ""
"Protocolul rstat permite utilizatorilor unei reЧele sЦ recupereze\n"
"performanЧele metrice de la orice calculator de pe reЧea."
-#: ../../services.pm_.c:62
+#: ../../services.pm_.c:63
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -4616,7 +5898,7 @@ msgstr ""
"'Protocolul rusers permite utilizatorilor unei reЧele sЦ identifice\n"
"cine e conectat la calculatoarele care au rЦspuns."
-#: ../../services.pm_.c:64
+#: ../../services.pm_.c:65
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -4625,7 +5907,7 @@ msgstr ""
"utilizatorului conectaЧi la un calculator care folose╨te procesul rwho\n"
"(similar cu finger)."
-#: ../../services.pm_.c:66
+#: ../../services.pm_.c:67
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -4634,57 +5916,204 @@ msgstr ""
"mesaje de log Нn numeroaselor fi╨iere de log ale sistemului. E o idee\n"
"bunЦ sЦ demaraЧi Нntotdeauna syslog."
-#: ../../services.pm_.c:68
+#: ../../services.pm_.c:69
msgid "This startup script try to load your modules for your usb mouse."
msgstr ""
"Acest script de demaraj НncearcЦ sЦ Нncarce modulele pentru mouse-ul\n"
"dumneavoastrЦ usb."
-#: ../../services.pm_.c:69
+#: ../../services.pm_.c:70
msgid "Starts and stops the X Font Server at boot time and shutdown."
msgstr ""
"DemareazЦ ╨i opre╨te Server-ul de caractere X la demararea ╨i\n"
"oprirea calculatorului."
-#: ../../services.pm_.c:92
+#: ../../services.pm_.c:99
msgid "Choose which services should be automatically started at boot time"
msgstr "AlegeЧi ce servici doriЧi sЦ fie lansate automat la demaraj"
-#: ../../silo.pm_.c:146
-#, c-format
+#: ../../standalone/diskdrake_.c:61
msgid ""
-"Welcome to SILO the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
+"I can't read your partition table, it's too corrupted for me :(\n"
+"I'll try to go on blanking bad partitions"
msgstr ""
-"Bun venit la gestionarul de sisteme de operare SILO!\n"
-"\n"
-"Pentru a afi╨a diferitele posibilitЦЧi, apЦsaЧi <TAB>.\n"
-"\n"
-"Pentru a demara unul dintre ele, scrieЧi-i numele ╨i apЦsaЧi <ENTER> sau\n"
-"a╨teptaЧi %d secunde pentru demararea din oficiu.\n"
-"\n"
+"Nu pot citi tabloul de partiЧii, e prea deteriorat dupЦ mine :(\n"
+"Voi Нncerca sЦ continui ╨tergНnd partiЧiile gre╨ite"
-#: ../../standalone/drakboot_.c:24
+#: ../../standalone/drakboot_.c:25
msgid "Configure LILO/GRUB"
msgstr "ConfiguraЧie LILO/GRUB"
-#: ../../standalone/drakboot_.c:25
+#: ../../standalone/drakboot_.c:26
msgid "Create a boot floppy"
msgstr "CreaЧi o dischetЦ de demaraj"
-#: ../../standalone/drakboot_.c:27
+#: ../../standalone/drakboot_.c:28
msgid "Format floppy"
msgstr "FormateazЦ dischetЦ"
-#: ../../standalone/drakboot_.c:39
+#: ../../standalone/drakboot_.c:40
msgid "Choice"
msgstr "Alegere "
+#: ../../standalone/drakboot_.c:59
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalarea lui LILO a e╨uat. UrmЦtoarea eroare a apЦrut:"
+
+#: ../../standalone/drakgw_.c:103
+msgid "Internet Connection Sharing currently enabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:104
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently enabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#, fuzzy
+msgid "disable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+msgid "dismiss"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "reconfigure"
+msgstr "ConfiguraЧi X"
+
+#: ../../standalone/drakgw_.c:122
+msgid "Internet Connection Sharing currently disabled"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:123
+msgid ""
+"The setup of Internet connection sharing has already been done.\n"
+"It's currently disabled.\n"
+"\n"
+"What would you like to do?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#, fuzzy
+msgid "enable"
+msgstr "Tabel"
+
+#: ../../standalone/drakgw_.c:141
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:151
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "SelectaЧi Conexiunea de imprimantЦ"
+
+#: ../../standalone/drakgw_.c:152
+msgid ""
+"Your computer can be configured to share its Internet connection.\n"
+"\n"
+"Note: you need a dedicated Network Adapter to set up a Local Area Network "
+"(LAN).\n"
+"\n"
+"Would you like to setup the Internet Connection Sharing?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:177
+#, fuzzy
+msgid "using module"
+msgstr "Nume de domeniu"
+
+#: ../../standalone/drakgw_.c:210
+msgid "No network adapter on your system!"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:211
+msgid ""
+"No ethernet network adapter has been detected on your system. Please run the "
+"hardware configuration tool."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:218
+msgid ""
+"There is only one configured network adapter on your system:\n"
+"\n"
+"$interface\n"
+"\n"
+"Would you like to setup your Local Area Network with that adapter?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:223
+msgid ""
+"Please choose what network adapter will be connected to your Local Area "
+"Network."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:233
+msgid ""
+"Warning, the network adapter is already configured.\n"
+"Would you like to reconfigure?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:258
+msgid "Potential LAN address conflict found in current config of $_!\n"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:268
+#, fuzzy
+msgid "Firewalling configuration detected!"
+msgstr "Citirea configuraЧiei"
+
+#: ../../standalone/drakgw_.c:269
+msgid ""
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fix after installation. Proceed?"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:282
+#, fuzzy
+msgid "Configuring..."
+msgstr "ConfiguraЧia IDE"
+
+#: ../../standalone/drakgw_.c:306
+msgid "Could not install ipchains RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:456
+msgid "Could not install dhcp RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:480
+msgid "Could not install linuxconf RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:496
+msgid "Could not install bind RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:500
+msgid "Could not install caching-nameserver RPM with urpmi."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:512
+msgid "Congratulations!"
+msgstr "FelicitЦri!"
+
+#: ../../standalone/drakgw_.c:513
+msgid ""
+"Everything has been configured.\n"
+"You may now share Internet connection with other computers on your Local "
+"Area Network, using automatic network configuration (DHCP)."
+msgstr ""
+
#: ../../standalone/draksec_.c:28
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
@@ -4748,23 +6177,36 @@ msgstr "Alegerea nivelului de securitate"
msgid "Choose the tool you want to use"
msgstr "AlegeЧi unealta pe care doriЧi sЦ o folosiЧi"
-#: ../../standalone/keyboarddrake_.c:23
-msgid "What is your keyboard layout?"
-msgstr "Care e dispoziЧia tastaturii?"
+#: ../../standalone/livedrake_.c:23
+#, fuzzy
+msgid "Change Cd-Rom"
+msgstr "AlegeЧi o altЦ rezoluЧie"
-#: ../../standalone/mousedrake_.c:25
-msgid "What is the type of your mouse?"
-msgstr "Ce tip de mouse aveЧi?"
+#: ../../standalone/livedrake_.c:24
+#, fuzzy
+msgid ""
+"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
+"If you don't have it, press Cancel to avoid live upgrade."
+msgstr ""
+"SchimbaЧi Cd-Rom-ul!\n"
+"\n"
+"VЦ rog introduceЧi Cd-Rom etichetat \"%s\" ╨i apoi apЦsaЧi Ok.\n"
+"DacЦ nu-l aveЧi, apЦsaЧi AnuleazЦ pentru a evita instalarea de pe acest "
+"Cd-Rom."
-#: ../../standalone/mousedrake_.c:30
+#: ../../standalone/livedrake_.c:34
+msgid "Unable to start live upgrade !!!\n"
+msgstr ""
+
+#: ../../standalone/mousedrake_.c:32
msgid "no serial_usb found\n"
msgstr "n'am gЦsit nici un serie_usb\n"
-#: ../../standalone/mousedrake_.c:35
+#: ../../standalone/mousedrake_.c:37
msgid "Emulate third button?"
msgstr "Emulare 3 Butoane?"
-#: ../../standalone/mousedrake_.c:39
+#: ../../standalone/mousedrake_.c:41
msgid "Which serial port is your mouse connected to?"
msgstr "La ce port serial este conectat mouse-ul?"
@@ -4977,6 +6419,818 @@ msgstr "CЦutare de foi"
msgid "Finding leaves takes some time"
msgstr "GЦsirea foilor ia ceva timp"
+# ../../share/compssUsers
+msgid "More Graphical Desktops (Gnome, IceWM)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"The K Desktop Environment, the basic graphical environment with a collection "
+"of accompanying tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Personnal Information Management"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools to create and burn CD's"
+msgstr ""
+
+#, fuzzy
+msgid "Internet Tools"
+msgstr "ConfiguraЧie proxy"
+
+#, fuzzy
+msgid "Internet"
+msgstr "Interesant"
+
+# ../../share/compssUsers
+msgid "Personnal Finance"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics programs such as The Gimp"
+msgstr ""
+
+msgid "Office"
+msgstr "Birou"
+
+# ../../share/compssUsers
+msgid "Databases clients and servers (mysql and postgresql)"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Graphics"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Video players and editors"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Amusement programs: arcade, boards, strategy, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
+"gnumeric), pdf viewers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
+"browse the Web"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Audio-related tools: mp3 or midi players, mixers, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+"transfer tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Books and Howto's on Linux and Free Software"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr ""
+
+# ../../share/compssUsers
+msgid ""
+"A graphical environment with user-friendly set of applications and desktop "
+"tools"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Video"
+msgstr "Multimedia"
+
+#, fuzzy
+msgid "KDE"
+msgstr "IDE"
+
+# ../../share/compssUsers
+msgid "Sound and video playing/editing programs"
+msgstr ""
+
+msgid "Multimedia"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Other Graphical Desktops"
+msgstr ""
+
+#, fuzzy
+msgid "Multimedia - Sound"
+msgstr "Multimedia"
+
+msgid "Gnome"
+msgstr "Gnome"
+
+msgid "Documentation"
+msgstr "DocumentaЧie"
+
+# ../../share/compssUsers
+msgid "Programs to manage your finance, such as gnucash"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Graphics Manipulation"
+msgstr ""
+
+#, fuzzy
+msgid "Games"
+msgstr "Gnome"
+
+#, fuzzy
+msgid "Multimedia - CD Burning"
+msgstr "Multimedia"
+
+# ../../share/compssUsers
+msgid "Communication facilities"
+msgstr ""
+
+# ../../share/compssUsers
+msgid "Databases"
+msgstr ""
+
+#~ msgid "Choose the size you want to install"
+#~ msgstr "AlegeЧi mЦrimea pe care vreЧi sЦ o instalaЧi"
+
+#~ msgid "Total size: "
+#~ msgstr "MБrime totalЦ: "
+
+#, fuzzy
+#~ msgid "Reconfigure local network"
+#~ msgstr "ReconfiguraЧi reЧeaua"
+
+#, fuzzy
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Nume de conexiune"
+
+#, fuzzy
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Nume de conexiune"
+
+#, fuzzy
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Nume de conexiune"
+
+#, fuzzy
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Nume de conexiune"
+
+#, fuzzy
+#~ msgid "Germany"
+#~ msgstr "German"
+
+#, fuzzy
+#~ msgid "Germany (1TR6)"
+#~ msgstr "German"
+
+#, fuzzy
+#~ msgid "What do you wish to do?"
+#~ msgstr "Ce doriЧi sЦ faceЧi ?"
+
+#, fuzzy
+#~ msgid "Install/Rescue"
+#~ msgstr "Instalare"
+
+#, fuzzy
+#~ msgid "Rescue"
+#~ msgstr "RedimensioneazЦ"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "Ce tip de partiЧie doriЧi?"
+
+#, fuzzy
+#~ msgid ""
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
+#~ msgstr ""
+#~ "AlegeЧi \"Instalare\" dacЦ nu exista alte versiuni de Linux instalate,\n"
+#~ "sau dacЦ doriЧi sЦ folosiЧi mai multe versiuni sau distribuЧii.\n"
+#~ "\n"
+#~ "AlegeЧi \"Actualizare\" dacЦ doriЧi sЦ actualizaЧi o versiune\n"
+#~ "precedentЦ Mandrake Linux:\n"
+#~ "%s or %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Selectare:\n"
+#~ "\n"
+#~ " - Automatizat: DacЦ n'aЧi mai instalat Linux niciodatЦ, alegeЧi aceasta.\n"
+#~ "NOTц:\n"
+#~ " reЧeaua nu va fi configuratЦ Нn timpul instalЦrii, folosiЧi\n"
+#~ " \"LinuxConf\" pentru a o configura dupЦ ce instalarea s'a terminat.\n"
+#~ "\n"
+#~ " - Personalizat: DacЦ sunteЧi destul de familiar cu GNU/Linux, puteЧi\n"
+#~ " atunci sЦ alegeЧi utilizarea principalЦ a calculatorului. Vezi mai jos\n"
+#~ " pentru detalii.\n"
+#~ "\n"
+#~ " - Expert: Aceasta presupune cЦ sunteЧi foarte familiar cu GNU/Linux ╨i\n"
+#~ " doriЧi sЦ faceЧi o instalare foarte personalizatЦ. Ca ╨i pentru clasa\n"
+#~ " \"Personalizat\", veЧi putea sЦ selectaЧi utilizarea sistemului\n"
+#~ " dumneavoastrЦ.\n"
+#~ " Dar vЦ rog, NU ALEGEчi ACEASTA DECнT DACц ╙TIчI CE FACEчI!.\n"
+
+#, fuzzy
+#~ msgid ""
+#~ "At this point, you may choose what partition(s) to use to install\n"
+#~ "your Linux-Mandrake system if they have been already defined (from a\n"
+#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
+#~ "cases, hard drive partitions must be defined. This operation consists of\n"
+#~ "logically dividing the computer's hard drive capacity into separate\n"
+#~ "areas for use.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you have to create new partitions, use \"Auto allocate\" to "
+#~ "automatically\n"
+#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
+#~ "by\n"
+#~ "clicking on \"hda\" for the first IDE drive,\n"
+#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Two common partition are: the root partition (/), which is the starting\n"
+#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
+#~ "all files necessary to start the operating system when the\n"
+#~ "computer is first turned on.\n"
+#~ "\n"
+#~ "\n"
+#~ "Because the effects of this process are usually irreversible, partitioning\n"
+#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
+#~ "simplifies the process so that it must not be. Consult the documentation\n"
+#~ "and take your time before proceeding.\n"
+#~ "\n"
+#~ "\n"
+#~ "You can reach any option using the keyboard: navigate through the "
+#~ "partitions\n"
+#~ "using Tab and Up/Down arrows. 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"
+#~ msgstr ""
+#~ "нn acest punct, veЧi putea alege partiЧiile pentru a instala sistemul\n"
+#~ "Linux-Mandrake dacЦ acestea au fost deja definite (dintr-o altЦ instalare\n"
+#~ "prealabilЦ a unui sistem Linux sau cu ajutorul unui program departiЧionare). "
+#~ "нn celelalte cazuri, partiЧiile vor trebui sЦ fie create.\n"
+#~ "AceastЦ operaЧie consistЦ Нn divizarea logicЦ a capacitЦЧii discului dur\n"
+#~ "Нn arii separate pentru utilizare.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ aveЧi nevoie sЦ creaЧi noi partiЧii, folosiЧi \"Auto alocare\" \n"
+#~ "pentru o creare automatЦ de partiЧii Linux. PuteЧi selecta discul pentru\n"
+#~ "partiЧionare fЦcНnd clic pe \"hda\" pentru primul disc IDE, \"hdb\" \n"
+#~ "pentru al doilea sau \"sda\" pentru primul disc SCSI ╨i a╨a mai departe.\n"
+#~ "\n"
+#~ "\n"
+#~ "DouЦ partiЧii obi╨nuite sunt: partiЧia root (/), punctul de plecare\n"
+#~ "al ierarhiei sistemului de fi╨iere ╨i /boot, care conЧine toate fi╨ierele\n"
+#~ "necesare pentru a demara sistemul de operare cНnd calculatorul e aprins.\n"
+#~ "\n"
+#~ "\n"
+#~ "Pentru cЦ efectele acestui proces sunt Нn mod uzual reversibile,\n"
+#~ "partiЧionarea poate fi intimidantЦ pentru un utilizator ne-experimentat.\n"
+#~ "De aceea DiskDrake simplificЦ pe cНt posibil acest proces. ConsultaЧi\n"
+#~ "documentaЧia ╨i nu vЦ grЦbiЧi Нnainte de a Нncepe.\n"
+#~ "\n"
+#~ "\n"
+#~ "PuteЧi accede la toate opЧiunile cu ajutorul tastaturii: navigaЧi printre\n"
+#~ "partiЧii folosind tasta Tab ╨i tastele sЦgeЧi Sus/Jos. CНnd o partiЧie\n"
+#~ "e selectatЦ, puteЧi folosi:\n"
+#~ "\n"
+#~ "- Ctrl-c pentru a crea o nouЦ partiЧie (cНnd a partiЧie goalЦ e selectatЦ)\n"
+#~ "\n"
+#~ "- Ctrl-d pentru a ╨terge o partiЧie\n"
+#~ "\n"
+#~ "- Ctrl-m pentru a crea un punct de montaj\n"
+
+#~ msgid ""
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
+#~ msgstr ""
+#~ "Toate partiЧiile care tocmai au fost definite trebuie sЦ fie formatate\n"
+#~ "Нnainte de a fi utilizate. (formatare НnsemnНnd crearea fi╨ierelor sistem).\n"
+#~ "Poate doriЧi sЦ reformataЧi partiЧii pre-existente pentru a ╨terge \n"
+#~ "informaЧiile conЧinute.\n"
+#~ "Nota: nu este necesar sЦ formataЧi partiЧii mai ales dacЦ doriЧi sЦ\n"
+#~ "conservaЧi informaЧiile ce le conЧin. PartiЧii de acest gen sunt:\n"
+#~ "/home ╨i /usr/local."
+
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Pachetele selectate sunt acum pe cale de fi instalate. AceastЦ operaЧie\n"
+#~ "ar trebui sЦ ia cНteva minute, excepЧie fЦcНnd Actualizare unei distribuЧii\n"
+#~ "precedente, caz Нn care timpul va fi lung Нnainte ca actualizarea sЦ\n"
+#~ "НnceapЦ."
+
+#, fuzzy
+#~ msgid ""
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
+#~ "\n"
+#~ "\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
+#~ msgstr ""
+#~ "DacЦ DrakX nu a reu╨it sЦ detecteze mouse-ul, sau dacЦ doriЧi sЦ verificaЧi\n"
+#~ "ceea ce a fЦcut, vi se va propune lista cu mouse-uri de mai sus.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ sunteЧi de acord cu propunerea lui DrakX, sЦriЧi la secЧiunea doritЦ\n"
+#~ "cu un simple Нn meniu din stНnga. DacЦ nu, alegeЧi tipul de mouse care\n"
+#~ "credeЧi cЦ se apropie mai mult de cel pe care-l aveЧi.\n"
+#~ "\n"
+#~ "\n"
+#~ "нn cazul unui mouse de tip serie, veЧi putea specifica portul serie la\n"
+#~ "care e conectat."
+
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "AceastЦ secЧiune este dedicatЦ configuraЧiei unei reЧele locale (LAN)\n"
+#~ "sau a unui modem.\n"
+#~ "\n"
+#~ "AlegeЧi \"ReЧea LAN\" ╨i DrakX va Нncerca sЦ detecteze adaptatorul\n"
+#~ "Ethernet pe care-l aveЧi. Adaptatorii PCI sunt Нn general detectaЧi ╨i\n"
+#~ "iniЧializaЧi Нn mod automat.\n"
+#~ "нn cazul unui adaptator ISA, detecЧia automatЦ nu va funcЧiona ╨i veЧi\n"
+#~ "avea atunci de ales pilotul din lista propusЦ.\n"
+#~ "\n"
+#~ "\n"
+#~ "La fel ╨i pentru adaptatorii SCSI, puteЧi lЦsa testul mai НntНi, dacЦ nu\n"
+#~ "puteЧi specifica opЧiunile pentru pilot pe care le-aЧi recuperat Нn \n"
+#~ "documentaЧia hardware-ului.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ instalaЧi sistemul Linux-Mandrake pe un calculator care face parte\n"
+#~ "dintr-o reЧea deja existentЦ, administratorul de reЧea vЦ va da toate\n"
+#~ "informaЧiile necesare (adresЦ IP, sub-mascЦ de reЧea sau netmask mai pe\n"
+#~ "scurt ╨i numele calculatorului). DacЦ configuraЧi o reЧea privatЦ la\n"
+#~ "dumneavoastrЦ acasЦ, de exemplu, va trebui sЦ alegeЧi adresele singur.\n"
+#~ "\n"
+#~ "\n"
+#~ "AlegeЧi \"TelefonaЧi cu modem\" ╨i atunci conexiunea Internet va fi\n"
+#~ "configuratЦ. DrakX va Нncerca sЦ detecteze modemul ╨i dacЦ nu reu╨e╨te\n"
+#~ "vЦ va propune portul serie la care modemul e conectat."
+
+#, fuzzy
+#~ msgid ""
+#~ "GNU/Linux can deal with many types of printer. Each of these\n"
+#~ "types require a different setup. Note however that the print\n"
+#~ "spooler uses 'lp' as the default printer name; so you\n"
+#~ "must have one printer with such a name; but you can give\n"
+#~ "several names, separated by '|' characters, to a printer.\n"
+#~ "So, if you prefer to have a more meaningful name you just have\n"
+#~ "to put it first, eg: \"My Printer|lp\".\n"
+#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your printer is physically connected to your computer, select\n"
+#~ "\"Local printer\". You will then have to tell which port your\n"
+#~ "printer is connected to, and select the appropriate filter.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a printer located on a remote Unix machine,\n"
+#~ "you will have to select \"Remote lpd\". In order to make\n"
+#~ "it work, no username or password is required, but you will need\n"
+#~ "to know the name of the printing queue on this server.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you want to access a SMB printer (which means, a printer located\n"
+#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
+#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
+#~ "plus the username, workgroup and password required in order to\n"
+#~ "access the printer, and of course the name of the printer. The same goes\n"
+#~ "for a NetWare printer, except that you need no workgroup information."
+#~ msgstr ""
+#~ "Linux poate gera multe tipuri de imprimante. Fiecare din aceste tipuri\n"
+#~ "necesitЦ o instalare diferitЦ. NotaЧi cЦ \"spool\"-ul de imprimantЦ\n"
+#~ "folose╨te \"lp\" pentru numele din oficiu al imprimantei; deci va trebui\n"
+#~ "sЦ aveЧi o imprimantЦ cu un acest nume; dar Нi veЧi putea da mai multe "
+#~ "nume,\n"
+#~ "separate de caractere '|'. Deci, dacЦ doriЧi sЦ aveЧi unele nume mai pline\n"
+#~ "de sens, veЧi putea folosi, de exemplu: \"Imprimanta mea|lp\".\n"
+#~ "Imprimanta care are are \"lp\" printre numele ei va fi consideratЦ ca\n"
+#~ "imprimanta din oficiu.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ imprimanta e conectatЦ fizic la calculator, selectaЧi atunci\n"
+#~ "\"ImprimantЦ localЦ\". VeЧi avea apoi a intra numele portului de\n"
+#~ "imprimantЦ la care aceasta e conectatЦ ╨i a selecta filtrul apropriat\n"
+#~ "Portul LPT1 devine lp0 Нn Linux\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ doriЧi sЦ accedeЧi la un calculator Unix distant, veЧi avea a selecta\n"
+#~ "\"lpd distant\". Pentru a o face sЦ funcЧioneze, nu aveЧi nevoie de parolЦ\n"
+#~ "sau de nume de utilizator, dar va trebui sЦ ╨tiЧi care e numele cozii de\n"
+#~ "imprimare de pe acest server-ului.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ doriЧi sЦ acedeЧi la o imprimantЦ SMB (adicЦ la o imprimantЦ conectatЦ\n"
+#~ "fizic la un calculator distant cu un sistem Windows), va trebui sЦ \n"
+#~ "specificaЧi numele ei SMB (care nu e numele ei TCP/IP) ╨i probabil adresa\n"
+#~ "ei IP, plus numele utilizatorului, al grupului de lucru ╨i parola cerutЦ\n"
+#~ "pentru a accede la imprimantЦ ╨i bineНnЧeles numele imprimantei. Lucrurile\n"
+#~ "sunt similare pentru o imprimantЦ Netware, excepЧie fЦcНnd faptul cЦ nu\n"
+#~ "aveЧi nevoie de informaЧia de grup de lucru."
+
+#, fuzzy
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "E foarte indicat sЦ rЦspundeЧi \"Da\" aici. DacЦ instalaЧi Microsoft \n"
+#~ "Windows mai tНrziu, acest a vЦ va ╨terge sectorul de demaraj al discului.\n"
+#~ "DacЦ nu aveЧi un floppy de demaraj, nu veЧi mai putea demara Linux."
+
+#~ msgid "Forget the changes?"
+#~ msgstr "AbandonaЧi schimbЦrile?"
+
+#, fuzzy
+#~ msgid "Cable connection"
+#~ msgstr "SelectaЧi Conexiunea de imprimantЦ"
+
+#~ msgid "Host name:"
+#~ msgstr "Numele calculatorului:"
+
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "Ce tip de mouse aveЧi?"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "RezoluЧii alese Нn mod automat"
+
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Pentru a afla rezoluЧiile disponibile voi Нncerca altele diferite.\n"
+#~ "Ecranul dumneavoastrЦ se va stinge ╨i aprinde de cНteva ori..."
+
+#~ msgid ""
+#~ "I can try to find the available resolutions (eg: 800x600).\n"
+#~ "Sometimes, though, it may hang the machine.\n"
+#~ "Do you want to try?"
+#~ msgstr ""
+#~ "Pot sЦ Нncerc sЦ gЦsesc rezoluЧiile disponibile (eg:800x600).\n"
+#~ "Uneori, totu╨i, aceasta poate bloca calculatorul.\n"
+#~ "DoriЧi sЦ Нncerc ?"
+
+#~ msgid ""
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
+#~ msgstr ""
+#~ "N'am gЦsit moduri valide\n"
+#~ "нncercaЧi cu o altЦ carte video sau alt monitor"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Configurarea automatЦ a rezoluЧiilor"
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Mouse Apple ADB"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Mouse Apple ADB (2 Butoane)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Mouse Apple ADB (3+ Butoane)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Mouse Apple USB"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Mouse Apple USB (2 Butoane)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Mouse Apple USB (3+ Butoane)"
+
+#~ msgid "Generic Mouse"
+#~ msgstr "Mouse PS/2 generic"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "Mouse ATI Bus"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Mouse Microsoft Bus"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Mouse Logitech Bus"
+
+#~ msgid "USB Mouse"
+#~ msgstr "Mouse USB"
+
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "Mouse USB (3 butoane sau mai multe)"
+
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A sau mai mult (serie)"
+
+#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
+#~ msgstr "Logitech MouseMan+/FirstMouse+ (serie)"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (serie)"
+
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (serie)"
+
+#~ msgid "Generic Mouse (serial)"
+#~ msgstr "Mouse serie generic"
+
+#~ msgid "Microsoft compatible (serial)"
+#~ msgstr "Mouse Microsoft compatibil (serie)"
+
+#~ msgid "Generic 3 Button Mouse (serial)"
+#~ msgstr "Mouse serie generic cu 3 butoane"
+
+#, fuzzy
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse"
+
+#~ msgid "nfs mount failed"
+#~ msgstr "montarea nfs a e╨uat"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Cryptographic"
+#~ msgstr "Criptografie"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "DoriЧi sa configuraЧi reЧeaua LAN pentru sistemul dumneavoastrЦ?"
+
+#~ msgid "Show less"
+#~ msgstr "Afi╨aЧi mai puЧin"
+
+#~ msgid "Show more"
+#~ msgstr "Afi╨aЧi mai mult"
+
+#~ msgid "curly"
+#~ msgstr "cНrlionЧat"
+
+#~ msgid "default"
+#~ msgstr "standard"
+
+#~ msgid "tie"
+#~ msgstr "cravatЦ"
+
+#~ msgid "brunette"
+#~ msgstr "brunetЦ"
+
+#~ msgid "girl"
+#~ msgstr "fatЦ"
+
+#~ msgid "woman-blond"
+#~ msgstr "femeie blondЦ"
+
+#~ msgid "automagic"
+#~ msgstr "automagic"
+
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "Care e dispoziЧia tastaturii?"
+
+#~ msgid "Normal"
+#~ msgstr "Normal"
+
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "SЦ Нncerc sЦ gЦsesc cartelele PCMCIA?"
+
+#~ msgid "Try to find %s devices?"
+#~ msgstr "SЦ Нncerc sЦ gЦsesc periferice %s?"
+
+#~ msgid "Modem Configuration"
+#~ msgstr "ConfiguraЧie modem"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "DoriЧi sa configuraЧi o conexiune telefonicЦ prin modem?"
+
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "SЦ Нncerc sЦ gЦsesc periferice PCI?"
+
+#~ msgid "Searching root partition."
+#~ msgstr "нn cЦutarea partiЧiei root"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Aceasta nu e o partiЧie root, vЦ rog alegeЧi o alta"
+
+#~ msgid "No root partition found"
+#~ msgstr "N'am gЦsit nici o partiЧie root"
+
+#~ msgid "Can't use broadcast with no NIS domain"
+#~ msgstr "Nu pot sЦ folosesc difuzia fЦrЦ nici un domeniu NIS"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "VЦ rog alegeЧi o partiЧie pentru a o folosi ca partiЧie root?."
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Nu aveЧi destul spaЧiu pentru Lnx4win"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "Automated"
+#~ msgstr "Automatizat"
+
+# NOTE: this message will be displayed by lilo at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is then suggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+# When possible cp437 accentuated letters can be used too.
+#
+#~ msgid ""
+#~ "Welcome to LILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
+#~ "default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bun venit la gestionarul de sisteme de operare LILO!\n"
+#~ "Pentru a lista posibilitatile, apasati <TAB>.\n"
+#~ "\n"
+#~ "Pentru a lansa unul dintre ele, scrietii numele si apasati <ENTER> sau\n"
+#~ "asteptati %d secunde pentru demararea din oficiu.\n"
+#~ "\n"
+
+# NOTE: this message will be displayed by SILO at boot time; that is
+# only the ascii charset will be available
+# so use only 7bit for this message
+#
+#~ msgid ""
+#~ "Welcome to SILO the operating system chooser!\n"
+#~ "\n"
+#~ "To list the possible choices, press <TAB>.\n"
+#~ "\n"
+#~ "To load one of them, write its name and press <ENTER> or\n"
+#~ "wait %d seconds for default boot.\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Bun venit la gestionarul de sisteme de operare SILO!\n"
+#~ "\n"
+#~ "Pentru a afisa diferitele posibilitati, apasati <TAB>.\n"
+#~ "\n"
+#~ "Pentru a demara unul dintre ele, scrieti-i numele si apasati <ENTER> sau\n"
+#~ "asteptati %d secunde pentru demararea din oficiu.\n"
+#~ "\n"
+
+#~ msgid "SILO main options"
+#~ msgstr "OpЧinunile principale ale lui SILO"
+
+#~ msgid ""
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
+#~ msgstr ""
+#~ "IatЦ urmЦtoarele intrЦri din SILO.\n"
+#~ "PuteЧi adЦuga mai multe sau schimba cele existente."
+
+#~ msgid "This label is already in use"
+#~ msgstr "AceastЦ etichetЦ e deja utilizatЦ"
+
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Instalarea lui SILO a e╨uat. UrmЦtoarea eroare a apЦrut:"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
+#~ "\n"
+#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
+#~ "\n"
+#~ "\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
+#~ "\n"
+#~ "\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX va Нncerca mai НntНi sЦ caute unul sau mai mulЧi adaptatori PCI\n"
+#~ "sau SCSI. DacЦ cЦutarea e fructuoasЦ ╨i ╨tie ce pilot sЦ foloseascЦ,\n"
+#~ "atunci Нl (le) va instala Нn mod automat.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ adaptatorul este o carte ISA, sau est e o carte PCI ╨i DrakX\n"
+#~ "nu ╨tie ce pilot sЦ foloseascЦ sau dacЦ nu aveЧi nici un adaptator SCSI\n"
+#~ "veЧi fi mai apoi Нntrebat dacЦ aveЧi unul sau nu. DacЦ nu aveЧi nici unul\n"
+#~ "rЦspundeЧi \"Nu\". DacЦ aveЧi unul sau mai multe, rЦspundeti \"Da\".\n"
+#~ "O listЦ cu piloЧi va va permite atunci sЦ alegeЧi unul.\n"
+#~ "\n"
+#~ "\n"
+#~ "DupЦ ce aЧi selecЧionat pilotul, DrakX vЦ va Нntreba dacЦ doriЧi\n"
+#~ "sЦ specificaЧi opЧiuni pentru el (ei). Mai НntНi НncercaЧi ╨i lЦsaЧi\n"
+#~ "pilotul sЦ testeze hardware-ul: Нn mod normal aceasta funcЧioneazЦ bine.\n"
+#~ "\n"
+#~ "\n"
+#~ "DacЦ nu, nu uitaЧi informaЧiile despre hardware pe care le-aЧi putea gЦsi\n"
+#~ "Нn documentaЧia dumneavoastrЦ sau din Windows (dacЦ l-aveЧi instalat), a╨a\n"
+#~ "cum e sugerat Нn ghidul de instalare. Acestea sunt opЧiuni pe care le veЧi\n"
+#~ "furniza pilotului."
+
+#~ msgid "Shutting down"
+#~ msgstr "Oprire"
+
#~ msgid "useless"
#~ msgstr "nefolositor"
@@ -4991,9 +7245,6 @@ msgstr "GЦsirea foilor ia ceva timp"
#~ "DoriЧi sЦ le folosiЧi ? AsiguraЧi-vЦ ca aveЧi dreptul sЦ le folosiЧi\n"
#~ "Нn Linux."
-#~ msgid "Recommended"
-#~ msgstr "Recomandat"
-
#~ msgid ""
#~ "Choose \"Install\" if there are no previous versions of Linux\n"
#~ "installed, or if you wish to use multiple distributions or versions.\n"
@@ -5061,9 +7312,6 @@ msgstr "GЦsirea foilor ia ceva timp"
#~ msgid "Setup SCSI"
#~ msgstr "Instalare SCSI"
-#~ msgid "Which language do you want?"
-#~ msgstr "Ce limbЦ doriЧi ?"
-
#~ msgid "server"
#~ msgstr "server"
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index a38cf5b38..e7e1c02a7 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-06-07 19:28+0200\n"
+"POT-Creation-Date: 2000-10-09 15:58+0200\n"
"PO-Revision-Date: 1999-09-24 10:07 +0200\n"
"Last-Translator: Aleksey Smirnov <smi@logic.ru>\n"
"Language-Team: \n"
@@ -12,43 +12,95 @@ msgstr ""
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:117 ../../Xconfigurator.pm_.c:237
-msgid "Generic"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Видеокарта"
-#: ../../Xconfigurator.pm_.c:173
+#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Выберите видеокарту"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Выберите X сервер"
-#: ../../Xconfigurator.pm_.c:174
+#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X сервер"
-#: ../../Xconfigurator.pm_.c:199
+#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#, fuzzy, c-format
+msgid "XFree %s"
+msgstr "Сервер XFree86: %s"
+
+#: ../../Xconfigurator.pm_.c:220
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Какой тип пункта хотите добавить?"
+
+#: ../../Xconfigurator.pm_.c:232
+#, fuzzy, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Для вашей карты есть поддержка 3D акселерации только под XFree 3.3.\n"
+"Согласны ли вы использовать XFree 3.3 вместо XFree 4.0?"
+
+#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#, fuzzy, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Нужна поддержка для оборудования с 3D акселерацией?"
+
+#: ../../Xconfigurator.pm_.c:245
+#, fuzzy, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Для вашей карты есть поддержка 3D акселерации только под XFree 3.3.\n"
+"Согласны ли вы использовать XFree 3.3 вместо XFree 4.0?"
+
+#: ../../Xconfigurator.pm_.c:248
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:250
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:265
+#, fuzzy
+msgid "XFree configuration"
+msgstr "Настройка proxy"
+
+#: ../../Xconfigurator.pm_.c:301
msgid "Select the memory size of your graphic card"
msgstr "Укажите размер видеопамяти"
-#: ../../Xconfigurator.pm_.c:226
+#: ../../Xconfigurator.pm_.c:345
msgid "Choose options for server"
msgstr "Выберите опции для сервера"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Choose a monitor"
msgstr "Выберите монитор"
-#: ../../Xconfigurator.pm_.c:237
+#: ../../Xconfigurator.pm_.c:356
msgid "Monitor"
msgstr "Монитор"
-#: ../../Xconfigurator.pm_.c:240
+#: ../../Xconfigurator.pm_.c:359
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -71,39 +123,40 @@ msgstr ""
"вне фактических возможностей вашего монитора: вы можете испортитьмонитор.\n"
" В случае сомнений лучше выбрать консервативные установки."
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Horizontal refresh rate"
msgstr "Частота горизонтальной развертки"
-#: ../../Xconfigurator.pm_.c:247
+#: ../../Xconfigurator.pm_.c:366
msgid "Vertical refresh rate"
msgstr "Частота вертикальной развертки"
-#: ../../Xconfigurator.pm_.c:286
+#: ../../Xconfigurator.pm_.c:405
msgid "Monitor not configured"
msgstr "Монитор еще не настроен"
-#: ../../Xconfigurator.pm_.c:289
+#: ../../Xconfigurator.pm_.c:408
msgid "Graphic card not configured yet"
msgstr "Видеокарта еще не настроена"
-#: ../../Xconfigurator.pm_.c:292
+#: ../../Xconfigurator.pm_.c:411
msgid "Resolutions not chosen yet"
msgstr "Разрешение не указано"
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:427
msgid "Do you want to test the configuration?"
msgstr "Хотите протестировать настройки?"
-#: ../../Xconfigurator.pm_.c:309
-msgid "Warning: testing is dangerous on this graphic card"
+#: ../../Xconfigurator.pm_.c:431
+#, fuzzy
+msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Предупреждение: тестирование на этой видеокарте опасно"
-#: ../../Xconfigurator.pm_.c:312
+#: ../../Xconfigurator.pm_.c:434
msgid "Test of the configuration"
msgstr "Проверка настроек"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid ""
"\n"
"try to change some parameters"
@@ -111,185 +164,168 @@ msgstr ""
"\n"
"попробуйте измениить некоторые параметры"
-#: ../../Xconfigurator.pm_.c:351
+#: ../../Xconfigurator.pm_.c:473
msgid "An error has occurred:"
msgstr "Ошибка:"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfigurator.pm_.c:495
#, c-format
msgid "Leaving in %d seconds"
msgstr "Осталось %d сукунд"
-#: ../../Xconfigurator.pm_.c:378
-#, fuzzy
+#: ../../Xconfigurator.pm_.c:505
msgid "Is this the correct setting?"
-msgstr "Это верно?"
+msgstr "Это корректные установки?"
-#: ../../Xconfigurator.pm_.c:386
+#: ../../Xconfigurator.pm_.c:513
msgid "An error has occurred, try to change some parameters"
msgstr "Произошла ошибка, попробуйте изменить параметры"
-#: ../../Xconfigurator.pm_.c:394 ../../Xconfigurator.pm_.c:575
-msgid "Automatic resolutions"
-msgstr "Автоматическое определение разрешения"
-
-#: ../../Xconfigurator.pm_.c:395
-msgid ""
-"To find the available resolutions I will try different ones.\n"
-"Your screen will blink...\n"
-"You can switch if off if you want, you'll hear a beep when it's over"
-msgstr ""
-"Для поиска подходящих разрешений попробуем различные. \n"
-"Ваш экран будет мигать...\n"
-"Если хотите, можете это отключить, по окончании услышите гудок"
-
-#: ../../Xconfigurator.pm_.c:453 ../../printerdrake.pm_.c:167
+#: ../../Xconfigurator.pm_.c:550 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Разрешение"
-#: ../../Xconfigurator.pm_.c:488
+#: ../../Xconfigurator.pm_.c:585
msgid "Choose the resolution and the color depth"
msgstr "Выбор разрешения и глубины цвета"
-#: ../../Xconfigurator.pm_.c:490
+#: ../../Xconfigurator.pm_.c:587
#, c-format
msgid "Graphic card: %s"
msgstr "Видеокарта: %s"
-#: ../../Xconfigurator.pm_.c:491
+#: ../../Xconfigurator.pm_.c:588
#, c-format
msgid "XFree86 server: %s"
msgstr "Сервер XFree86: %s"
-#: ../../Xconfigurator.pm_.c:500
+#: ../../Xconfigurator.pm_.c:597
msgid "Show all"
msgstr "Показать все"
-#: ../../Xconfigurator.pm_.c:524
+#: ../../Xconfigurator.pm_.c:621
msgid "Resolutions"
msgstr "Разрешение"
-#: ../../Xconfigurator.pm_.c:576
-msgid ""
-"I can try to find the available resolutions (eg: 800x600).\n"
-"Sometimes, though, it may hang the machine.\n"
-"Do you want to try?"
-msgstr ""
-"Можем попробовать найти доступные разрешения (напр.: 800x600).\n"
-"Впрочем, изредка это может подвесить машину .\n"
-"Хотите попробовать?"
-
-#: ../../Xconfigurator.pm_.c:581
-msgid ""
-"No valid modes found\n"
-"Try with another video card or monitor"
-msgstr ""
-"Не обнаружено подходящих режимов\n"
-"Попробуйте указать другую видеокарту или монитор"
-
-#: ../../Xconfigurator.pm_.c:921
+#: ../../Xconfigurator.pm_.c:1019
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Тип клавиатуры: %s\n"
-#: ../../Xconfigurator.pm_.c:922
+#: ../../Xconfigurator.pm_.c:1020
#, c-format
msgid "Mouse type: %s\n"
msgstr "Тип мыши: %s\n"
-#: ../../Xconfigurator.pm_.c:923
+#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Mouse device: %s\n"
msgstr "Мышь: %s\n"
-#: ../../Xconfigurator.pm_.c:924
+#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Monitor: %s\n"
msgstr "Монитор: %s\n"
-#: ../../Xconfigurator.pm_.c:925
+#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Частота гор.разв. монитора: %s\n"
-#: ../../Xconfigurator.pm_.c:926
+#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Частота верт.разв. монитора: %s\n"
-#: ../../Xconfigurator.pm_.c:927
+#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Graphic card: %s\n"
msgstr "Видеокарта: %s\n"
-#: ../../Xconfigurator.pm_.c:928
+#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Видеопамять: %s KB\n"
-#: ../../Xconfigurator.pm_.c:929
+#: ../../Xconfigurator.pm_.c:1028
+#, fuzzy, c-format
+msgid "Color depth: %s\n"
+msgstr "Параметры глубины цвета"
+
+#: ../../Xconfigurator.pm_.c:1029
+#, fuzzy, c-format
+msgid "Resolution: %s\n"
+msgstr "Разрешение"
+
+#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:944
+#: ../../Xconfigurator.pm_.c:1032
+#, fuzzy, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "Сервер XFree86: %s\n"
+
+#: ../../Xconfigurator.pm_.c:1051
msgid "Preparing X-Window configuration"
msgstr "Подготовка настройки X-Window"
-#: ../../Xconfigurator.pm_.c:958
+#: ../../Xconfigurator.pm_.c:1065
msgid "Change Monitor"
msgstr "Измените монитор"
-#: ../../Xconfigurator.pm_.c:959
+#: ../../Xconfigurator.pm_.c:1066
msgid "Change Graphic card"
msgstr "Измените видеокарту"
-#: ../../Xconfigurator.pm_.c:960
+#: ../../Xconfigurator.pm_.c:1067
msgid "Change Server options"
msgstr "Измените опции Сервера"
-#: ../../Xconfigurator.pm_.c:961
+#: ../../Xconfigurator.pm_.c:1068
msgid "Change Resolution"
msgstr "Измените разрешение"
-#: ../../Xconfigurator.pm_.c:962
-msgid "Automatical resolutions search"
-msgstr "Автоматический поиск разрешения"
-
-#: ../../Xconfigurator.pm_.c:966
+#: ../../Xconfigurator.pm_.c:1069
msgid "Show information"
msgstr "Информация"
-#: ../../Xconfigurator.pm_.c:967
+#: ../../Xconfigurator.pm_.c:1070
msgid "Test again"
msgstr "Снова проверить"
-#: ../../Xconfigurator.pm_.c:968 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1071 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Выход"
-#: ../../Xconfigurator.pm_.c:972 ../../standalone/drakboot_.c:39
+#: ../../Xconfigurator.pm_.c:1075 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Что вы хотите делать?"
-#: ../../Xconfigurator.pm_.c:979
-msgid "Forget the changes?"
-msgstr "Забыть изменения?"
+#: ../../Xconfigurator.pm_.c:1082
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"Current configuration is:\n"
+"\n"
+"%s"
+msgstr "Сохранение текущей конфигурации IP"
-#: ../../Xconfigurator.pm_.c:997
+#: ../../Xconfigurator.pm_.c:1103
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Войдите повторно в %s для активации изменений"
-#: ../../Xconfigurator.pm_.c:1013
+#: ../../Xconfigurator.pm_.c:1123
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Выйдите, а сатем используйте Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1016
+#: ../../Xconfigurator.pm_.c:1126
msgid "X at startup"
msgstr "Запуск X при загрузке"
-#: ../../Xconfigurator.pm_.c:1017
+#: ../../Xconfigurator.pm_.c:1127
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -297,461 +333,640 @@ msgstr ""
"Можно настроить систему для автоматического запуска X после загрузки.\n"
"Хотите, чтобы X стартовал при перезагрузке?"
-#: ../../Xconfigurator_consts.pm_.c:4
+#: ../../Xconfigurator.pm_.c:1151
+msgid "Autologin"
+msgstr "Автовход"
+
+#: ../../Xconfigurator.pm_.c:1152
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Можем настроить систему для автоматического входа одного пользователя.\n"
+"Если вы не хотите воспользоваться этой возможностью, нажмите на кнопку "
+"отмены."
+
+#: ../../Xconfigurator.pm_.c:1154
+msgid "Choose the default user:"
+msgstr "Выберите пользователя по умолчанию"
+
+#: ../../Xconfigurator.pm_.c:1155
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Выберите инструмент"
+
+#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 цветов (8 бит)"
-#: ../../Xconfigurator_consts.pm_.c:5
+#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 тысячи цветов (15 бит)"
-#: ../../Xconfigurator_consts.pm_.c:6
+#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 тысяч цветов (16 бит)"
-#: ../../Xconfigurator_consts.pm_.c:7
+#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 миллионов цветов (24 бита)"
-#: ../../Xconfigurator_consts.pm_.c:8
+#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 миллиарда цветов (32 бита)"
-#: ../../Xconfigurator_consts.pm_.c:103
+#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"
-#: ../../Xconfigurator_consts.pm_.c:104
+#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"
-#: ../../Xconfigurator_consts.pm_.c:105
+#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"
-#: ../../Xconfigurator_consts.pm_.c:106
+#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"
-#: ../../Xconfigurator_consts.pm_.c:107
+#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 Mb"
-#: ../../Xconfigurator_consts.pm_.c:108
+#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 Mb"
-#: ../../Xconfigurator_consts.pm_.c:109
+#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB или больше"
-#: ../../Xconfigurator_consts.pm_.c:114 ../../Xconfigurator_consts.pm_.c:115
+#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Стандартный VGA, 640x480 при 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:116
+#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 при 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:117
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Совместима с 8514, 1024x768 при 87 Hz чрезстрочный (нет 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 при 87 Hz чрезстрочный, 800x600 при 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 при 60 Hz, 640x480 при 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 при 60 Hz, 800x600 при 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA Высокой Частоты, 1024x768 при 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency способный поддерживать 1280x1024 при 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency способный поддерживать 1280x1024 при 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency способный поддерживать 1280x1024 при 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor способный поддерживать 1600x1200 при 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor способный поддерживать 1600x1200 при 76 Hz"
-#: ../../any.pm_.c:17
-msgid "curly"
-msgstr ""
-
-#: ../../any.pm_.c:17
-msgid "default"
-msgstr "умолчание"
-
-#. -PO: names (tie, curly...) have corresponding icons for kdm
-#: ../../any.pm_.c:17
-#, fuzzy
-msgid "tie"
-msgstr "Активный"
-
-#: ../../any.pm_.c:18
-msgid "brunette"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "girl"
-msgstr ""
-
-#: ../../any.pm_.c:18
-msgid "woman-blond"
-msgstr ""
-
-#: ../../any.pm_.c:19
-#, fuzzy
-msgid "automagic"
-msgstr "Автоматический IP"
-
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121
msgid "First sector of boot partition"
msgstr "Первый сектор загрузочного раздела"
-#: ../../any.pm_.c:60
+#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Первый сектор устройства (MBR)"
-#: ../../any.pm_.c:65
-#, fuzzy
-msgid "LILO/grub Installation"
-msgstr "Установка LILO"
+#: ../../any.pm_.c:95
+msgid "SILO Installation"
+msgstr "Установка SILO"
-#: ../../any.pm_.c:66
+#: ../../any.pm_.c:96 ../../any.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Куда вы хотите установить начальный загрузчик?"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:101
+msgid "LILO/grub Installation"
+msgstr "Установка LILO/grub"
+
+#: ../../any.pm_.c:111 ../../install_steps_interactive.pm_.c:732
msgid "None"
-msgstr "Готово"
+msgstr "Никто"
-#: ../../any.pm_.c:73
-#, fuzzy
+#: ../../any.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
-msgstr "Какой тип пункта хотите добавить?"
+msgstr "Какой диспетчер загрузки будете использовать?"
+
+#: ../../any.pm_.c:125
+msgid "Bootloader installation"
+msgstr "Установка загрузчика"
-#: ../../any.pm_.c:84
+#: ../../any.pm_.c:127
msgid "Boot device"
msgstr "Загрузочное устройство"
-#: ../../any.pm_.c:85
+#: ../../any.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
-msgstr ""
+msgstr "LBA (не работает на старых BIOS)"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "Compact"
msgstr "Компактно"
-#: ../../any.pm_.c:86
+#: ../../any.pm_.c:129
msgid "compact"
msgstr "компактно"
-#: ../../any.pm_.c:87 ../../install_steps_interactive.pm_.c:809
-msgid "Delay before booting default image"
-msgstr "Задержка перед загрузкой образа по умолчанию"
-
-#: ../../any.pm_.c:88
+#: ../../any.pm_.c:130 ../../any.pm_.c:199
msgid "Video mode"
msgstr "Видео-режим"
-#: ../../any.pm_.c:90 ../../install_steps_interactive.pm_.c:531
-#: ../../install_steps_interactive.pm_.c:654
-#: ../../install_steps_interactive.pm_.c:705
-#: ../../install_steps_interactive.pm_.c:811 ../../printerdrake.pm_.c:85
-#: ../../printerdrake.pm_.c:110 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:132
+msgid "Delay before booting default image"
+msgstr "Задержка перед загрузкой образа по умолчанию"
+
+#: ../../any.pm_.c:134 ../../install_steps_interactive.pm_.c:760
+#: ../../install_steps_interactive.pm_.c:811 ../../netconnect.pm_.c:548
+#: ../../printerdrake.pm_.c:94 ../../printerdrake.pm_.c:128
+#: ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Пароль:"
-#: ../../any.pm_.c:91 ../../install_steps_interactive.pm_.c:655
-#: ../../install_steps_interactive.pm_.c:706
+#: ../../any.pm_.c:135 ../../install_steps_interactive.pm_.c:761
#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Повторите пароль:"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "Restrict command line options"
msgstr "Ограничение опций командной строки"
-#: ../../any.pm_.c:92 ../../install_steps_interactive.pm_.c:813
+#: ../../any.pm_.c:136
msgid "restrict"
msgstr "ограничение"
-#: ../../any.pm_.c:98
-#, fuzzy
+#: ../../any.pm_.c:142
msgid "Bootloader main options"
-msgstr "главные опции LILO"
+msgstr "Главные опции загрузчика"
-#: ../../any.pm_.c:101 ../../install_steps_interactive.pm_.c:820
+#: ../../any.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Опция ``Ограничение опций командной строки'' не используется без пароля"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Попробуйте еще раз"
-#: ../../any.pm_.c:102 ../../install_steps_interactive.pm_.c:664
-#: ../../install_steps_interactive.pm_.c:719
-#: ../../install_steps_interactive.pm_.c:821
+#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:825
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Пароли не совпадают"
-#: ../../any.pm_.c:112
-#, fuzzy
+#: ../../any.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-"В LILO есть следующие пункты.\n"
+"Имеется неасколько пунктов.\n"
"Вы можете добавить еще, или изменить существующие."
-#: ../../any.pm_.c:114 ../../install_steps_interactive.pm_.c:832
-#: ../../printerdrake.pm_.c:245 ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:165 ../../printerdrake.pm_.c:352
+#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Добавить"
-#: ../../any.pm_.c:114 ../../diskdrake.pm_.c:42
-#: ../../install_steps_interactive.pm_.c:699
-#: ../../install_steps_interactive.pm_.c:832 ../../printerdrake.pm_.c:245
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:165 ../../diskdrake.pm_.c:46
+#: ../../install_steps_interactive.pm_.c:805 ../../netconnect.pm_.c:830
+#: ../../printerdrake.pm_.c:352 ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Готово"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:174
+msgid "Which type of entry do you want to add?"
+msgstr "Какой тип пункта хотите добавить?"
+
+#: ../../any.pm_.c:175
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:123
+#: ../../any.pm_.c:175
+msgid "Other OS (SunOS...)"
+msgstr "Другая OS (SunOS...)"
+
+#: ../../any.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Другая OS (windows...)"
-#: ../../any.pm_.c:123
-msgid "Which type of entry do you want to add?"
-msgstr "Какой тип пункта хотите добавить?"
-
-#: ../../any.pm_.c:142 ../../install_steps_interactive.pm_.c:857
+#: ../../any.pm_.c:196
msgid "Image"
msgstr "Образ"
-#: ../../any.pm_.c:143 ../../any.pm_.c:151
-#: ../../install_steps_interactive.pm_.c:859
+#: ../../any.pm_.c:197 ../../any.pm_.c:206
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:144 ../../install_steps_interactive.pm_.c:860
+#: ../../any.pm_.c:198
msgid "Append"
msgstr "Присоединить"
-#: ../../any.pm_.c:145 ../../install_steps_interactive.pm_.c:861
+#: ../../any.pm_.c:200
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:146 ../../install_steps_interactive.pm_.c:862
+#: ../../any.pm_.c:201
msgid "Read-write"
msgstr "Чтение-запись"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:208
msgid "Table"
msgstr "Таблица"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:209
msgid "Unsafe"
msgstr "Unsafe"
-#: ../../any.pm_.c:158 ../../install_steps_interactive.pm_.c:869
+#: ../../any.pm_.c:215
msgid "Label"
msgstr "Метка"
-#: ../../any.pm_.c:160 ../../install_steps_interactive.pm_.c:871
+#: ../../any.pm_.c:217
msgid "Default"
msgstr "Умолчание"
-#: ../../any.pm_.c:163 ../../install_steps_gtk.pm_.c:678
-#: ../../install_steps_interactive.pm_.c:652
-#: ../../install_steps_interactive.pm_.c:874 ../../interactive.pm_.c:74
-#: ../../interactive.pm_.c:84 ../../interactive.pm_.c:224
-#: ../../interactive_newt.pm_.c:49 ../../interactive_newt.pm_.c:98
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:200
-#: ../../my_gtk.pm_.c:459 ../../my_gtk.pm_.c:635 ../../printerdrake.pm_.c:272
+#: ../../any.pm_.c:220 ../../install_gtk.pm_.c:82
+#: ../../install_steps_interactive.pm_.c:758 ../../interactive.pm_.c:76
+#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
+#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:398
+#: ../../printerdrake.pm_.c:418
msgid "Ok"
msgstr "Ок"
-#: ../../any.pm_.c:163 ../../install_steps_interactive.pm_.c:874
+#: ../../any.pm_.c:220
msgid "Remove entry"
msgstr "Удалить пункт"
-#: ../../any.pm_.c:166 ../../install_steps_interactive.pm_.c:877
+#: ../../any.pm_.c:223
msgid "Empty label not allowed"
msgstr "Пустая метка не допускается"
-#: ../../any.pm_.c:167
-#, fuzzy
+#: ../../any.pm_.c:224
msgid "This label is already used"
msgstr "Эта метка уже используется"
-#: ../../diskdrake.pm_.c:18 ../../diskdrake.pm_.c:413
+#: ../../any.pm_.c:500
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "Найдены %s %s интерфейсы"
+
+#: ../../any.pm_.c:501
+msgid "Do you have another one?"
+msgstr "Есть ли у вас другой?"
+
+#: ../../any.pm_.c:502
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "Есть ли у вас %s интерфейс?"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:465
+#: ../../printerdrake.pm_.c:233
+msgid "No"
+msgstr "Нет"
+
+#: ../../any.pm_.c:504 ../../interactive.pm_.c:81 ../../my_gtk.pm_.c:485
+#: ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:463
+msgid "Yes"
+msgstr "Да"
+
+#: ../../any.pm_.c:505
+msgid "See hardware info"
+msgstr "См. описание оборудования"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../any.pm_.c:522
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "Установка драйвера для %s карты %s"
+
+#: ../../any.pm_.c:523
+#, c-format
+msgid "(module %s)"
+msgstr "(модуль %s)"
+
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../any.pm_.c:534
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "Какой %s драйвер мне попробовать?"
+
+#: ../../any.pm_.c:542
+#, c-format
+msgid ""
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without. 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"
+"ничего не сломает."
+
+#: ../../any.pm_.c:547
+msgid "Autoprobe"
+msgstr "Автопоиск"
+
+#: ../../any.pm_.c:547
+msgid "Specify options"
+msgstr "Укажите параметры"
+
+#: ../../any.pm_.c:551
+#, c-format
+msgid "You may now provide its options to module %s."
+msgstr "Вы не можете задать опции модулю %s."
+
+#: ../../any.pm_.c:557
+#, c-format
+msgid ""
+"You may now provide its 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''"
+
+#: ../../any.pm_.c:560
+msgid "Module options:"
+msgstr "Опции модуля:"
+
+#: ../../any.pm_.c:570
+#, c-format
+msgid ""
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
+msgstr ""
+"Загрузка модуля %s не прошла.\n"
+"Хотите попробовать еще с другими параметрами?"
+
+# NOTE: this message will be displayed at boot time; that is
+# only the ascii charset will be available on most machines
+# so use only 7bit for this message (and do transliteration or
+# leave it in English, as it is the best for your language)
+#
+#: ../../bootloader.pm_.c:234
+#, fuzzy, c-format
+msgid ""
+"Welcome to %s the operating system chooser!\n"
+"\n"
+"Choose an operating system in the list above or\n"
+"wait %d seconds for default boot.\n"
+"\n"
+msgstr ""
+"Dobro pozhalovat' v dispetcher vybora operacionnoj sistemy %s!\n"
+"Chtoby vyvesti spisok vozmozhnyh variantov, nazhmite <TAB>\n"
+"\n"
+"Chtoby odnu iz nih, napishite ee nazvanie i nazhmite <ENTER>\n"
+"ili zhdite %d sekund zagruzki po umolchaniyu.\n"
+"\n"
+
+# NOTE: this message will be displayed by grub at boot time; that is
+# using the BIOS font; that means cp437 charset on 99.99% of PC computers
+# out there. It is the nsuggested that for non latin languages an ascii
+# transliteration be used; or maybe the english text be used; as it is best
+#
+# The lines must fit on screen, aka length < 80
+# and only one line per string for the GRUB messages
+#
+#: ../../bootloader.pm_.c:596
+msgid "Welcome to GRUB the operating system chooser!"
+msgstr "Добро пожаловать в GRUB, диспетчер ОС"
+
+#: ../../bootloader.pm_.c:597
+#, c-format
+msgid "Use the %c and %c keys for selecting which entry is highlighted."
+msgstr "Используйте клавиши %c и %c для выделения пункта."
+
+#: ../../bootloader.pm_.c:598
+msgid "Press enter to boot the selected OS, 'e' to edit the"
+msgstr "Нажмите enter для загрузки выбранной ОС, 'e' для редактирования"
+
+#: ../../bootloader.pm_.c:599
+msgid "commands before booting, or 'c' for a command-line."
+msgstr "команд перед загрузкой, или 'c' для командной строки."
+
+#: ../../bootloader.pm_.c:600
+#, c-format
+msgid "The highlighted entry will be booted automatically in %d seconds."
+msgstr "Выбранный пункт будет загружаться автоматически через %d секунд."
+
+#: ../../bootloader.pm_.c:604
+msgid "not enough room in /boot"
+msgstr "не хватает места в /boot"
+
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:696
+msgid "Desktop"
+msgstr "Рабочий стол"
+
+#: ../../bootloader.pm_.c:696
+msgid "Start Menu"
+msgstr "Стартовое меню"
+
+#: ../../common.pm_.c:610
+#, c-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../common.pm_.c:612
+msgid "1 minute"
+msgstr ""
+
+#: ../../common.pm_.c:614
+#, fuzzy, c-format
+msgid "%d seconds"
+msgstr "Осталось %d сукунд"
+
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:419
msgid "Create"
msgstr "Создать"
-#: ../../diskdrake.pm_.c:19
+#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Размонтировать"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:421
msgid "Delete"
msgstr "Удалить"
-#: ../../diskdrake.pm_.c:20
+#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Форматирование"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:591
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:602
msgid "Resize"
msgstr "Изменение размера"
-#: ../../diskdrake.pm_.c:20 ../../diskdrake.pm_.c:413
-#: ../../diskdrake.pm_.c:466
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:419
+#: ../../diskdrake.pm_.c:472
msgid "Type"
msgstr "Тип"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:486
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:492
msgid "Mount point"
msgstr "Точка монтирования"
-#: ../../diskdrake.pm_.c:35
+#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Запись /etc/fstab"
-#: ../../diskdrake.pm_.c:36
+#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Нормально > Эксперт"
-#: ../../diskdrake.pm_.c:37
+#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Эксперт > Нормально"
-#: ../../diskdrake.pm_.c:38
+#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Восстановление из файла"
-#: ../../diskdrake.pm_.c:39
+#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Сохранение в файле"
-#: ../../diskdrake.pm_.c:40
+#: ../../diskdrake.pm_.c:43
+msgid "Wizard"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Восстановление с дискеты"
-#: ../../diskdrake.pm_.c:41
+#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Сохранение на дискете"
-#: ../../diskdrake.pm_.c:45
+#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Очистить все"
-#: ../../diskdrake.pm_.c:46
+#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Форматировать все"
-#: ../../diskdrake.pm_.c:47
+#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Разместить автоматически"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Все первичные разделы использованы"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Добавление разделов невозможно"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Чтобы сделать больше разделов, удалите один и создайте extended"
-#: ../../diskdrake.pm_.c:53
+#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Запасная таблицы разделов"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Откат"
-#: ../../diskdrake.pm_.c:55
+#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Запись таблицы разделов"
-#: ../../diskdrake.pm_.c:56
+#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Перезагрузить"
-#: ../../diskdrake.pm_.c:96
+#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:109
-msgid "Empty"
-msgstr "Пусто"
-
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "HFS"
-msgstr ""
+msgstr "HFS"
-#: ../../diskdrake.pm_.c:109
-msgid "Other"
-msgstr "Другие"
+#: ../../diskdrake.pm_.c:114
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../diskdrake.pm_.c:109
+#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Swap"
#: ../../diskdrake.pm_.c:115
+msgid "Empty"
+msgstr "Пусто"
+
+#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+msgid "Other"
+msgstr "Другие"
+
+#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Типы файловой системы:"
-#: ../../diskdrake.pm_.c:124
+#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Подробности"
-#: ../../diskdrake.pm_.c:138
+#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -763,94 +978,97 @@ msgstr ""
"Предлагаю прежде всего изменить размер раздела\n"
"(кликните на него, а затем на \"Изменение размера\")"
-#: ../../diskdrake.pm_.c:143
+#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Прежде всего сделайте резервную копию данных"
-#: ../../diskdrake.pm_.c:143 ../../diskdrake.pm_.c:160
-#: ../../diskdrake.pm_.c:169 ../../diskdrake.pm_.c:518
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:524
+#: ../../diskdrake.pm_.c:546
msgid "Read carefully!"
msgstr "Читайте внимательно!"
-#: ../../diskdrake.pm_.c:146
+#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
+"Если будете использовать aboot, оставьте свободное место (2048 секторов "
+"достаточно)\n"
+"в начале диска"
-#: ../../diskdrake.pm_.c:160
+#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
-msgstr ""
+msgstr "Осторожно: эта операция опасна."
-#: ../../diskdrake.pm_.c:197 ../../install_any.pm_.c:333
-#: ../../install_steps.pm_.c:74 ../../install_steps_interactive.pm_.c:40
-#: ../../standalone/diskdrake_.c:60 ../../standalone/rpmdrake_.c:294
-#: ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
+#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
+#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Ошибка"
-#: ../../diskdrake.pm_.c:221 ../../diskdrake.pm_.c:681
+#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:694
msgid "Mount point: "
msgstr "Точка монтирования:"
-#: ../../diskdrake.pm_.c:222 ../../diskdrake.pm_.c:263
+#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Устройство:"
-#: ../../diskdrake.pm_.c:223
+#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "буква для DOS-диска %s (наугад)\n"
-#: ../../diskdrake.pm_.c:224 ../../diskdrake.pm_.c:266
+#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Тип"
-#: ../../diskdrake.pm_.c:225
+#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Начало: сектор %s\n"
-#: ../../diskdrake.pm_.c:226
+#: ../../diskdrake.pm_.c:232
#, fuzzy, c-format
msgid "Size: %d MB"
msgstr "Размер : %d MB\n"
-#: ../../diskdrake.pm_.c:228
+#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s секторов"
-#: ../../diskdrake.pm_.c:230
+#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Цилиндры с %d по %d\n"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Форматирование\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Не отформатировано\n"
-#: ../../diskdrake.pm_.c:233
+#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Смонтировано\n"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:235
+#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
-msgstr ""
+msgstr "Loopback file(s): %s\n"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -858,79 +1076,79 @@ msgstr ""
"Загрузочный раздел по умолчанию\n"
" (для загрузки MS-DOS, не для lilo)\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Уровень %s\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk размер %s\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-диски %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
-msgstr ""
+msgstr "Имя Loopback файла: %s"
-#: ../../diskdrake.pm_.c:259
+#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Нажмите на раздел"
-#: ../../diskdrake.pm_.c:264
+#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Размер : %d MB\n"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндров, %s головок, %s секторов\n"
-#: ../../diskdrake.pm_.c:267
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:273
+#, c-format
msgid "Partition table type: %s\n"
-msgstr "Корневой раздел"
+msgstr "Тип таблицы разделов: %s\n"
-#: ../../diskdrake.pm_.c:268
+#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "на шине %d id %d\n"
-#: ../../diskdrake.pm_.c:281
+#: ../../diskdrake.pm_.c:287
msgid "Mount"
msgstr "Монтирование"
-#: ../../diskdrake.pm_.c:282
+#: ../../diskdrake.pm_.c:288
msgid "Active"
msgstr "Активный"
-#: ../../diskdrake.pm_.c:283
+#: ../../diskdrake.pm_.c:289
msgid "Add to RAID"
msgstr "Добавить к RAID"
-#: ../../diskdrake.pm_.c:284
+#: ../../diskdrake.pm_.c:290
msgid "Remove from RAID"
msgstr "Удалить из RAID"
-#: ../../diskdrake.pm_.c:285
+#: ../../diskdrake.pm_.c:291
msgid "Modify RAID"
msgstr "Изменить RAID"
-#: ../../diskdrake.pm_.c:286
+#: ../../diskdrake.pm_.c:292
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake.pm_.c:293
+#: ../../diskdrake.pm_.c:299
msgid "Choose action"
msgstr "Выберите действие"
-#: ../../diskdrake.pm_.c:386
+#: ../../diskdrake.pm_.c:392
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -941,7 +1159,7 @@ msgstr ""
"Либо вы используете LILO - тогда это не будет работать, либо LILO не "
"используется, и тогда /boot не нужен."
-#: ../../diskdrake.pm_.c:390
+#: ../../diskdrake.pm_.c:396
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -954,202 +1172,213 @@ msgstr ""
"Если будет использоваться диспетчер загрузки LILO, не забудьте добавить "
"раздел /boot"
-#: ../../diskdrake.pm_.c:396
+#: ../../diskdrake.pm_.c:402
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
-"So be careful to add a /boot partition if you want to use lilo or grub"
+"So be careful to add a /boot partition"
msgstr ""
+"Вы выбрали раздел программного RAID в качестве корневого (/).\n"
+"Никакой загрузчик не сможет это обработать без раздела /boot.\n"
+"Так что не забудьте добавить раздел /boot"
-#: ../../diskdrake.pm_.c:413 ../../diskdrake.pm_.c:415
+#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:421
#, c-format
msgid "Use ``%s'' instead"
msgstr "Взамен используйте ``%s'' "
-#: ../../diskdrake.pm_.c:418
+#: ../../diskdrake.pm_.c:424
msgid "Use ``Unmount'' first"
msgstr "Сначала сделайте ``Unmount''"
-#: ../../diskdrake.pm_.c:419 ../../diskdrake.pm_.c:461
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:425 ../../diskdrake.pm_.c:467
+#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "все данные в этом разделе пропадут"
+msgstr ""
+"После изменения типа раздела %s, все данные в этом разделе будут потеряны"
-#: ../../diskdrake.pm_.c:431
+#: ../../diskdrake.pm_.c:437
msgid "Continue anyway?"
msgstr "Все-таки продолжать?"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without saving"
msgstr "Выйти без сохранения"
-#: ../../diskdrake.pm_.c:436
+#: ../../diskdrake.pm_.c:442
msgid "Quit without writing the partition table?"
msgstr "Выйти без записи таблицы разделов"
-#: ../../diskdrake.pm_.c:464
+#: ../../diskdrake.pm_.c:470
msgid "Change partition type"
msgstr "Изменить тип раздела"
-#: ../../diskdrake.pm_.c:465
-msgid "Which partition type do you want?"
-msgstr "Какой тип раздела вам нужен"
+#: ../../diskdrake.pm_.c:471
+#, fuzzy
+msgid "Which filesystem do you want?"
+msgstr "Выберите язык"
-#: ../../diskdrake.pm_.c:468 ../../diskdrake.pm_.c:713
+#: ../../diskdrake.pm_.c:474 ../../diskdrake.pm_.c:726
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Невозможно использовать ReiserFS на разделах меньше 32MB"
-#: ../../diskdrake.pm_.c:484
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:490
+#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "Куда вы хотите смонтировать устройство %s?"
+msgstr "Куда вы хотите смонтировать loopback файл %s?"
-#: ../../diskdrake.pm_.c:485
+#: ../../diskdrake.pm_.c:491
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Куда вы хотите смонтировать устройство %s?"
-#: ../../diskdrake.pm_.c:490
+#: ../../diskdrake.pm_.c:496
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
+"Не могу отменить точку монтирования, поскольку этот раздел задействован для "
+"loop back.\n"
+"Сначала уберите loopback"
-#: ../../diskdrake.pm_.c:509
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:515
+#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "все данные в этом разделе пропадут"
+msgstr "После форматирования раздела %s, все данные в этом разделе пропадут"
-#: ../../diskdrake.pm_.c:511
+#: ../../diskdrake.pm_.c:517
msgid "Formatting"
msgstr "Форматирование"
-#: ../../diskdrake.pm_.c:512
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:518
+#, c-format
msgid "Formatting loopback file %s"
-msgstr "Форматирование разделов %s"
+msgstr "Форматирование файла loopback %s"
-#: ../../diskdrake.pm_.c:513 ../../install_steps_interactive.pm_.c:253
+#: ../../diskdrake.pm_.c:519 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Форматирование разделов %s"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "After formatting all partitions,"
msgstr "После форматирования всех разделов"
-#: ../../diskdrake.pm_.c:518
+#: ../../diskdrake.pm_.c:524
msgid "all data on these partitions will be lost"
msgstr "все данные в этих разделах будут потеряны"
-#: ../../diskdrake.pm_.c:528
+#: ../../diskdrake.pm_.c:530
msgid "Move"
msgstr "Перемещение"
-#: ../../diskdrake.pm_.c:529
+#: ../../diskdrake.pm_.c:531
msgid "Which disk do you want to move it to?"
msgstr "На какой диск переместить?"
-#: ../../diskdrake.pm_.c:533
+#: ../../diskdrake.pm_.c:532
msgid "Sector"
msgstr "Сектор"
-#: ../../diskdrake.pm_.c:534
+#: ../../diskdrake.pm_.c:533
msgid "Which sector do you want to move it to?"
msgstr "На какой сектор переместить?"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving"
msgstr "Перемещаем"
-#: ../../diskdrake.pm_.c:537
+#: ../../diskdrake.pm_.c:536
msgid "Moving partition..."
msgstr "Перемещается раздел..."
-#: ../../diskdrake.pm_.c:547
+#: ../../diskdrake.pm_.c:546
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблица размещения устройтва %s будет записана на диск!"
-#: ../../diskdrake.pm_.c:549
+#: ../../diskdrake.pm_.c:548
msgid "You'll need to reboot before the modification can take place"
msgstr "Чтобы изменения осуществились, необходимо перезагрузиться"
-#: ../../diskdrake.pm_.c:570 ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569
msgid "Computing FAT filesystem bounds"
msgstr "Вычисление границ файловой системы FAT"
-#: ../../diskdrake.pm_.c:570 ../../diskdrake.pm_.c:619
-#: ../../install_steps_gtk.pm_.c:212
+#: ../../diskdrake.pm_.c:569 ../../diskdrake.pm_.c:629
+#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Изменение размера"
-#: ../../diskdrake.pm_.c:586
+#: ../../diskdrake.pm_.c:592
#, fuzzy
+msgid "This partition is not resizeable"
+msgstr "Размер какого раздела изменить?"
+
+#: ../../diskdrake.pm_.c:597
msgid "All data on this partition should be backed-up"
-msgstr "все данные в этом разделе пропадут"
+msgstr "Для все данные в этом разделе создается резервная копия"
-#: ../../diskdrake.pm_.c:588
-#, fuzzy, c-format
+#: ../../diskdrake.pm_.c:599
+#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr "все данные в этом разделе пропадут"
+msgstr "После изменения размера раздела %s все данные в этом разделе пропадут"
-#: ../../diskdrake.pm_.c:598
+#: ../../diskdrake.pm_.c:609
msgid "Choose the new size"
msgstr "Выбор нового размера"
-#: ../../diskdrake.pm_.c:598 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
+#: ../../diskdrake.pm_.c:609 ../../install_steps_interactive.pm_.c:518
+#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"
-#: ../../diskdrake.pm_.c:653
+#: ../../diskdrake.pm_.c:666
msgid "Create a new partition"
msgstr "Создание нового раздела"
-#: ../../diskdrake.pm_.c:673
+#: ../../diskdrake.pm_.c:686
msgid "Start sector: "
msgstr "Начальный сектор:"
-#: ../../diskdrake.pm_.c:677 ../../diskdrake.pm_.c:752
+#: ../../diskdrake.pm_.c:690 ../../diskdrake.pm_.c:765
msgid "Size in MB: "
msgstr "Размер в MB:"
-#: ../../diskdrake.pm_.c:680 ../../diskdrake.pm_.c:755
+#: ../../diskdrake.pm_.c:693 ../../diskdrake.pm_.c:768
msgid "Filesystem type: "
msgstr "Тип файловой системы:"
-#: ../../diskdrake.pm_.c:683
+#: ../../diskdrake.pm_.c:696
msgid "Preference: "
msgstr "Предпочтение: "
-#: ../../diskdrake.pm_.c:731 ../../install_steps.pm_.c:134
+#: ../../diskdrake.pm_.c:744
msgid "This partition can't be used for loopback"
-msgstr ""
+msgstr "Этот раздел нельзя использовать для loopback"
-#: ../../diskdrake.pm_.c:741
+#: ../../diskdrake.pm_.c:754
msgid "Loopback"
-msgstr ""
+msgstr "Loopback"
-#: ../../diskdrake.pm_.c:751
+#: ../../diskdrake.pm_.c:764
msgid "Loopback file name: "
-msgstr ""
+msgstr "Имя loopback файла: "
-#: ../../diskdrake.pm_.c:777
+#: ../../diskdrake.pm_.c:790
msgid "File already used by another loopback, choose another one"
-msgstr ""
+msgstr "Файл уже используется другим loopback, выберите другой файл."
-#: ../../diskdrake.pm_.c:778
-#, fuzzy
+#: ../../diskdrake.pm_.c:791
msgid "File already exists. Use it?"
-msgstr "Пункт %s уже существует"
+msgstr "Файл уже существует. Использовать его?"
-#: ../../diskdrake.pm_.c:800 ../../diskdrake.pm_.c:816
+#: ../../diskdrake.pm_.c:813 ../../diskdrake.pm_.c:829
msgid "Select file"
msgstr "Выберите файл"
-#: ../../diskdrake.pm_.c:809
+#: ../../diskdrake.pm_.c:822
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1157,11 +1386,11 @@ msgstr ""
"Резервная таблица размещения диска имеет другой разиер\n"
"Все-таки продолжать?"
-#: ../../diskdrake.pm_.c:817
+#: ../../diskdrake.pm_.c:830
msgid "Warning"
msgstr "Внимание!"
-#: ../../diskdrake.pm_.c:818
+#: ../../diskdrake.pm_.c:831
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1169,77 +1398,79 @@ msgstr ""
"Вставьте дискету в устройство\n"
"Все данные на этой дискете пропадут"
-#: ../../diskdrake.pm_.c:832
+#: ../../diskdrake.pm_.c:842
msgid "Trying to rescue partition table"
msgstr "Пробуем спасти таблицу разделов"
-#: ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:853
msgid "device"
msgstr "устройство:"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:854
msgid "level"
msgstr "уровень"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:855
msgid "chunk size"
msgstr "размер chunk"
-#: ../../diskdrake.pm_.c:857
+#: ../../diskdrake.pm_.c:867
msgid "Choose an existing RAID to add to"
msgstr "Выберите существующий RAID для добавления"
-#: ../../diskdrake.pm_.c:858
+#: ../../diskdrake.pm_.c:868
msgid "new"
msgstr "новый"
-#: ../../fs.pm_.c:85 ../../fs.pm_.c:91 ../../fs.pm_.c:97 ../../fs.pm_.c:103
+#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ошибка форматирования %s"
-#: ../../fs.pm_.c:129
+#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Не знаю как форматировать %s с типом %s"
-#: ../../fs.pm_.c:186
-msgid "nfs mount failed"
-msgstr "ошибка монтирования nfs"
-
-#: ../../fs.pm_.c:209
+#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "ошибка монтирования: "
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "Ошибка размонтирования %s: %s"
-#: ../../fsedit.pm_.c:250
+#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Точка монтирования должна начинаться с /"
-#: ../../fsedit.pm_.c:253
+#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Уже есть раздел с точкой монтирования %s\n"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
+msgstr "Циклическое монтирование %s\n"
+
+#: ../../fsedit.pm_.c:258
+msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:273
+#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
+"Для этой точки монтирования нужна реальная файловая система (ext2, "
+"reiserfs)\n"
-#: ../../fsedit.pm_.c:355
+#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ошибка открытия %s для записи: %s"
-#: ../../fsedit.pm_.c:437
+#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
@@ -1247,75 +1478,81 @@ msgstr ""
"Произошла ошибка: устройства для создания новых файловых систем не найдены. "
"Проверьте оборудование для обнаружения вероятной причины."
-#: ../../fsedit.pm_.c:452
+#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "У вас не создано никаких разделов!"
-#: ../../help.pm_.c:7
-msgid "Choose preferred language for install and system usage."
+#: ../../help.pm_.c:9
+#, fuzzy
+msgid ""
+"Please choose your preferred language for installation and system usage."
msgstr "Выберите язык установки и работы системы"
-#: ../../help.pm_.c:10
-msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Выберите раскладку своей клавиатуры в приведенном списке"
-
-#: ../../help.pm_.c:13
-#, fuzzy
+#: ../../help.pm_.c:12
msgid ""
-"Choose \"Install\" if there are no previous versions of Linux\n"
-"installed, or if you wish to use multiple distributions or versions.\n"
+"You need to accept the terms of the above license to continue installation.\n"
"\n"
-"Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-"Linux:\n"
-"5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-"2000\n"
-"or 7.0 (Air).\n"
"\n"
+"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
-"Select:\n"
"\n"
-" - Automated (recommended): If you have never installed Linux before, "
-"choose this. NOTE:\n"
-" networking will not be configured during installation, use "
-"\"LinuxConf\"\n"
-" to configure it after the install completes.\n"
+"Please click on \"Refuse\" if you disagree with its terms. Installation will "
+"end without modifying your current\n"
+"configuration."
+msgstr ""
+
+#: ../../help.pm_.c:22
+msgid "Choose the layout corresponding to your keyboard from the list above"
+msgstr "Выберите раскладку своей клавиатуры в приведенном списке"
+
+#: ../../help.pm_.c:25
+msgid ""
+"If you wish other languages (than the one you choose at\n"
+"beginning of installation) will be available after installation, please "
+"chose\n"
+"them in list above. If you want select all, you just need to select \"All\"."
+msgstr ""
+
+#: ../../help.pm_.c:30
+msgid ""
+"Please choose \"Install\" if there are no previous version of "
+"Linux-Mandrake\n"
+"installed or if you wish to use several operating systems.\n"
"\n"
-" - Customized: If you are familiar enough with GNU/Linux, you may then "
-"choose\n"
-" the primary usage for your machine. See below for details.\n"
"\n"
-" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-" perform a highly customized installation. As for a \"Customized\"\n"
-" installation class, you will be able to select the usage for your "
-"system.\n"
-" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
-msgstr ""
-"Выберите \"Установка\", если нет установленных предшествующих версий Linux,\n"
-"или если хотите использовать несколько дистрибутивов или версий.\n"
+"Please choose \"Update\" if you wish to update an already installed version "
+"of Linux-Mandrake.\n"
"\n"
-"Выберите \"Обновить\" если вы надеетесь обновить предыдущую версию\n"
-"Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-"6.1 (Helios), Gold 2000 или 7.0 (Air).\n"
"\n"
+"Depend of your knowledge in GNU/Linux, you can choose one of the following "
+"levels to install or update your\n"
+"Linux-Mandrake operating system:\n"
"\n"
-"Выберите:\n"
+"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"choose this. Installation will be\n"
+"\t be very easy and you will be asked only on few questions.\n"
"\n"
-" - Рекомендуется: если вы раньше никогда не устанавливали Linux.\n"
"\n"
-" - С настройкой: Если вы знакомы с Linux, то сможете выбрать из следующих \n"
-"видов использования системы: нормальный, для разработчика, или\n"
-"сервер. Выберите \"нормальный\" для установки системы общего назначения.\n"
-"Можно выбрать \"Разработка\" если вы будете использовать компьютер прежде\n"
-"всего для разработки программ, или выберите \"Сервер\" если хотите "
-"установить\n"
-"сервер общего назначения (для почты, печати...).\n"
+"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
+"the primary usage (workstation, server,\n"
+"\t development) of your sytem. You will need to answer to more questions "
+"than in \"Recommanded\" installation\n"
+"\t class, so you need to know how GNU/Linux works to choose this "
+"installation class.\n"
"\n"
-" - Эксперт: Если вы свободно владеете GNU/Linux и хотите выполнить\n"
-"установку с глубокой настройкой, то этот Класс Установки - для вас. Вы \n"
-"сможете выбрать назначение системы, как и при \"С настройкой\".\n"
+"\n"
+"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
+"installation class. As in \"Customized\"\n"
+"\t installation class, you will be able to choose the primary usage "
+"(workstation, server, development). Be very\n"
+"\t careful before choose this installation class. You will be able to "
+"perform a higly customized installation.\n"
+"\t Answer to some questions can be very difficult if you haven't a good "
+"knowledge in GNU/Linux. So, don't choose\n"
+"\t this installation class unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:37
+#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
@@ -1323,12 +1560,13 @@ msgid ""
"choose\n"
" the primary usage for your machine. See below for details.\n"
"\n"
+"\n"
" - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
" perform a highly customized installation. As for a \"Customized\"\n"
" installation class, you will be able to select the usage for your "
"system.\n"
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-"DOING!\n"
+"DOING!"
msgstr ""
"Выберите:\n"
"\n"
@@ -1343,302 +1581,583 @@ msgstr ""
"\n"
" - Эксперт: Если вы свободно владеете GNU/Linux и хотите выполнить\n"
"установку с глубокой настройкой, то этот Класс Установки - для вас. Вы \n"
-"сможете выбрать назначение системы, как и при \"С настройкой\".\n"
+"сможете выбрать назначение системы, как и при \"С настройкой\"."
-#: ../../help.pm_.c:49
+#: ../../help.pm_.c:68
+#, fuzzy
msgid ""
-"The different choices for your machine's usage (provided, hence, that you "
-"have\n"
-"chosen either \"Custom\" or \"Expert\" as an installation class) are the\n"
-"following:\n"
+"You must now define your machine usage. Choices are:\n"
"\n"
-" - Normal: choose this if you intend to use your machine primarily for\n"
-" everyday use (office work, graphics manipulation and so on). Do not\n"
-" expect any compiler, development utility et al. installed.\n"
+"\t* Workstation: this the ideal choice if you intend to use your machine "
+"primarily for everyday use, at office or\n"
+"\t at home.\n"
"\n"
-" - Development: as its name says. Choose this if you intend to use your\n"
-" machine primarily for software development. You will then have a "
-"complete\n"
-" collection of software installed in order to compile, debug and format\n"
-" source code, or create software packages.\n"
"\n"
-" - Server: choose this if the machine which you're installing "
-"Linux-Mandrake\n"
-" on is intended to be used as a server. Either a file server (NFS or "
-"SMB),\n"
-" a print server (Unix' lp (Line Printer) protocol or Windows style SMB\n"
-" printing), an authentication server (NIS), a database server and so on. "
-"As\n"
-" such, do not expect any gimmicks (KDE, GNOME...) to be installed.\n"
+"\t* Development: if you intend to use your machine primarily for software "
+"development, it is the good choice. You\n"
+"\t will then have a complete collection of software installed in order to "
+"compile, debug and format source code,\n"
+"\t or create software packages.\n"
+"\n"
+"\n"
+"\t* Server: if you intend to use this machine as a server, it is the good "
+"choice. Either a file server (NFS or\n"
+"\t SMB), a print server (Unix style or Microsoft Windows style), an "
+"authentication server (NIS), a database\n"
+"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
+"to be installed."
msgstr ""
-
-#: ../../help.pm_.c:70
+"Различные варианты использования вашей машины (в случае, если вы выбрали \n"
+"\"С настройкой\" или \"Эксперт\" в качестве класса установки) \n"
+"следующие:\n"
+"\n"
+" - Обычный: выбирайте это, если используете машину прежде всего для \n"
+" повседневных нужд (офисная работа, операции с графикой и т.п.). Не "
+"будет\n"
+" установлено никаких компиляторов, средств разработки.\n"
+"\n"
+" - Разработка: название говорит за себя. Выбирайте это, если используете \n"
+" машину прежде всего для разработки ПО. У вас будет полный набор \n"
+" программ для компиляции, отладки и форматирования исходного текста,\n"
+" или создания программных пакетов.\n"
+"\n"
+" - Сервер: выбирайте это, если машина, на которую вы ставите "
+"Linux-Mandrake\n"
+" предназначена для работы в качестве сервера. Это и файловый сервер (NFS "
+"или SMB),\n"
+" и сервер печати (протокол Unix' lp (Line Printer) или "
+"Windows-совместимый SMB\n"
+" printing), и сервер аутентификации (NIS), и сервер баз данных, и т.д..\n"
+" Но в таком случане не рассчитывайте на установку красивостей (KDE, "
+"GNOME...).\n"
+
+#: ../../help.pm_.c:84
+#, fuzzy
msgid ""
-"DrakX will attempt at first to look for one or more PCI\n"
-"SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-"to use, it will insert it (them) automatically.\n"
+"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
+"finds an SCSI adapter and knows which driver to use, it will be "
+"automatically\n"
+"installed.\n"
"\n"
"\n"
-"If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-"doesn't know which driver to use for this card, or if you have no\n"
-"SCSI adapters at all, you will then be prompted on whether you have\n"
-"one or not. If you have none, answer \"No\". If you have one or more,\n"
-"answer \"Yes\". A list of drivers will then pop up, from which you\n"
-"will have to select one.\n"
+"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
+"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
+"your\n"
+"system. If there is no adapter present, you can click on \"No\". If you "
+"click on\n"
+"\"Yes\", a list of drivers will be presented from which you can select your\n"
+"specific adapter.\n"
"\n"
"\n"
-"After you have selected the driver, DrakX will ask if you\n"
-"want to specify options for it. First, try and let the driver\n"
-"probe for the hardware: it usually works fine.\n"
+"If you have to manually specify your adapter, DrakX will ask if you want to\n"
+"specify options for it. You should allow DrakX to probe the hardware for "
+"the\n"
+"options. This usually works well.\n"
"\n"
"\n"
-"If not, do not forget the information on your hardware that you\n"
-"could get from your documentation or from Windows (if you have it\n"
-"on your system), as suggested by the installation guide. These\n"
-"are the options you will need to provide to the driver."
+"If not, you will need to provide options to the driver. Please review the "
+"User\n"
+"Guide (chapter 3, section \"Collective informations on your hardware) for "
+"hints\n"
+"on retrieving this information from hardware documentation, from the\n"
+"manufacturer's Web site (if you have Internet access) or from Microsoft "
+"Windows\n"
+"(if you have it on your system)."
msgstr ""
-"DrakX сначала попробует найти один или несколько адаптер PCI\n"
-"SCSI. Если он (или они) найден, и известно, какой драйвер\n"
-"использовать, он подключит их автоматически.\n"
+"DrakX попробует найти PCI SCSI адаптер(ы). \n"
+"Если DrakX найдет SCSI адаптер и определит, какой драйвер следует "
+"использовать,\n"
+"он его автоматически установит.\n"
"\n"
-"Если ваш SCSI адаптер на ISA, или на PCI, но DrakX не знает\n"
-"какой драйвер использовать с этой картой, или у вас нет SCSI адаптеров,\n"
-"то вас спросят, есть ли он у вас, или нет.\n"
-"Если у вас его нет, отвечайте \"Нет\". Если есть один или несколько,\n"
-"отвечайте \"Да\". После этого появится список драйверов, из которых вы\n"
-"выберете подходящий.\n"
+"Если у вас нет адаптеров SCSI, ISA SCSI, или PCI SCSI, которые DrakX \n"
+"не может распознать, то вас спросят, имеется ли в вашей системе\n"
+"SCSI адаптер. Если в системе такого адаптера нет, просто нажмите\n"
+"кнопку 'Нет'. Если вы нажмете 'Да', то вам предоставят список драйверов,\n"
+"из которого вы можете выбрать соответствующий вашему адаптеру.\n"
"\n"
-"После выбора драйвера, DrakX спросит, не хотите ли вы задать\n"
-"для него опции. Сначала попробуйте, пусть драйвер проверит оборудование:\n"
-"обычно все работает хорошо.\n"
"\n"
-"Если нет, не забывайте про информацию о своем оборудовании, которую\n"
-"можно получить от Windows (при наличие на вашей системе), как это\n"
-"рекомендуется руководством по установке. Это те опции, которые\n"
-"надо задать драйверу."
+"Если адаптер пришлось указывать вручную, DrakX спросит, не хотите ли вы \n"
+"задать для него параметры. Нужно разрешить DrakX протестировать "
+"оборудование\n"
+"для подбора параметров. Обычно это работает хорошо.\n"
+"\n"
+"Если нет, придется вручную указать параметры для драйвера.\n"
+"Обратитесь к Руководству по Установке за приемами получения этих данных из \n"
+"Windows (если они установлены на машине), из документации по оборудованию, \n"
+"или с веб-сайта производителя (если имеется доступ к Интернет)."
-#: ../../help.pm_.c:94
-#, fuzzy
+#: ../../help.pm_.c:108
msgid ""
-"At this point, you may choose what partition(s) to use to install\n"
-"your Linux-Mandrake system if they have been already defined (from a\n"
-"previous install of Linux or from another partitionning tool). In other\n"
-"cases, hard drive partitions must be defined. This operation consists of\n"
-"logically dividing the computer's hard drive capacity into separate\n"
-"areas for use.\n"
+"At this point, you need to choose where to install your\n"
+"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
+"existing operating system uses all the space available on it, you need to\n"
+"partition it. Basically, partitioning a hard drive consists of logically\n"
+"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
-"If you have to create new partitions, use \"Auto allocate\" to "
-"automatically\n"
-"create partitions for Linux. You can select the disk for partitionning by\n"
-"clicking on \"hda\" for the first IDE drive,\n"
-"\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
+"Because the effects of the partitioning process are usually irreversible,\n"
+"partitioning can be intimidating and stressful if you are an inexperienced "
+"user.\n"
+"This wizard simplifies this process. Before beginning, please consult the "
+"manual\n"
+"and take your time.\n"
"\n"
"\n"
-"Two common partition are: the root partition (/), which is the starting\n"
-"point of the filesystem's directory hierarchy, and /boot, which contains\n"
-"all files necessary to start the operating system when the\n"
-"computer is first turned on.\n"
+"You need at least two partitions. One is for the operating system itself and "
+"the\n"
+"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
-"Because the effects of this process are usually irreversible, partitioning\n"
-"can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-"simplifies the process so that it must not be. Consult the documentation\n"
-"and take your time before proceeding.\n"
+"If partitions have been already defined (from a previous installation or "
+"from\n"
+"another partitioning tool), you just need choose those to use to install "
+"your\n"
+"Linux system.\n"
"\n"
"\n"
-"You can reach any option using the keyboard: navigate through the "
-"partitions\n"
-"using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
+"If partitions haven't been already defined, you need to create them. \n"
+"To do that, use the wizard available above. Depending of your hard drive\n"
+"configuration, several solutions can be available:\n"
"\n"
-"- Ctrl-c to create a new partition (when an empty partition is selected)\n"
+"\t* Use existing partition: the wizard has detected one or more existing "
+"Linux partitions on your hard drive. If\n"
+"\t you want to keep them, choose this option. \n"
"\n"
-"- Ctrl-d to delete a partition\n"
"\n"
-"- Ctrl-m to set the mount point\n"
-msgstr ""
-"Здесь можно определить, какие разделы использовать для установки\n"
-"вашей системы Linux-Mandrake, если они уже были заданы (при предыдущей \n"
-"установке Linux или другой процедурой разбиения). В других случаях\n"
-"разделы жесткого диска должны быть указаны. Эта операция состоит из\n"
-"логического разбиения дискового пространства компьютера на несколько\n"
-"областей использования.\n"
+"\t* Erase entire disk: if you want delete all data and all partitions "
+"present on your hard drive and replace them by\n"
+"\t your new Linux-Mandrake system, you can choose this option. Be careful "
+"with this solution, you will not be\n"
+"\t able to revert your choice after confirmation.\n"
+"\n"
"\n"
+"\t* Use the free space on the Windows partition: if Microsoft Windows is "
+"installed on your hard drive and takes\n"
+"\t all space available on it, you have to create free space for Linux data. "
+"To do that you can delete your\n"
+"\t Microsoft Windows partition and data (see \"Erase entire disk\" or "
+"\"Expert mode\" solutions) or resize your\n"
+"\t Microsoft Windows partition. Resizing can be performed without loss of "
+"any data. This solution is\n"
+"\t recommended if you want use both Linux-Mandrake and Microsoft Windows on "
+"same computer.\n"
"\n"
-"Два обычные раздела следующие: корневой раздел (/), являющейся начальной\n"
-"точкой иерархии каталогов файловой системы, и /boot, содержащий\n"
-"все файлы, необходимые для запуска операционной системы при \n"
-"включении компьютера.\n"
"\n"
+"\t Before choosing this solution, please understand that the size of your "
+"Microsoft\n"
+"\t Windows partition will be smaller than at present time. It means that "
+"you will have less free space under\n"
+"\t Microsoft Windows to store your data or install new software.\n"
"\n"
-"Поскольку результаты этого процесса обычно необратимы, разбиение\n"
-"на разделы может быть пугающим и давящим для новичка. DiskDrake\n"
-"упрощает этот процесс, так что напряжение должно сниматься. Просмотрите\n"
-"документацию и подготовьтесь заранее."
+"\n"
+"\t* Expert mode: if you want to partition manually your hard drive, you can "
+"choose this option. Be careful before\n"
+"\t choosing this solution. It is powerful but it is very dangerous. You can "
+"lose all your data very easily. So,\n"
+"\t don't choose this solution unless you know what you are doing."
+msgstr ""
-#: ../../help.pm_.c:131
+#: ../../help.pm_.c:160
msgid ""
-"Any partitions that have been newly defined must be formatted for\n"
-"use (formatting meaning creating a filesystem). At this time, you may\n"
-"wish to re-format some already existing partitions to erase the data\n"
-"they contain. Note: it is not necessary to re-format pre-existing\n"
-"partitions, particularly if they contain files or data you wish to keep.\n"
-"Typically retained are /home and /usr/local."
+"At this point, you need to choose what\n"
+"partition(s) to use to install your new Linux-Mandrake system. If "
+"partitions\n"
+"have been already defined (from a previous installation of GNU/Linux or "
+"from\n"
+"another partitioning tool), you can use existing partitions. In other "
+"cases,\n"
+"hard drive partitions must be defined.\n"
+"\n"
+"\n"
+"To create partitions, you must first select a hard drive. You can select "
+"the\n"
+"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
+"\"hdb\" for\n"
+"the second or \"sda\" for the first SCSI drive and so on.\n"
+"\n"
+"\n"
+"To partition the selected hard drive, you can use these options:\n"
+"\n"
+" * Clear all: this option deletes all partitions available on the selected "
+"hard drive.\n"
+"\n"
+"\n"
+" * Auto allocate:: this option allows you to automatically create Ext2 and "
+"swap partitions in free space of your\n"
+" hard drive.\n"
+"\n"
+"\n"
+" * Rescue partition table: if your partition table is damaged, you can try "
+"to recover it using this option. Please\n"
+" be careful and remember that it can fail.\n"
+"\n"
+"\n"
+" * Undo: you can use this option to cancel your changes.\n"
+"\n"
+"\n"
+" * Reload: you can use this option if you wish to undo all changes and "
+"load your initial partitions table\n"
+"\n"
+"\n"
+" * Wizard: If you wish to use a wizard to partition your hard drive, you "
+"can use this option. It is recommended if\n"
+" you do not have a good knowledge in partitioning.\n"
+"\n"
+"\n"
+" * Restore from floppy: if you have saved your partition table on a floppy "
+"during a previous installation, you can\n"
+" recover it using this option.\n"
+"\n"
+"\n"
+" * Save on floppy: if you wish to save your partition table on a floppy to "
+"be able to recover it, you can use this\n"
+" option. It is strongly recommended to use this option\n"
+"\n"
+"\n"
+" * Done: when you have finished partitioning your hard drive, use this "
+"option to save your changes.\n"
+"\n"
+"\n"
+"For information, you can reach any option using the keyboard: navigate "
+"trough the partitions using Tab and Up/Down arrows.\n"
+"\n"
+"\n"
+"When a partition is selected, you can use:\n"
+"\n"
+" * Ctrl-c to create a new partition (when a empty partition is "
+"selected)\n"
+"\n"
+" * Ctrl-d to delete a partition\n"
+"\n"
+" * Ctrl-m to set the mount point"
msgstr ""
-"Все вновь определенные разделы должны быть отформатированы для \n"
-"использования (форматирование означает создание файловой системы). В этой\n"
-"ситуации можно переформатировать уже существующие разделы для удаления "
-"данных\n"
-"в них. Замечание: форматировать уже существующие разделы не обязательно,\n"
-"особенно если они содержат файлы и данные, которые вы хотите сохранить.\n"
-"Обычно сохраняют /home и /usr/local."
-#: ../../help.pm_.c:139
+#: ../../help.pm_.c:218
msgid ""
-"You may now select the group of packages you wish to\n"
-"install or upgrade.\n"
+"Above are listed the existing Linux partitions detected on\n"
+"your hard drive. You can keep choices make by the wizard, they are good for "
+"a\n"
+"common usage. If you change these choices, you must at least define a root\n"
+"partition (\"/\"). Don't choose a too little partition or you will not be "
+"able\n"
+"to install enough software. If you want store your data on a separate "
+"partition,\n"
+"you need also to choose a \"/home\" (only possible if you have more than "
+"one\n"
+"Linux partition available).\n"
"\n"
-"DrakX will then check whether you have enough room to install them all. If "
-"not,\n"
-"it will warn you about it. If you want to go on anyway, it will proceed "
-"onto\n"
-"the installation of all selected groups but will drop some packages of "
-"lesser\n"
-"interest. At the bottom of the list you can select the option\n"
-"\"Individual package selection\"; in this case you will have to browse\n"
-"through more than 1000 packages..."
+"\n"
+"For information, each partition is listed as follows: \"Name\", "
+"\"Capacity\".\n"
+"\n"
+"\n"
+"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
+"\n"
+"\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
+"\n"
+"\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
+"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"
+"\n"
+"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:150
+#: ../../help.pm_.c:252
msgid ""
-"If you have all the CDs in the list above, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"Choose the hard drive you want to erase to install your\n"
+"new Linux-Mandrake partition. Be careful, all data present on it will be "
+"lost\n"
+"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:155
+#: ../../help.pm_.c:257
msgid ""
-"The packages selected are now being installed. This operation\n"
-"should take a few minutes unless you have chosen to upgrade an\n"
-"existing system, in that case it can take more time even before\n"
-"upgrade starts."
+"Click on \"OK\" if you want to delete all data and\n"
+"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
+"you\n"
+"will not be able to recover any data and partitions present on this hard "
+"drive,\n"
+"including any Windows data.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" to cancel this operation without losing any data and\n"
+"partitions present on this hard drive."
msgstr ""
-"Выбранные пакеты теперь устанавливаются. Эта операция займет\n"
-"несколько минут, если вы не избрали обновление существующей системы,\n"
-"в последнем случае много времени потребуется еще до начала\n"
-"обновления."
-#: ../../help.pm_.c:161
+#: ../../help.pm_.c:267
msgid ""
-"If DrakX failed to find your mouse, or if you want to\n"
-"check what it has done, you will be presented the list of mice\n"
-"above.\n"
+"More than one Microsoft Windows partition have been\n"
+"detected on your hard drive. Please choose the one you want resize to "
+"install\n"
+"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
-"If you agree with DrakX' settings, just jump to the section\n"
-"you want by clicking on it in the menu on the left. Otherwise,\n"
-"choose a mouse type in the menu which you think is the closest\n"
-"match for your mouse.\n"
+"For information, each partition is listed as follow; \"Linux name\", "
+"\"Windows\n"
+"name\" \"Capacity\".\n"
"\n"
+"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
+"number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-"In case of a serial mouse, you will also have to tell DrakX\n"
-"which serial port it is connected to."
-msgstr ""
-"Если DrakX не смог найти вашу мышь, или если вы хотите\n"
-"проверить, что он сделал, вам предложат список мышей\n"
-"выше.\n"
"\n"
+"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
+"\"sd\"\n"
+"if it is an SCSI hard drive.\n"
"\n"
-"Если вы согласны с установками DrakX, просто перейдите в нужный\n"
-"вам раздел нажатием на него в меню слева. В противном случае\n"
-"выберите в меню мышь, тип которой наиболее соответствует типу\n"
-"вашей мыши.\n"
"\n"
+"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
+"IDE hard drives:\n"
"\n"
-"В случае последовательной мыши, вам также придется сообщить DrakX\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, a \"a\" means \"primary hard drive\", a \"b\" means "
+"\"secondary hard drive\", etc.\n"
+"\n"
+"\n"
+"\"Windows name\" is the letter of your hard drive under Windows (the first "
+"disk\n"
+"or partition is called \"C:\")."
+msgstr ""
+
+#: ../../help.pm_.c:300
+msgid "Please be patient. This operation can take several minutes."
+msgstr ""
-#: ../../help.pm_.c:176
+#: ../../help.pm_.c:303
msgid ""
-"Please select the correct port. For example, the COM1 port under MS Windows\n"
-"is named ttyS0 under Linux."
+"Any partitions that have been newly defined must be\n"
+"formatted for use (formatting meaning creating a filesystem).\n"
+"\n"
+"\n"
+"At this time, you may wish to reformat some already existing partitions to "
+"erase\n"
+"the data they contain. If you wish do that, please also select the "
+"partitions\n"
+"you want to format.\n"
+"\n"
+"\n"
+"Please note that it is not necessary to reformat all pre-existing "
+"partitions.\n"
+"You must reformat the partitions containing the operating system (such as "
+"\"/\",\n"
+"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
+"data\n"
+"that you wish to keep (typically /home).\n"
+"\n"
+"\n"
+"Please be careful selecting partitions, after formatting, all data will be\n"
+"deleted and you will not be able to recover any of them.\n"
+"\n"
+"\n"
+"Click on \"OK\" when you are ready to format partitions.\n"
+"\n"
+"\n"
+"Click on \"Cancel\" if you want to choose other partitions to install your "
+"new\n"
+"Linux-Mandrake operating system."
msgstr ""
-"Правильно выберите порт. Например, порт COM1 в MS Windows\n"
-"называется ttyS0 в Linux."
-#: ../../help.pm_.c:180
+#: ../../help.pm_.c:329
+#, fuzzy
msgid ""
-"This section is dedicated to configuring a local area\n"
-"network (LAN) or a modem.\n"
+"You may now select the group of packages you wish to\n"
+"install or upgrade.\n"
"\n"
-"Choose \"Local LAN\" and DrakX will\n"
-"try to find an Ethernet adapter on your machine. PCI adapters\n"
-"should be found and initialized automatically.\n"
-"However, if your peripheral is ISA, autodetection will not work,\n"
-"and you will have to choose a driver from the list that will appear then.\n"
"\n"
+"DrakX will then check whether you have enough room to install them all. If "
+"not,\n"
+"it will warn you about it. If you want to go on anyway, it will proceed onto "
+"the\n"
+"installation of all selected groups but will drop some packages of lesser\n"
+"interest. At the bottom of the list you can select the option \n"
+"\"Individual package selection\"; in this case you will have to browse "
+"through\n"
+"more than 1000 packages..."
+msgstr ""
+"Теперь можно выбирать группы пакетов, которые вы хотите установить или\n"
+"обновит.\n"
+"\n"
+"DrakX затем проверит, достаточно ли у вас места для их установки. Если нет,\n"
+"он вас предупредит об этом. Если вы все равно хотите продолжить, он "
+"осуществит\n"
+"установку всех выбранных групп, опустив ряд пакетов, представляющих меньший "
+"интерес.\n"
+"В нижней части списка можно выбрать \"Индивидуальный выбор пакетов\"; \n"
+"В этом случае придется просмотреть более 1000 пакетов..."
+
+#: ../../help.pm_.c:341
+msgid ""
+"You can now choose individually all the packages you\n"
+"wish to install.\n"
"\n"
-"As for SCSI adapters, you can let the driver probe for the adapter\n"
-"in the first time, otherwise you will have to specify the options\n"
-"to the driver that you will have fetched from documentation of your\n"
-"hardware.\n"
"\n"
+"You can expand or collapse the tree by clicking on options in the left "
+"corner of\n"
+"the packages window.\n"
"\n"
-"If you install a Linux-Mandrake system on a machine which is part\n"
-"of an already existing network, the network administrator will\n"
-"have given you all necessary information (IP address, network\n"
-"submask or netmask for short, and hostname). If you're setting\n"
-"up a private network at home for example, you should choose\n"
-"addresses.\n"
"\n"
+"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
+"\"Toggle flat and group sorted\".\n"
"\n"
-"Choose \"Dialup with modem\" and the Internet connection with\n"
-"a modem will be configured. DrakX will try to find your modem,\n"
-"if it fails you will have to select the right serial port where\n"
-"your modem is connected to."
+"\n"
+"If you want not to be warned on dependencies, click on \"Automatic\n"
+"dependencies\". If you do this, note that unselecting one package may "
+"silently\n"
+"unselect several other packages which depend on it."
msgstr ""
-"Данный раздел посвящен настройке локальной сети,\n"
-"(LAN), или модема. \n"
+
+#: ../../help.pm_.c:358
+#, fuzzy
+msgid ""
+"If you have all the CDs in the list above, click Ok. If you have\n"
+"none of those CDs, click Cancel. If only some CDs are missing, unselect "
+"them,\n"
+"then click Ok."
+msgstr ""
+"Если у вас есть все CD из приведенного выше списка, нажмите Ok.\n"
+"Если у вас нет ни одного из них, нажмите Отменит.\n"
+"Если отсутствуют только отдельные CD, отмените их выбор и нажмите Ok."
+
+#: ../../help.pm_.c:363
+msgid ""
+"Your new Linux-Mandrake operating system is currently being\n"
+"installed. This operation should take a few minutes (it depends on size you\n"
+"choose to install and the speed of your computer).\n"
"\n"
-"Выберите \"Локальная сеть\" и DrakX постарается найти\n"
-"на вашей машине адаптер Ethernet. Адаптеры PCI должны быть найдены\n"
-"и настроены автоматически. Однако, при использовании ISA,\n"
-"автоопределение не сработает, и вам придется выбирать драйвер\n"
-"из списка, который в этом случае появится.\n"
"\n"
+"Please be patient."
+msgstr ""
+
+#: ../../help.pm_.c:371
+msgid ""
+"You can now test your mouse. Use buttons and wheel to verify\n"
+"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
+"driver."
+msgstr ""
+
+#: ../../help.pm_.c:376
+#, fuzzy
+msgid ""
+"Please select the correct port. For example, the COM1\n"
+"port under MS Windows is named ttyS0 under GNU/Linux."
+msgstr ""
+"Правильно выберите порт. Например, порт COM1 в MS Windows\n"
+"называется ttyS0 в GNU/Linux."
+
+#: ../../help.pm_.c:380
+msgid ""
+"If you wish to connect your computer to the Internet or\n"
+"to a local network please choose the correct option. Please turn on your "
+"device\n"
+"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
-"Как и для адаптеров SCSI, вы можете предоставить драйверу проверить\n"
-"устройство, иначе придется задавать драйверу опции,\n"
-"которые вы можете в документации по вашему \n"
-"оборудованию.\n"
+"\n"
+"If you do not have any connection to the Internet or a local network, "
+"choose\n"
+"\"Disable networking\".\n"
"\n"
"\n"
-"При установке Linux-Mandrake на компьютер, стоящий в уже \n"
-"функционирующей сети, администратору сети придется снабдить\n"
-"вас всей полезной информацией (IP адрес, маска подсети\n"
-"или коротко подмаска, и имя хоста). Если вы ставите\n"
-"частную сеть, например дома, вы должны выбрать \n"
-"адреса "
+"If you wish to configure the network later after installation or if you "
+"have\n"
+"finished to configure your network connection, choose \"Done\"."
+msgstr ""
-#: ../../help.pm_.c:210
+#: ../../help.pm_.c:393
msgid ""
-"Enter:\n"
+"No modem has been detected. Please select the serial port on which it is "
+"plugged.\n"
"\n"
-" - IP address: if you don't know it, ask your network administrator or "
-"ISP.\n"
"\n"
+"For information, the first serial port (called \"COM1\" under Microsoft\n"
+"Windows) is called \"ttyS0\" under Linux."
+msgstr ""
+
+#: ../../help.pm_.c:400
+msgid ""
+"You may now enter dialup options. If you don't know\n"